Linux Magazine #6: WordPress multisite Installatie listing
- December 8, 2021
- 0
sudo apt install apache2 mariadb-server php php-mysql sudo a2enmod rewrite sudo systemctl restart apache2 cd /tmp wget https://nl.wordpress.org/latest-nl_NL.tar.gz cd /var/www sudo mv html html-org sudo tar -xzvf /tmp/latest-nl_NL.tar.gz sudo mv wordpress html sudo chown -R www-data:www-data html sudo mysql -u root -p CREATE DATABASE wordpress; CREATE USER wordpress@localhost IDENTIFIED BY 'IsOpenSource'; GRANT ALL PRIVILEGES ON wordpress.* TO wordpress@localhost; FLUSH PRIVILEGES; exit