WordPress Setup Guide
Step 1: Update and Upgrade the System
- Log in to your server.
- Run the following commands to update your system:
sudo apt update && sudo apt upgrade -y
Step 2: Install Required Packages
Install the necessary software:
sudo apt install apache2 mysql-server php php-mysql php-cli php-curl php-xml php-mbstring unzip curl -y
Step 3: Secure MySQL
- Secure your MySQL installation:
sudo mysql_secure_installation
- Set a strong MySQL root password.
- Remove anonymous users.
- Disable remote root login.
- Remove test databases.
- Log in to MySQL to create a database and user for WordPress:
sudo mysql
Inside the MySQL shell, execute:
CREATE DATABASE wordpress; CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'strongpassword'; GRANT ALL PRIVILEGES ON wordpress.* TO 'wordpress'@'localhost'; FLUSH PRIVILEGES; EXIT;
Step 4: Download and Install WordPress
- Go to the Apache web root directory:
cd /var/www/html
- Download the latest WordPress:
sudo curl -O https://wordpress.org/latest.tar.gz
- Extract the WordPress files:
sudo tar -xvzf latest.tar.gz sudo mv wordpress/* .
- Clean up:
sudo rm latest.tar.gz sudo rmdir wordpress
Step 5: Configure WordPress
- Set proper permissions:
sudo chown -R www-data:www-data /var/www/html sudo chmod -R 755 /var/www/html
- Copy the sample WordPress configuration:
sudo mv wp-config-sample.php wp-config.php
- Edit the
wp-config.php
file to connect WordPress to your database:sudo nano wp-config.php
Replace the following lines with your database information:
define( 'DB_NAME', 'wordpress' ); define( 'DB_USER', 'wordpress' ); define( 'DB_PASSWORD', 'strongpassword' ); define( 'DB_HOST', 'localhost' );
Step 6: Configure Apache
- Create a new virtual host configuration for WordPress:
sudo nano /etc/apache2/sites-available/wordpress.conf
Add the following configuration:
<VirtualHost *:80> ServerAdmin admin@example.com DocumentRoot /var/www/html ServerName yourdomain.com ServerAlias www.yourdomain.com <Directory /var/www/html/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>
- Enable the site and
mod_rewrite
:sudo a2ensite wordpress.conf sudo a2enmod rewrite
- Restart Apache:
sudo systemctl restart apache2
Step 7: Enable Pretty Permalinks
- Create or edit the
.htaccess
file in the WordPress root directory:sudo nano /var/www/html/.htaccess
Add the following rules:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Step 8: Test WordPress
- Open your browser and navigate to:
http://your_server_ip/
- Follow the WordPress setup wizard:
- Select your language.
- Enter your site title, admin username, password, and email.
Step 9: Secure Your WordPress Site
- Install an SSL certificate (if using a domain):
sudo apt install certbot python3-certbot-apache -y sudo certbot --apache
- Set up automatic renewal:
sudo certbot renew --dry-run
Your WordPress server and database should now be fully operational! Let me know if you need help with further customization or troubleshooting.