WackoWiki is a popular open-source wiki software that allows you to create and manage a wiki site for documentation, knowledge base, and collaboration purposes. In this tutorial, we will guide you through the process of installing WackoWiki on Fedora Server.
Before we start, make sure you have the following prerequisites:
cd ~
wget https://wackowiki.org/download/wackowiki-5.5.17.tar.gz
tar -xzvf wackowiki-5.5.17.tar.gz
sudo mv wackowiki-5.5.17 /var/www/html/wackowiki
mysql -u root -p
CREATE DATABASE wackowiki;
GRANT ALL ON wackowiki.* TO 'wackouser'@'localhost' IDENTIFIED BY 'yourpassword';
FLUSH PRIVILEGES;
exit
cd /var/www/html/wackowiki
config.php
by typing the following command:cp config.sample.php config.php
config.php
file with your preferred text editor, such as nano, by typing the following command:nano config.php
define('DB_DSN', 'mysql:host=localhost;dbname=wackowiki');
define('DB_USER', 'wackouser');
define('DB_PASSWORD', 'yourpassword');
Save and close the file by pressing CTRL+X
, then Y
, and then ENTER
.
Change the ownership of the WackoWiki folder to the Apache user by typing the following command:
sudo chown -R apache:apache /var/www/html/wackowiki/
sudo nano /etc/httpd/conf.d/wackowiki.conf
<VirtualHost *:80>
ServerAdmin admin@example.com
DocumentRoot /var/www/html/wackowiki/
ServerName wackowiki.example.com
ErrorLog /var/log/httpd/wackowiki.example.com-error.log
CustomLog /var/log/httpd/wackowiki.example.com-access.log combined
<Directory /var/www/html/wackowiki>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Save and close the file by pressing CTRL+X
, then Y
, and then ENTER
.
Restart the Apache web server by typing the following command:
sudo systemctl restart httpd
http://wackowiki.example.com
, where wackowiki.example.com
should be replaced with your server’s domain name or IP address.Congratulations! You have successfully installed WackoWiki on your Fedora Server. You can now start creating and managing your wiki pages.
If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!
Alternatively, for the best virtual desktop, try Shells!