Free Tier: Install WordPress on an Ubuntu Instance
In this tutorial, use an Oracle Cloud Infrastructure Free Tier account to set up an
Ubuntu instance. Next, install an Apache web server, PHP 8, MySQL, and finally WordPress.
After installation, access your new WordPress installation from the internet. This tutorial
covers all the steps necessary to set up a virtual network, a compute instance, and connect
the host to the internet.
Key tasks include how to:
Set up a compartment for your development work.
Install an Ubuntu Linux instance and connect it to a Virtual Cloud Network (VCN).
Set up an Oracle Cloud Infrastructure virtual cloud network and related
network services required for a host to connect to the internet.
Set up ssh encryption keys to access the Ubuntu Linux
Server.
Configure ingress rules for a VCN.
Configure Apache, PHP 8, MySQL, and WordPress on the VM.
Connect to the instance from the internet.
Here is a simplified diagram of the setup for the Linux VM.
To get started installing an instance with the Create a VM instance workflow,
follow these steps:
Important
The steps provided are for a Free Tier account. If you are using
a paid account, the steps might differ from those shown here.
Click the Oracle Cloud icon to go to the main landing
page.
Scroll down to Launch Resources.
Select Create a VM instance workflow.
The Create compute instance page is displayed. The
page sections include
Name and
Compartment
Placement
Security
Image and shape
Networking
Add SSH keys
Boot volume
Choose the Name and Compartment.
Initial Options
Name:<name-for-the-instance>
Create in compartment:<your-compartment-name>
Enter a value for the name or use the system supplied default. For
compartment, select the compartment you created.
Review the Placement settings.
Take the default values. An availability domain is assigned to you.
The data might look similar to the following:
Availability domain
Availability domain: AD-1
Capacity type: On-demand capacity
Fault domain: Let Oracle choose the best fault
domain
Note
For Free Tier, use the Always Free Eligible option for availability
domain.
Review the Security settings.
Take the default settings.
The data might look similar to the following:
Security
Shielded instance: Disabled
Confidential computing: Disabled
Review the Image and shape settings. Change the
operating system image.
Click Edit.
Click Change Image.
Click Ubuntu.
Select Canonical Ubuntu 22.04 or a later version.
Click Select Image.
Note
The following is sample data for an AMD virtual machine. The actual values
might differ.
Image and shape
Image: Canonical Ubuntu 22.04
Image build:<current-build-date>
Shape: VM.Standard.E2.1.Micro
OCPU: 1
Memory (GB): 1
Network bandwidth (Gbps): 0.48
Note
For Free Tier, use Always Free Eligible shape
options.
Continue to the next section.
Review the Networking settings. Make the following
changes to the default.
Click Edit.
Primary Network: Select Create new
virtual cloud network.
New virtual cloud network name: Take the
generated VCN name or provide a name.
Create in compartment:
<your-compartment-name>.
Subnet: Select Create new public
subnet.
New subnet name: Take the generated subnet name
or provide a name.
Create in compartment:
<your-compartment-name>.
CIDR block: Take the default value (for example,
10.0.0.0/24).
Public IPv4 address, take the default value of
Assign a public IPv4 address.
Continue to the next section.
Review the Add SSH keys settings. Take the default
values provided by the workflow.
Select the Generate a key pair for me
option.
Click Save Private Key and Save Public
Key to save the private and public SSH keys for this
compute instance.
If you want to use your own SSH keys, select one of the options to provide
your public key.
Note
Put your private and public key files in a safe location. You can't
retrieve keys again after the compute instance has been created.
Review the Boot volume settings.
Uncheck the Specify a customer boot volume size setting.
Check the Use in-transit encryption setting.
Uncheck the Encrypt this volume with a key that you manage setting.
Click Create to create the instance. Provisioning the system might take
several minutes.
You have successfully created an Ubuntu Linux instance.
3. Enable Internet Access 🔗
The Create a VM Instance workflow automatically creates a VCN for your VM. You
add an ingress rule to the subnet to allow internet connections on port 80.
Follow these steps to select the VCN's public subnet and add the ingress rule.
Open the navigation menu and click Networking, and then click Virtual Cloud Networks.
Select the VCN you created with the compute instance.
With the new VCN displayed, click <your-subnet-name> subnet
link.
The public subnet information is displayed with the Security Lists at the
bottom of the page. A link to the Default Security List for the VCN
is displayed.
Click the Default Security List link.
The default Ingress Rules for the VCN are displayed.
Click Add Ingress Rules.
An Add Ingress Rules dialog is displayed.
Fill in the ingress rule with the following information.
Fill in the ingress rule as follows:
Stateless: Checked
Source Type: CIDR
Source CIDR: 0.0.0.0/0
IP Protocol: TCP
Source port range: (leave-blank)
Destination Port Range: 80
Description: Allow HTTP connections
Click Add Ingress Rules.
Now HTTP connections are allowed. The VCN is configured for HTTP traffic
on port 80.
You have successfully created an ingress rule that makes the instance available on
port 80 from the internet.
4. Install and Configure Apache, PHP 8, MySQL, and WordPress 🔗
Next install and configure Apache web server and PHP to run on the Ubuntu Linux
instance.
Since you identified your public key when you created the VM, this command
logs you into the VM. You can now issue sudo commands to
install and start the server.
Update firewall settings.
Next, update the iptables
configuration to allow HTTP traffic. To update iptables,
run the following commands.
Copy
sudo iptables -I INPUT 6 -m state --state NEW -p tcp --dport 80 -j ACCEPT
Copy
sudo netfilter-persistent save
The commands add a rule to allow HTTP traffic and saves the changes to the
iptables configuration files.
You can test the server from the command line
with curl localhost. Or, you can connect your browser to
the public IP address assigned to the VM:
http://<your-public-ip-address>. The
page looks similar to:
Next, you install and configure the MySQL server and client so it can be used with
WordPress.
Important
Because of configuration changes to the Ubuntu MySQL setup, this
tutorial adds additional steps before and after the sudo
mysql_secure_installation script. The new steps are required for the
mysql_secure_installation script to complete
successfully.
Install the MySQL Server package.
Copy
sudo apt -y install mysql-server
This step can take some time.
Sign in to MySQL.
Copy
sudo mysql
Change the MySQL root user to allow password authentication.
Copy
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '<your-password>';
Note
This password is temporary. You reset the root password in the following
steps.
Exit MySQL.
Copy
mysql> exit
Secure MySQL with the mysql_secure_installation script.
Run the script.
Copy
sudo mysql_secure_installation
Produces this output:
Securing the MySQL server deployment.
You are prompted for the temporary password you set.
Enter password for user root:
Enter the password.
Turn on Password Validation:
VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to set up VALIDATE PASSWORD component?
Press y|Y for Yes, any other key for No:
Select Y.
Select the password validation level.
There are three levels of password validation policy:
LOW Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary file
Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG:
Change the root password.
Using existing password for root.
Estimated strength of password: XX
Change the password for root ? ((Press y|Y for Yes, any other key for No) :
Select Y.
Set the root password.
New password:
Re-enter new password:
Estimated strength of the password: 100
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) :
Note
This step replaces the initial temporary password set
earlier.
Select Y.
Select the remaining security options.
Remove anonymous users? (Press y|Y for Yes, any other key for No) :
Disallow root login remotely? (Press y|Y for Yes, any other key for No) :
Remove test database and access to it? (Press y|Y for Yes, any other key for No) :
Reload privilege tables now? (Press y|Y for Yes, any other key for No) :
Success.
All done!
Tip
Taking the default values, Y to all
options, is recommended.
Sign in to MySQL with the new password.
Copy
mysql -u root -p
Change the MySQL authentication method back to auth_socket.
Copy
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH auth_socket;
Tip
The auth_socket authentication method allows
you to authenticate with sudo rather than with a MySQL
password.
The contents of the wordpress directory are copied into the
/var/www/html directory. This command is a sample. The
command might differ depending on the name of your directories.
Change into to the /var/www/html directory.
Copy
cd /var/www/html
Rename the default index.html file.
Copy
mv index.html index.html.bk
Now index.php is loaded by default when the root directory
is accessed.
Rename the wp-config-sample.php file.
Copy
mv wp-config-sample.php wp-config.php
Update the values for the MySQL set up.
Copy
vi wp-config.php
Run the installation script by opening a browser and this URL:
http://<your-public-ip-address>/wp-admin/install.php
Note
Create an administrator account for the WordPress blog. Ensure you write
down the information from the install page. You need the information to sign
in to the WordPress blog.
Open the new blog at:
http://<your-public-ip-address>
Finish any other configuration you need for WordPress. Here is a link to
help.