Skip to content

Upgrading

Upgrade from 1.6.X

Read me first

We often add new features and settings to BunkerWeb. We recommend you read the settings sections of the documentation or the GitHub releases to see what's new.

Procedure

  1. Backup the database:

    • Before proceeding with the database upgrade, ensure to perform a complete backup of the current state of the database.
    • Use appropriate tools to backup the entire database, including data, schemas, and configurations.
    docker exec -it -e BACKUP_DIRECTORY=/path/to/backup/directory <scheduler_container> bwcli plugin backup save
    
    docker cp <scheduler_container>:/path/to/backup/directory /path/to/backup/directory
    

    Information for Red Hat Enterprise Linux (RHEL) 8.9 users

    If you are using RHEL 8.9 and plan on using an external database, you will need to install the mysql-community-client package to ensure the mysqldump command is available. You can install the package by executing the following commands:

    1. Install the MySQL repository configuration package

      sudo dnf install https://dev.mysql.com/get/mysql80-community-release-el8-9.noarch.rpm
      
    2. Enable the MySQL repository

      sudo dnf config-manager --enable mysql80-community
      
    3. Install the MySQL client

      sudo dnf install mysql-community-client
      
    1. Install the PostgreSQL repository configuration package

      dnf install "https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-$(uname -m)/pgdg-redhat-repo-latest.noarch.rpm"
      
    2. Install the PostgreSQL client

      dnf install postgresql<version>
      
    BACKUP_DIRECTORY=/path/to/backup/directory bwcli plugin backup save
    
  2. Upgrade BunkerWeb:

    • Upgrade BunkerWeb to the latest version.

      1. Update the Docker Compose file: Update the Docker Compose file to use the new version of the BunkerWeb image.

        services:
            bunkerweb:
                image: bunkerity/bunkerweb:1.6.0
                ...
            bw-scheduler:
                image: bunkerity/bunkerweb-scheduler:1.6.0
                ...
            bw-autoconf:
                image: bunkerity/bunkerweb-autoconf:1.6.0
                ...
            bw-ui:
                image: bunkerity/bunkerweb-ui:1.6.0
                ...
        

      2. Restart the containers: Restart the containers to apply the changes.

        docker compose down
        docker compose up -d
        

      1. Stop the services:

        systemctl stop bunkerweb
        systemctl stop bunkerweb-ui
        

      2. Update BunkerWeb:

        First, if you have previously hold the BunkerWeb package, unhold it :

        You can print a list of packages on hold with apt-mark showhold

        sudo apt-mark unhold bunkerweb
        

        Them, you can update BunkerWeb package :

        sudo apt install -y bunkerweb=1.6.0
        

        To prevent upgrading BunkerWeb package when executing apt upgrade, you can use the following command :

        sudo apt-mark hold bunkerweb
        

        More details in the integration Linux page.

        First, if you have previously hold the BunkerWeb package, unhold it :

        You can print a list of packages on hold with dnf versionlock list

        sudo dnf versionlock delete package bunkerweb
        

        Them, you can update BunkerWeb package :

        sudo dnf install -y bunkerweb-1.6.0
        

        To prevent upgrading BunkerWeb package when executing dnf upgrade, you can use the following command :

        sudo dnf versionlock add bunkerweb
        

        More details in the integration Linux page.

  3. Check the logs: Check the logs of the scheduler service to ensure that the migration was successful.

    docker compose logs <scheduler_container>
    
    journalctl -u bunkerweb --no-pager
    
  4. Verify the database: Verify that the database upgrade was successful by checking the data and configurations in the new database container.

Rollback

In case of issues

If you encounter any issues during the upgrade, you can rollback to the previous version of the database by restoring the backup taken in step 1.

