Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I can not load the page, if I type
I received this
127.0.0.1 ::1 192.168.2.128 fe80::250:56ff:fe8e:450c
If I try to load 192.168.2.128 never load it
And if I type: ]# ip addr show eth0 | grep inet | awk ‘{ print $2; }’ | sed ‘s//.*$//’ I get:
Device “eth0” does not exist.
@dgonzalez: Are you running this on a droplet? What’s the output of ip link show?
Is Apache running? Can you post the output of the following two commands?
sudo ps wwaux | egrep "apache|http"
sudo nestat -plutn
I wish there was a Tutorial, that showed me how to add phpmyadmin, imagemagick and mcrypt to Centos 7 after this tut. Does anybody know where can I get that information, appreciate any help
How to install phpMyAdmin on CentOS 7
Install epel
rpm -ivh http://dl.fedoraproject.org/pub/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm
Install phpMyAdmin
yum install phpmyadmin
Backup old config file
mv /etc/httpd/conf.d/phpMyAdmin.conf /etc/httpd/conf.d/phpMyAdmin.conf.old
Create new one
nano /etc/httpd/conf.d/phpMyAdmin.conf
Add these lines in it and save and close nano
<Directory "/usr/share/phpMyAdmin">
AllowOverride None
Options None
Allow from All
Require all granted
</Directory>
Alias /phpmyadmin /usr/share/phpMyAdmin
Restart apache and mysql
systemctl restart mariadb
service httpd restart
And reach via your server IP
http://ip.add.ress/phpmyadmin
Thanks. How to change server tokens? OS to Prod.
I want hidden web server name (Apache/2.4.6 (CentOS) PHP/5.4.16).
Love the guide! But how do i actually USE php-fpm with apache in Centos 7 ? I am using it in Centos 6.5 with apache with mod_fastcgi as the middleman and my boxes are ligtning fast…
But i cant find a guide anywhere on how to get php-fpm running with apache !!