Well this was a bugger, mainly because I fart arsed about setting up NGINX/PHP-FPM individual pools on a UAT box using a script I found on that there “internet”. To be fair it is a good script, but I was too lazy for my own good and didn’t debug well. Here it is. Moral of ..
Archives : August-2016
Fresh CentOS 7 Install NGINX yum install screen epel-release -y yum install nginx -y mkdir /etc/nginx/sites-available/ systemctl start nginx systemctl enable nginx MySQL wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm rpm -ivh mysql57-community-release-el7-8.noarch.rpm rm -f mysql57-community-release-el7-8.noarch.rpm yum clean all -y yum install mysql-server -y systemctl restart mysqld systemctl enable mysqld Secure MySQL grep “temporary password” /var/log/mysqld.log A temporary password is ..