Get support and more information :

  1. Restore the backup.

    1. Remove the existing database file.

      docker exec -u 0 -i <scheduler_container> rm -f /var/lib/bunkerweb/db.sqlite3
      
    2. Restore the backup.

      docker exec -i <scheduler_container> sqlite3 /var/lib/bunkerweb/db.sqlite3 < /path/to/backup/directory/backup.sql
      
    3. Fix permissions.

      docker exec -u 0 -i <scheduler_container> chown root:nginx /var/lib/bunkerweb/db.sqlite3
      docker exec -u 0 -i <scheduler_container> chmod 770 /var/lib/bunkerweb/db.sqlite3
      
    4. Stop the Stack.

      docker compose down
      
    1. Restore the backup.

      docker exec -e MYSQL_PWD=<your_password> -i <database_container> mysql -u <username> <database_name> < /path/to/backup/directory/backup.sql
      
    2. Stop the Stack.

      docker compose down
      
    1. Remove the existing database.

      docker exec -i <database_container> dropdb -U <username> --force <database_name>
      
    2. Recreate the database.

      docker exec -i <database_container> createdb -U <username> <database_name>
      
    3. Restore the backup.

      docker exec -i <database_container> psql -U <username> -d <database_name> < /path/to/backup/directory/backup.sql
      
    4. Stop the Stack.

      docker compose down
      
  2. Downgrade BunkerWeb.

    services:
        bunkerweb:
            image: bunkerity/bunkerweb:<old_version>
            ...
        bw-scheduler:
            image: bunkerity/bunkerweb-scheduler:<old_version>
            ...
        bw-autoconf:
            image: bunkerity/bunkerweb-autoconf:<old_version>
            ...
        bw-ui:
            image: bunkerity/bunkerweb-ui:<old_version>
            ...
    
  3. Start the containers.

    docker compose up -d
    
  1. Stop the services.

    systemctl stop bunkerweb bunkerweb-ui
    
  2. Restore the backup.

    sudo rm -f /var/lib/bunkerweb/db.sqlite3
    sudo sqlite3 /var/lib/bunkerweb/db.sqlite3 < /path/to/backup/directory/backup.sql
    sudo chown root:nginx /var/lib/bunkerweb/db.sqlite3
    sudo chmod 770 /var/lib/bunkerweb/db.sqlite3
    
    mysql -u <username> -p <database_name> < /path/to/backup/directory/backup.sql
    
    1. Remove the existing database.

      dropdb -U <username> --force <database_name>
      
    2. Recreate the database.

      createdb -U <username> <database_name>
      
    3. Restore the backup.

      psql -U <username> -d <database_name> < /path/to/backup/directory/backup.sql
      
  3. Downgrade BunkerWeb.

    • Downgrade BunkerWeb to the previous version by following the same steps as when upgrading BunkerWeb in the integration Linux page

Upgrade from 1.5.X

What changed?

Scheduler

Unlike the 1.5.X releases, the Scheduler service no longer uses the docker socket proxy to fetch BunkerWeb's instances. Instead, it uses the new BUNKERWEB_INSTANCES environment variable.

About the BUNKERWEB_INSTANCES environment variable

This new variable is a list of BunkerWeb instances separated by spaces in this format: http://bunkerweb:5000 bunkerweb1:5000 bunkerweb2:5000 .... The scheduler will then use this list to fetch the instances' configuration and to send the configuration to them.

  • The http:// prefix is optional.
  • The port is optional and defaults to the value of the API_HTTP_PORT environment variable.
  • The default value of the BUNKERWEB_INSTANCES environment variable is 127.0.0.1.

In other words, the new system is fully agnostic and generic: the scheduler is in charge of managing a list of BunkerWeb instances and doesn't need to care about the environment.

Autoconf/Kubernetes/Swarm integrations

