Move from standalone container to separate web and data containers

:warning: This is an advanced setup. Don’t follow this unless you are experienced with Linux server administration and Docker.

2 Container Setup for a New Site

Added by @pfaffman 2019-12-11.

NOTE: If you want to create a 2 container site you can do this:

  ./discourse-setup --two-container

It works just like normal except it’ll create separate data and web_only containers and generate a random password for the database. If you already have an app.yml you’ll need to rename it, or discourse-setup will just update it. You could then copy a backup into /var/discourse/shared/web_only/backups/default and restore that, which is a little easier for novice system administrators than what’s described below.

Converting your Current Setup

I managed to migrate to two containers. If anyone else needs instructions, this is how it worked for me.

The process includes backup, setting up separate web and data containers and restore data.

  1. Backup your discourse instance and download backup. You can follow the simple guide or backup and restore later manually.

  2. Stop current standalone container
    ./launcher stop app

  3. copy web_only.yml and data.yml from samples/ to containers/ rename them to whatever you’d like, e.g. web_rocks.yml and data2.yml.

  4. if you rename them, please pay attention to the entries volumes: in data.yml and web_only.yml
    If you renamed web_only.yml to web_rocks.yml you need to modify the entry in Web_rocks.yml like this:

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

Accordingly, do the similar editing in data.yml also.

Setting up data container

Start with data.yml and set a password for the database. Then:

  • come to the container’s root folder /var/discourse
  • run ./launcher bootstrap data2 (data2 or whatever new name you gave it)
  • run ./launcher start data2 (using new name again)
  • if everything goes smoothly you can connect to the container via: ./launcher enter data2 (again using the new name)
  • Exit the container by exit.

Setting up web container

Let’s modify web_only.yml.

Firstly, change the template and expose ports as your app.yml does.

Secondly, make sure you are linking to the right data container. If you renamed the data.yml to ‘something_else’ put it in for ‘name’.

# Use 'links' key to link containers together, aka use Docker --link flag.
links:
  - link:
      name: data
      alias: data

Although we don’t want to expose ssh or any other ports anymore, you’d still need to expose 80 and 443 port for web access. This depends on whether you have a nginx running in the front and how you connect container with it.

Somewhere in there you’ll find this block:

  DISCOURSE_DB_USERNAME: discourse
  DISCOURSE_DB_PASSWORD: mypassword
  DISCOURSE_DB_HOST: data
  DISCOURSE_REDIS_HOST: data
  • Enter the password you set inside the data container.
  • Enter the data container’s alias you just wrote down. For DB_HOST and for REDIS_HOST. It has to match the links block we mentioned.
  • You probably didn’t change the DB_USERNAME.

You’ll find the values for DISCOURSE_DEVELOPER_EMAILS and DISCOURSE_HOSTNAME and many more. You already have these values in your app.yml. Copy them from there.

In the hooks section remember to set any additional plugins you already use inside app.yml

Now you should be ready to bootstrap it:
./launcher bootstrap web_only (again with your new/own name)

Once bootstrapped, you can start web_only (use your new name):
./launcher start web_only

When Discourse is ready, login and restore your site.

After this, everything worked again for me and my discourse installation was running again, but now in two separate containers.

How to update when using separate web and data containers

If you do not care about the few minutes of downtime:

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

If you care about every minute of downtime:

for data:
./launcher bootstrap data && ./launcher destroy data && ./launcher start data
for web_only:
./launcher bootstrap web_only && ./launcher destroy web_only && ./launcher start web_only

It’s enough to rebuild web_only and skip data except when there is an upgrade to postgres or redis. Those happen on the order of once a year and you’ll see an announcement like PostgreSQL 13 update when it happens.

Managing a two-container installation

@pfaffman will one day create a topic about this, but until then, there is this: Managing a Two-Container Installation - Documentation - Literate Computing Support

35 Likes

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 Likes

I updated the guide. Hope it reflects your process.

6 Likes

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?

3 Likes

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

4 Likes

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 Likes

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 Likes

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 Likes

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 Likes

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 Likes

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 Likes

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 Like

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 Likes

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 Likes

Is this still the good tutorial?

Or should follow

or

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

1 Like

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 Likes

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 Like

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 Likes