Posts

Showing posts from December, 2021

[Free] How To Install WordPress with Nginx in Ubuntu 20.04 Oracle Cloud?

Image
This tutorial has been written to help you set up a server running Ubuntu 20.04 with Nginx and WordPress. If you are looking for a solution that is fast, scalable, secure, and low maintenance then this guide is perfect for you. It will take you step-by-step through the process of installing the latest version of Ubuntu on your VPS server. Then it will show you how to install WordPress on your freshly installed Ubuntu server in less than 10 minutes! If this sounds too good to be true then read on because I'll show you how... 1: Copy Instance IP Address 2: Generate Puttgen Private Key using the Private & Public Keys Generated While Creating Your Instance Conversions > Import Key > Select Your PrivateKey File Click Save Private Key > Press YES 3: Open Putty      Paste Your IPAddress     Under Connection > SSH > Auth > Click Browse & Select the private key file generated from puttygen 4: Click the Open Button on Putty to connect through SSH > Accept 5: logi

[Fixed] : How To Install WordPress on Oracle Cloud Always Free - Nginx Not Listening Problem

Image
 [Live & Running] The Following Are The SSH Command 1. Enable Super Admin  sudo su - 2 : Update & Upgrade Command sudo apt update sudo apt upgrade 3. Firewall Update sudo apt install ufw sudo ufw allow ssh sudo ufw allow http sudo ufw allow https sudo ufw enable 4: Install NGINX Command sudo apt install nginx 5: Check Nginx Status service nginx status It should display like this ..Output ... root@ubuntu-nginx-test:~# service nginx status ● nginx.service - A high performance web server and a reverse proxy server      Loaded: loaded (/lib/systemd/system/nginx.service; disabled; vendor preset: enabled)      Active: active (running) since Wed 2021-07-21 02:34:01 IST; 41s ago        Docs: man:nginx(8)    Main PID: 16743 (nginx)       Tasks: 2 (limit: 2010)      Memory: 4.0M      CGroup: /system.slice/nginx.service              ├─16743 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;              └─16744 nginx: worker process Jul 21 02:34:01 ubuntu-nginx-test sy