If you are using the Autoconf, Kubernetes, or Swarm integrations, you can set the BUNKERWEB_INSTANCES environment variable to an empty string (so that it doesn't try to send the configuration to the default one which is 127.0.0.1).

The instances will be automatically fetched by the controller. You can also add custom instances to the list that may not be picked up by the controller.

Since the 1.6, the Scheduler also have a new built-in healthcheck system, that will check the health of the instances. If an instance becomes unhealthy, the scheduler will stop sending the configuration to it. If the instance becomes healthy again, the scheduler will start sending the configuration to it again.

BunkerWeb container

Another important change is that the settings that were previously declared on the BunkerWeb container are now declared on the scheduler. This means that you'll have to move your settings from the BunkerWeb container to the Scheduler container.

While the settings are now declared on the Scheduler container, you'll still need to declare api related mandatory settings on the BunkerWeb container like the API_WHITELIST_IP setting which is used to whitelist the Scheduler's IP address, so that it can send the configuration to the instance.

BunkerWeb's container settings

Every API related setting that you declare on the BunkerWeb container have to be mirrored on the Scheduler container so that it keeps working, as the configuration will be overwritten by the Scheduler's generated configuration.

Default values and new settings

We tried our best not to change default value but we have added many other settings. It's highly recommended to read the security tuning and settings sections of the documentation.

Templates

We added a new feature called templates. Templates provide a structured and standardized approach to defining settings and custom configurations, check the concepts/templates section for more information.

Autoconf namespaces

We added a namespace feature to the autoconf integrations. Namespaces allow you to group your instances and apply settings only to them. Check the following sections according to your Integration for more information:

Procedure

  1. Backup the database:

    • Before proceeding with the database upgrade, ensure to perform a complete backup of the current state of the database.
    • Use appropriate tools to backup the entire database, including data, schemas, and configurations.
    docker exec -it -e BACKUP_DIRECTORY=/path/to/backup/directory <scheduler_container> bwcli plugin backup save
    
    docker cp <scheduler_container>:/path/to/backup/directory /path/to/backup/directory
    

    Information for Red Hat Enterprise Linux (RHEL) 8.9 users

    If you are using RHEL 8.9 and plan on using an external database, you will need to install the mysql-community-client package to ensure the mysqldump command is available. You can install the package by executing the following commands:

    1. Install the MySQL repository configuration package

      sudo dnf install https://dev.mysql.com/get/mysql80-community-release-el8-9.noarch.rpm
      
    2. Enable the MySQL repository

      sudo dnf config-manager --enable mysql80-community
      
    3. Install the MySQL client

      sudo dnf install mysql-community-client
      
    1. Install the PostgreSQL repository configuration package

      dnf install "https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-$(uname -m)/pgdg-redhat-repo-latest.noarch.rpm"
      
    2. Install the PostgreSQL client

      dnf install postgresql<version>
      
    BACKUP_DIRECTORY=/path/to/backup/directory bwcli plugin backup save
    

    We first need to install the sqlite package in the container.

    docker exec -u 0 -it <scheduler_container> apk add sqlite
    

    Then, backup the database.

    docker exec -it <scheduler_container> sqlite3 /var/lib/bunkerweb/db.sqlite3 ".dump" > /path/to/backup/directory/backup.sql
    
    sqlite3 /var/lib/bunkerweb/db.sqlite3 ".dump" > /path/to/backup/directory/backup.sql
    
    docker exec -it -e MYSQL_PWD=<database_password> <database_container> mariadb-dump -u <username> <database_name> > /path/to/backup/directory/backup.sql
    
    MYSQL_PWD=<database_password> mariadb-dump -u <username> <database_name> > /path/to/backup/directory/backup.sql
    
    docker exec -it -e MYSQL_PWD=<database_password> <database_container> mysqldump -u <username> <database_name> > /path/to/backup/directory/backup.sql
    
    MYSQL_PWD=<database_password> mysqldump -u <username> <database_name> > /path/to/backup/directory/backup.sql
    
    docker exec -it -e PGPASSWORD=<database_password> <database_container> pg_dump -U <username> -d <database_name> > /path/to/backup/directory/backup.sql
    
    PGPASSWORD=<database_password> pg_dump -U <username> -d <database_name> > /path/to/backup/directory/backup.sql
    
  2. Upgrade BunkerWeb:

    • Upgrade BunkerWeb to the latest version.

      1. Update the Docker Compose file: Update the Docker Compose file to use the new version of the BunkerWeb image.

        services:
            bunkerweb:
                image: bunkerity/bunkerweb:1.6.0
                ...
            bw-scheduler:
                image: bunkerity/bunkerweb-scheduler:1.6.0
                ...
            bw-autoconf:
                image: bunkerity/bunkerweb-autoconf:1.6.0
                ...
            bw-ui:
                image: bunkerity/bunkerweb-ui:1.6.0
                ...
        

      2. Restart the containers: Restart the containers to apply the changes.

        docker compose down
        docker compose up -d
        

      1. Stop the services:

        systemctl stop bunkerweb
        systemctl stop bunkerweb-ui
        

      2. Update BunkerWeb:

        First, if you have previously hold the BunkerWeb package, unhold it :

        You can print a list of packages on hold with apt-mark showhold

        sudo apt-mark unhold bunkerweb
        

        Them, you can update BunkerWeb package :

        sudo apt install -y bunkerweb=1.6.0
        

        To prevent upgrading BunkerWeb package when executing apt upgrade, you can use the following command :

        sudo apt-mark hold bunkerweb
        

        More details in the integration Linux page.

        First, if you have previously hold the BunkerWeb package, unhold it :

        You can print a list of packages on hold with dnf versionlock list

        sudo dnf versionlock delete package bunkerweb
        

        Them, you can update BunkerWeb package :

        sudo dnf install -y bunkerweb-1.6.0
        

        To prevent upgrading BunkerWeb package when executing dnf upgrade, you can use the following command :

        sudo dnf versionlock add bunkerweb
        

        More details in the integration Linux page.

  3. Check the logs: Check the logs of the scheduler service to ensure that the migration was successful.

    docker compose logs <scheduler_container>
    
    journalctl -u bunkerweb --no-pager
    
  4. Verify the database: Verify that the database upgrade was successful by checking the data and configurations in the new database container.

Rollback

In case of issues

If you encounter any issues during the upgrade, you can rollback to the previous version of the database by restoring the backup taken in step 1.

Get support and more information :

  1. Restore the backup.

    1. Remove the existing database file.

      docker exec -u 0 -i <scheduler_container> rm -f /var/lib/bunkerweb/db.sqlite3
      
    2. Restore the backup.

      docker exec -i <scheduler_container> sqlite3 /var/lib/bunkerweb/db.sqlite3 < /path/to/backup/directory/backup.sql
      
    3. Fix permissions.

      docker exec -u 0 -i <scheduler_container> chown root:nginx /var/lib/bunkerweb/db.sqlite3
      docker exec -u 0 -i <scheduler_container> chmod 770 /var/lib/bunkerweb/db.sqlite3
      

    ''. Stop the Stack.

    ```bash
    docker compose down
    ```
    
    1. Restore the backup.

      docker exec -e MYSQL_PWD=<your_password> -i <database_container> mysql -u <username> <database_name> < /path/to/backup/directory/backup.sql
      
    2. Stop the Stack.

      docker compose down
      
    1. Remove the existing database.

      docker exec -i <database_container> dropdb -U <username> --force <database_name>
      
    2. Recreate the database.

      docker exec -i <database_container> createdb -U <username> <database_name>
      
    3. Restore the backup.

      docker exec -i <database_container> psql -U <username> -d <database_name> < /path/to/backup/directory/backup.sql
      
    4. Stop the Stack.

      docker compose down
      
  2. Downgrade BunkerWeb.

    services:
        bunkerweb:
            image: bunkerity/bunkerweb:<old_version>
            ...
        bw-scheduler:
            image: bunkerity/bunkerweb-scheduler:<old_version>
            ...
        bw-autoconf:
            image: bunkerity/bunkerweb-autoconf:<old_version>
            ...
        bw-ui:
            image: bunkerity/bunkerweb-ui:<old_version>
            ...
    
  3. Start the containers.

    docker compose up -d
    
  1. Stop the services.

    systemctl stop bunkerweb bunkerweb-ui
    
  2. Restore the backup.

    sudo rm -f /var/lib/bunkerweb/db.sqlite3
    sudo sqlite3 /var/lib/bunkerweb/db.sqlite3 < /path/to/backup/directory/backup.sql
    sudo chown root:nginx /var/lib/bunkerweb/db.sqlite3
    sudo chmod 770 /var/lib/bunkerweb/db.sqlite3
    
    mysql -u <username> -p <database_name> < /path/to/backup/directory/backup.sql
    
    1. Remove the existing database.

      dropdb -U <username> --force <database_name>
      
    2. Recreate the database.

      createdb -U <username> <database_name>
      
    3. Restore the backup.

      psql -U <username> -d <database_name> < /path/to/backup/directory/backup.sql
      
  3. Downgrade BunkerWeb.

    • Downgrade BunkerWeb to the previous version by following the same steps as when upgrading BunkerWeb in the integration Linux page