スタンドアロンコンテナから別々のWebおよびデータコンテナへの移行

:warning: これは高度な設定です。Linuxサーバー管理とDockerに精通している場合以外は、これに従わないでください。また、postgresまたはredisのバージョンアップがあった場合に気づくように、discourse_dockerへのコミットに細心の注意を払う必要があります。

現在の設定からの移行

私は2つのコンテナへの移行に成功しました。もし他の誰かが手順を必要とするなら、これが私にとって機能した方法です。

このプロセスには、バックアップ、個別のwebコンテナとdataコンテナの設定、およびデータのリストアが含まれます。

  1. Discourseインスタンスをバックアップし、バックアップをダウンロードします。簡単なガイドまたは後で手動でバックアップとリストアに従うことができます。

  2. 現在のスタンドアロンコンテナを停止します
    ./launcher stop app

  3. samples/からweb_only.ymldata.ymlcontainers/にコピーし、好きな名前に変更します。例:web_rocks.ymldata2.yml

  4. 名前を変更した場合は、data.ymlweb_only.ymlのエントリのvolumes:に注意してください。
    web_only.ymlweb_rocks.ymlに変更した場合、Web_rocks.ymlのエントリを次のように変更する必要があります。

volumes:
  - volume:
      host: /var/discourse/shared/web_rocks
      guest: /shared
  - volume:
      host: /var/discourse/shared/web_rocks/log/var-log
      guest: /var/log

同様に、data.ymlにも同じ編集を行ってください。

dataコンテナの設定

data.ymlから始め、データベースのパスワードを設定します。次に:

  • コンテナのルートフォルダ/var/discourseに来ます
  • ./launcher bootstrap data2を実行します(data2、または与えた新しい名前)
  • ./launcher start data2を実行します(新しい名前を再度使用)
  • すべてがスムーズに進めば、./launcher enter data2(再度新しい名前を使用)でコンテナに接続できます
  • exitでコンテナを終了します。

webコンテナの設定

web_only.ymlを変更しましょう。

まず、テンプレートを変更し、app.ymlが行うようにポートを公開します。

次に、正しいデータコンテナにリンクされていることを確認します。データ.ymlを「something_else」に変更した場合は、それを「name」に入れます。

# コンテナをリンクするために'links'キーを使用します。つまり、Dockerの--linkフラグを使用します。
links:
  - link:
      name: data
      alias: data

SSHやその他のポートを公開したくなくても、Webアクセス用にポート80と443を公開する必要があります。これは、前面でnginxが実行されているかどうか、およびコンテナとどのように接続するかによって異なります。

どこかに次のブロックがあります。

  DISCOURSE_DB_USERNAME: discourse
  DISCOURSE_DB_PASSWORD: mypassword
  DISCOURSE_DB_HOST: data
  DISCOURSE_REDIS_HOST: data
  • dataコンテナ内で設定したパスワードを入力します。
  • 先ほど書き留めたdataコンテナのエイリアスを入力します。DB_HOSTREDIS_HOSTについて。これは、言及したlinksブロックと一致する必要があります。
  • DB_USERNAMEは変更していないでしょう。

DISCOURSE_DEVELOPER_EMAILSDISCOURSE_HOSTNAMEなどの値が見つかります。これらはすでにapp.ymlにあります。そこからコピーしてください。

hooksセクションでは、app.ymlですでに使用している追加のプラグインを設定することを忘れないでください。

これでブートストラップする準備が整いました。
./launcher bootstrap web_only(ここでも新しい/独自の名前を使用)

ブートストラップが完了したら、web_onlyを起動できます(新しい名前を使用):
./launcher start web_only

Discourseの準備ができたら、ログインしてサイトをリストアします。

その後、すべてが再び機能し、私のdiscourseインストールは2つの別々のコンテナで再び実行されました。

2つのコンテナを使用する場合の更新方法

数分間のダウンタイムを気にしない場合、またはデータがアップグレードする必要がある場合。postgresとredisの変更はまれであり、dataコンテナを実行したままにすることで、古いコンテナが実行されている間に新しいweb_onlyコンテナをビルドすることが可能になります。

./launcher stop web_only && ./launcher rebuild data && ./launcher rebuild web_only

これは、Postgresのマイナーアップグレードやredisのアップグレードに機能します。

ダウンタイムを1分たりとも気にしない場合かつデータがアップグレードする必要がない場合(ほとんどの場合):

web_onlyのみをアップグレード:
./launcher bootstrap web_only && ./launcher destroy web_only && ./launcher start web_only

postgresまたはredisのアップグレードがない限り、web_onlyを再ビルドするだけで十分です。それらは年に一度程度の頻度で発生し、アップグレードが発生した際にはhttps://meta.discourse.org/t/postgresql-15-update/349515のようなアナウンスが表示されますが、redisのアップグレードやpostgresのマイナーアップデートはそれほど明確にアナウンスされません。

