OLS Oracle Compute Cloud

#3
Hi,

Hmmm. Good idea. Just one more question. Should I chose Ubuntu or it can go on Ubuntu minimal also (I mean, is it there something to missing for OLS, eventually)?
 

Cold-Egg

Administrator
#4
If you want to host an app like wordpress on it, better go with regular Ubuntu. Otherwise you may need to manually install some missing packages in the end.
 
#6
Hi,
Did you manage to install '1-click-install' WordPress on Oracle Always Free tier? I just installed it with success and welcome page on IP. However, I could not access the Admin area at IPaddress:7080/8088
 

Cold-Egg

Administrator
#7
It should work. You can also build your own image by following scripts and it should also take care of the firewall for you with Oracle Cloud
https://github.com/litespeedtech/ls-cloud-image/wiki/Build-WordPress-Image

For manual installation, please add following rules to /etc/iptables/rules.v4 and restart the iptables
Code:
           -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
            -A INPUT -p tcp -m state --state NEW -m tcp --dport 443 -j ACCEPT
            -A INPUT -p udp -m state --state NEW -m udp --dport 443 -j ACCEPT
            -A INPUT -p tcp -m state --state NEW -m tcp --dport 7080 -j ACCEPT
https://github.com/litespeedtech/ls-cloud-image/blob/master/Setup/wpimgsetup.sh#L1373-L1376
 
Top