Setup your Website on free oracle server

SIMRAN RAJ
3 min readOct 15, 2020

This post is basically related to the setup of a basic website on the free oracle server.

I will be very happy to share the information with you all which I gathered from internet and from my friends in setting up with this website. I am really thankful for having such techie friends who have helped me if I ever get stuck and obviously internet which saves me at the last moment. Lets begin then after this joyous acknowledgement step by step for the setup of your mark on the WWW.

You can get a domain of you choice. There are a lot of places which can provide you with free domains as well. But you all know some free items have limitations in disguise. I purchased my domain from https://www.gandi.net/en-IN with a friends referral. If you also want to purchase contact me I too have referral.

Whoa, so you have your domain now. Setup for your hosting time buddy. So as suggested by one of my senior friend, oracle provides with free server , yup again with some limitations in disguise but free enough to serve your wishes My Lady/Gentleman. So , here you have to register for the oracle cloud (start for free). You must have a cloud account name, username and a password. https://www.oracle.com/in/cloud/free/

After you have registered you need to create your own instance

You can go with the default image

Next step is to create ssh keys and then paste it or browse the public key Hit the create button and wait for the instance to run , once it starts running, you will get your public IP address in the Instance Access Field. So here you have your own server. Wohooooo……We are gonna need the public IP address to ssh to your machine.

Next step is to setup the WordPress and associated elements. So I went through lot of blogs and got some good content for the WordPress setup. Found a guys blog who has written a perfect script to let your WordPress run. https://medium.com/analytics-vidhya/host-wordpress-for-free-on-oracle-cloud-a31d079a8cbc Its an amazing blog for you to understand all the aspect properly. I followed the exact steps but I faced problem with the PHP version mismatch with the WordPress version. So I have found a fix for that as well. Here we go people ………… Open you bash terminal, I use git-bash as I work on windows machine.

  1. ssh into your system with — — ssh opc@yourpulicip, type yes when interrogated
  2. sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
  3. sudo yum -y install https://rpms.remirepo.net/enterprise/remi-release-7.rpm
  4. sudo yum-config-manager — enable remi-php74
  5. sudo yum install php php-cli php-mysqlnd php-zip php-gd
  6. wget https://raw.githubusercontent.com/HughGDA/WordpressOnOracle/master/wordpress_setup.sh
  7. chmod +x ./wordpress_setup.sh
  8. ./wordpress_setup.sh

In the end you will be getting information related to your WordPress username, password and database username password. Keep it safe and secure.In the end it will take some time to reboot. After all this your public IP will be up and running.

Here we can see how to map your public IP with your domain name. Inside your dashboard, inside domain go to your dns records section and inside the Type A under IPv4 Address add your public IP which is up and running and thus the mapping is done. So when you hit the domain you will be redirected to the page you will be publishing.

I will come up with more technical blogs and some utility codes for you guys. Stay tuned. If you have any issues please reach out to me, I will be really happy if I could help.Have a nice day.

Originally published at https://www.simranraj.in.

--

--