dataの再ビルドにはダウンタイムが必要です(単一コンテナバージョンと同じ理由です。他のプロセスが同じデータベースファイルにアクセスしている間、postgresをアップグレードすることはできません。また、新しいdataコンテナをビルドするときは、古いコンテナに接続しようとするため、web_onlyコンテナを破棄して起動する必要があります)。

dataコンテナを再ビルドする必要はめったになく(だからこそ、この方法でダウンタイムが節約されます)、postgresまたはredisにアップグレードがある場合に注意を払う必要があります。フロントエンドはそれを認識しません。これは、単一コンテナよりも注意が必要な高度な設定です。

2コンテナインストールの管理

@pfaffmanがいつかこれに関するトピックを作成する予定ですが、それまではこちらがあります:Managing a Two-Container Installation - Documentation - Literate Computing Support

「いいね!」 42
Faster rebuilds?
Zero downtime rebuild discourse
High Availability
Does web based updates replace rebuilding the container?
Looking up available upgrades via CLI
Bootstrap app container in 2 steps
2container setup option
Nginx rate limiting outside of container - any tips?
How to make the database (or part of it) accessible to a cloud data processor?
Is there a way to display a banner when the server is updating
Setup Multisite Configuration with Let's Encrypt and no Reverse Proxy
Where to find Discourse database configuration?
Discourse-app container starts then silently stops
Use rclone to sync backups to Dropbox or Google Drive
Migrate quickly to separate web and data containers
Discourse Image Builder for Gitlab CI/CD Pipelines
Error during rebuild: registry.yarnpkg.com ESOCKETTIMEDOUT
Problem rebuilding because of slow database shutdown
How to deploy secondary / stand-by Discourse?
Discourse-setup fails on SMTP username with a /
Is there any faster way to re-build the site?
Use rclone to sync to Dropbox (2025)
Self-hosters what has your experience been?
How to tell whether to upgrade via web or console?
Web_only installation
Discourse High Availability
Nomad support
Admin functions
Offline page clarification
How to Perform Major Discourse Maintenance with Minimal Downtime?
About upgrading Discourse from the Admin dashboard
Install fails because of other Redis container?
Is creating a second app.yml-like file enough for multisite?
ProCourse Installer
How to run separate web and data containers?
Data Explorer Queries accessible to public
How to run Upgrade All from command line?
Database system was not properly shut down error when rebuilding
Why is "rebuild" so tightly coupled to container run status?
Add an offline page to display when Discourse is rebuilding or starting up
Postgres already running
Avatars lost after restore. How to get them back?
Migrate from AWS to Digital Ocean with 2 containers, spaces and 2 CDNs
Sysadmins Index
Add an offline page to display when Discourse is rebuilding or starting up
Building the image without touching the database
Setup Multisite Configuration with Let's Encrypt and no Reverse Proxy
Serve a static site export of discourse while discourse is upgrading
Adding an instance to multisite without rebuilding the container
Capacity planning / Resource requirements
Problems with Patreon Login, Force HTTPS, and S3 CDN (three) Issues
Can I use a later version of Postgres than Discourse?

This … didn’t work as expected.

