Setup Nginx PHP FPM Percona Mysql
From Brian Nelson Ramblings
Revision as of 00:17, 9 February 2014 by Brian (Talk | contribs) (Created page with "==Setup Nginx + php-fpm + Percona Mysql== First we will want to enable the epel repo and percona repos rpm -Uhv http://www.percona.com/downloads/percona-release/percona-rel...")
Contents
Setup Nginx + php-fpm + Percona Mysql
First we will want to enable the epel repo and percona repos
rpm -Uhv http://www.percona.com/downloads/percona-release/percona-release-0.0-1.x86_64.rpm rpm -Uhv http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
1) Start off by Installing Nginx
yum install nginx -y
Let nginx to start on boot
chkconfig nginx on
Now lets start nginx
/etc/init.d/nginx start