Exploring the BlueSpice wiki tool
Deploying BlueSpice
Thanks to Docker, the next step is deploying BlueSpice – no need to worry about a web server, etc. But for the sake of this example, a few extra settings should be taken into consideration. A BlueSpice instance facing the Internet must support SSL encryption under all circumstances (e.g., to ensure that passwords are not transmitted in plaintext format). BlueSpice is configured to accept external SSL certificates out of the box, but they have to be available to the BlueSpice container. Three files are required: ssl.cert
containing the actual SSL certificate, ssl.key
containing the corresponding key, and ssl.ca
if the SSL certificate used requires an intermediate CA certificate to establish the chain of trust.
For the BlueSpice setup, placing the certificates in the previously created folder /srv/data
is sufficient. That folder will later be inserted into the container as /data
using a bind mount. /data
is where BlueSpice looks for its SSL certificate files, so you're done. You can now pull the Docker image for BlueSpice free from Docker Hub using:
docker pull bluespice/bluespice-free
Firing Up the Docker Image
To deploy BlueSpice, use the most important command in this procedure:
sudo docker run --rm --name bluespice -ti -p 80:80 -p 443:443 -v bluespice-data:/data -e "bs_lang=en" -e "bs_url=https://www.example.net" bluespice/bluespice-free
The parameters appended to the docker
command are straightforward. Ports 80 and 443 must be assigned to the Docker container running BlueSpice, so use -p 80:80
and -p 443:443
. Docker will now automatically configure port forwarding from the host's IP address to the container's internal (and virtual) address.
To set the language to English, pass in the environmental variable "bs_lang=en"
. Knowledge management tools will be better accepted by staff members when the interface uses a known language. However, even if the standard language in the container is English, users will still be able to configure their profile's language.
Following the bs_url
parameter, you will need to replace https://www.example.net
with the full URL to your newly created Wiki to meet local needs. After a few seconds, BlueSpice will be up and running, using a standard login of WikiSysop and a standard password of PleaseChangeMe. Change those values as quickly as possible; they are documented in the official BlueSpice installation guide and hence publicly available. To do so, log in to BlueSpice with a browser using the URL you have inserted into the command and change the password in the account's profile.
Enable BlueSpice at Boot Time
Like most modern Linux distributions, Ubuntu uses systemd. To ensure that a Docker container is automatically started when the system boots, a systemd unit file is required. Listing 1 shows the example for the BlueSpice deployment as described in this article.
Listing 1
Systemd example unit file for BlueSpice
To make systemd recognize the new unit file, place the contents of Listing 1 in a file named /etc/systemd/system/bluespice.unit
and run
sudo systemctl daemon-reload
To restart Docker and all systemd units depending on it, use
sudo systemctl restart docker
From now on, whenever the system reboots, BlueSpice will automatically launch afterwards.
It makes sense to have a look at the configuration options provided by BlueSpice in its administration back end. The software tries to use generic defaults wherever possible. Even though they work fine, a few default settings might need changes for special setups. Note that Hallo Welt! also offers a migration path and tool to migrate existing content from Confluence to BlueSpice. A set of scripts automate the migration as much as possible [4] .
« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.