(The instructions are a bit off but I followed the update at https://meta.discourse.org/t/faster-rebuilds/40341/4.)

Should the new 2-container installation present an empty/fresh site? I was assuming it would copy all of my settings & data from my app container, but it was brand new. :frowning:

Edit: I did a restore from a backup made just before the process, and it seemed to restore everything. So probably this just needs to be made clear. :slightly_smiling:

「いいね!」 3

I updated the guide. Hope it reflects your process.

「いいね!」 6

When someone like @sam puts out instructions to rebuild the “app” container for fixes like this one, is it safe to assume it’s generally going to be in the web_only container?

「いいね!」 4

Yes, anything that mixes in the template I hacked get this.

「いいね!」 4

Sorry for the bump on this old conversation, but I had a related issue.

While doing server upgrades that included docker daemon upgrades, docker restarted, but when it did restart, it also restarted the standalone app container, which brought the site back to what it was pre-transitioning to separate containers. After panicking, I stopped the app container, and then started web_only again, and site is back to normal.

But how can I fix this permanently? I tried moving the app.yml file away from the containers folder, but the app docker container still restarts. Should I run ./launcher destroy app ?

P.S. I am mentioning this here, because I did successfully move from a standalone app container to separate data/web_only containers as described here.

Excuse my ignorance but could someone explain to me why this is not the default setup (or an optional setup) in the 30 min install guide?

I understand that using two containers minimizes the downtime during rebuilds and since nobody likes downtime, it seems like everyone would want two containers…

In other words: what’s the catch?

「いいね!」 4

It’s more complicated to set up? More has to be done during setup? More potential points of failure? Harder to debug if you don’t understand Docker?

「いいね!」 7

For people like you and me, there is none.

When the 30 minute install was conceived, it involved editing app.yml with a tool like nano (I’m an Emacs user and even I prefer vi to nano). Having people edit copy and edit two files and bootstrap and start both of them in the right order is on the order of 10 times more complicated. Now that ./discourse-setup is how most people configure Discourse, the setup part could be exactly the same for a two-container setup. I’ve looked in to doing just that & it wouldn’t be very hard.

But even still, with two containers, there would then be a bunch of problems with the data container wasn’t running and then no one would say which way their site was configured and that would be a lot more complicated to help out. Most of the time the web-based upgrade works just fine, and so unless you’re changing your plugin config, there’s not that much of a win for the two-container setup.

I think soon that I’ll start offering a two-container setup along side of my $99 install, but I’ve not gotten around to it.

「いいね!」 6

So is everyone here just pretending that they’re running one container but privately they’re running two?

Well, I guess, maybe even for “people like you and me” it is more convenient with one container, given that you don’t change plugins so often.

On the other hand, on standard troubleshooting advice that keeps coming up is obviously “disable all apps and re-enable them onr by one” and unless you do that by just disabling them under settings, this will give you plenty of downtime with one container…

And when I see that people are talking about 10,000 visits per day, that is quite a few annoyed users, even for half an hour downtime.

Anyway, thanks for explaining. And, yes, you should offer the 2-container install, if only to make it better known :wink:

「いいね!」 5

No. Usually if someone posts a problem and they’re running multiple containers, they’ll mention that (probably because it’s a problem specifically with multiple containers), but mostly, if you know how to have multiple containers, it won’t make any difference that you do.

FWIW, it took me nearly 2 years to (bother to) figure it out. And six months of that time I was earning all of my income from Discourse consulting (not to say that the income I earned was a living all of that time).

I’d guess that the vast majority of people running Discourse have a single container. I’d guess that the vast majority of people* who earn some of their income from managing or hosting it* and/or would identify as a “system administrator” run two.

「いいね!」 5

It is not that hard too. You have app.yml file which contains both the properties of datasource and web related(which port discourse should run eg 9000, or the plugins config and the custom commands)

So you just divide the app.yml into data.yml and web.yml.
Data.yml will contain the datasources part from app.yml
While the web.yml will contain rest of config.

I usually use nginx webserver infront of discourse.
So I can rebuild another web contianer at say 9001, and reverse proxy to it from nginx.
Then I safely stop the previous web container running at 9000.
This swapping is done in few seconds… So there is no downtime.

「いいね!」 7

Could use some help here:

This is confusing. It states to do a step (set a password) but doesn’t state how to do that aforementioned step… and immediately says “then” do some other stuff. Are we missing instructions on setting this password here?

So I didn’t change any password because I don’t know how or what OP is talking about, but did run ./launcher boostrap data and got the following response:

[...bootstrap command running...]
Successfully bootstrapped, to startup use ./launcher start data

prompt$ ./launcher enter data
Error: No such container: data

Note that I didn’t rename anything, only copied the files. I simply have data.yml and web_only.yml in my /var/discourse/containers directory.

Thanks!

「いいね!」 1

I wrote this “guide” in May 2015. I do not use Discourse any more (stopped soon after). I do not know if any of these instructions still work or how things are done nowadays.

「いいね!」 2

Thanks, people are still linking to it, going to just hire some help. Cheers!

Thanks for getting it started, we will take it from here!

「いいね!」 4

Is this still the good tutorial?

Or should follow

or

Right now both of those tutorials still leave me with questions :-/.

「いいね!」 1

The 3 tutorials apply to 3 different situations, so pick the one that applies to what you want.

Running Discourse with a separate PostgreSQL server is for when you have an external PostgreSQL running somewhere else, like AWS RDS.

Multisite configuration with Docker is about running multiple Discourse instances inside the same container.

And this topic is about using different containers for data and web.

The three guides are for advanced users, and we recommend sticking to defaults for people who aren’t familiar with Discourse, containers and the whole sysadmin lingo.

「いいね!」 10

well, what i want is to be able to host 3 discourse forums on my own VM.

From that i understand that i need to

  1. Separate the data and web containers (this also brings speedup when rebuilding the app)
  2. Configure 2 other discourse instances (somehow?) for my 2 other forums.

So this is why i don’t know exactly how to approach this situation.

「いいね!」 1

You may want to do that (mainly to reduce rebuild times), but this is not required, and doesn’t really have anything to do with running multiple sites.

To run three sites, you can either bootstrap them separately (which is rather easy, but triples resource requirements), or use these instructions for setting up multisite:

I’m running a setup like this (i.e. multisite, but without separating data and web containers or any other fanciness), and this works fine, but setup is indeed a bit tricky.

「いいね!」 4