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!
How would I get more recent version of PHP? I’d need at least 5.4 but this installer gives me 5.3, is there a way to update?
@msurguy: Try installing php from the epel testing repo:
<pre>sudo yum --enablerepo=epel-testing update php php-common</pre> Does that work?
I can’t connect to Mysql using php tools like http://www.adminer.org/. User root and password the set password. What I wrong?
At step 4 where I install php when I will add the lines in file /etc/lighttpd/conf.d/fastcgi.conf where it says port 9000 means that the lighttpd will listen to port 9000 and not in 80?
@sianiosmarinos: It means that it should connect to the FastCGI process that is listening on port 9000.
@Federico: Do the credentials work when you try to run the following command (replacing username with the username you’re trying to log in as)? <pre>mysql -u username -p</pre> (it’ll ask you for the password once you press enter).
You are running PHP 5.3.3, but the application needs at least PHP 5.4.0 to run.
Any clue about how to upgrade to PHP 5.4?
After a lil research i answer to myself and any other person in need.
Remi Dependency on CentOS 6 and Red Hat (RHEL) 6
rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
then
sudo yum --enablerepo=remi update php php-common
and boom!
PHP Version 5.4.33 Build Date Sep 20 2014 16:21:38 Server API FPM/FastCGI
Hi, thanks for writing this guide, it really helps me in my work.
I just want to ask, I know the step 6 is optional, but is there any effect to the server if I could not get the same output as shown by you? I got a warning message - “403 - forbidden”
Thanks