Difference between revisions of "Setup Nginx PHP FPM Percona Mysql"
From Brian Nelson Ramblings
(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...") |
(No difference)
|
Revision as of 00:17, 9 February 2014
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