Centos7 搭建LTMP环境PHP、Tengine、Mysql、Supervisord、Redis

环境:

  • 1、系统:centos 7
  • 2、Tengine 2.1.2
  • 3、php 7.0
  • 4、MySQL 5.7
  • 5、supervisord
  • 6、redis
一、安装依赖包yum udateyum -y install gcc gcc-c++ autoconf automakeyum -y install pcreyum -y install pcre-develyum -y install zlibyum -y install zlib-develyum -y install opensslyum -y install openssl-develyum -y install jemalloc#内存管理工具二、安装Tengine1、下载安装包
wget http://tengine.taobao.org/download/tengine-2.1.2.tar.gz2、解压
tar zxvf tengine-2.1.2.tar.gz3、编译安装
【Centos7 搭建LTMP环境PHP、Tengine、Mysql、Supervisord、Redis】cd tengine-2.1.2./configuremake && make install 
Centos7 搭建LTMP环境PHP、Tengine、Mysql、Supervisord、Redis

文章插图
Tengine 安装成功
三、安装MySQL1、运行以下命令更新YUM源 。
rpm -Uvh http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm2.运行以下命令安装MySQL 。
yum -y install mysql-community-server3.运行以下命令查看MySQL版本号 。
mysql -V返回结果如下所示,表示MySQL安装成功 。mysql Ver 14.14 Distrib 5.7.28, for linux (x86_64) using EditLine wrApper4.运行以下命令启动MySQL 。
systemctl start mysqld5.运行以下命令设置开机启动MySQL 。
systemctl enable mysqld systemctl daemon-reload四、安装PHP1.更新YUM源
运行以下命令添加epel源 。
yum install https://repo.ius.io/ius-release-el7.rpm https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm2、运行以下命令添加Webtatic源 。
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm3、运行以下命令安装PHP 。
yum -y install php70w-devel php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-pdo.x86_64 php70w-mysqlnd php70w-fpm php70w-opcache php70w-pecl-redis php70w-pecl-mongodb
4、运行以下命令查看PHP版本 。
php -v返回结果如下所示,表示安装成功 。
PHP 7.0.33 (cli) (built: Dec6 2018 22:30:44) ( NTS )Copyright (c) 1997-2017 The PHP GroupZend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologieswith Zend OPcache v7.0.33, Copyright (c) 1999-2017, by Zend Technologies五:配置Nginx
  1. 运行以下命令备份Nginx配置文件 。
cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak
修改Nginx配置文件,添加Nginx对PHP的支持
运行以下命令打开Nginx配置文件 。
vim /etc/nginx/nginx.conf在server大括号内,添加下列配置信息 。
#除下面提及的需要添加的配置信息外,其他配置保持默认值即可 。location / {#在location大括号内添加以下信息,配置网站被访问时的默认首页index index.php index.html index.htm;}#添加下列信息,配置Nginx通过fastcgi方式处理您的PHP请求location ~ .php$ {root /usr/share/nginx/html;#将/usr/share/nginx/html替换为您的网站根目录,本教程使用/usr/share/nginx/html作为网站根目录fastcgi_pass 127.0.0.1:9000;#Nginx通过本机的9000端口将PHP请求转发给PHP-FPM进行处理fastcgi_index index.php;fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;include fastcgi_params;#Nginx调用fastcgi接口处理PHP请求}
Centos7 搭建LTMP环境PHP、Tengine、Mysql、Supervisord、Redis

文章插图
配置Nginx支持PHP
运行以下命令启动Nginx服务 。
systemctl start nginx 运行以下命令设置Nginx服务开机自启动 。
systemctl enable nginx六:配置MySQL
  1. 运行以下命令查看/var/log/mysqld.log文件,获取并记录root用户的初始密码 。
grep 'temporary password' /var/log/mysqld.log
 
2016-12-13T14:57:47.535748Z 1 [Note] A temporary password is generated for root@localhost: p0/G28g>lsHD运行以下命令配置MySQL的安全性 。
mysql_secure_installation安全性的配置包含以下五个方面:
  1. 重置root账号密码 。
Enter password for user root: #输入上一步获取的root用户初始密码 The 'validate_password' plugin is installed on the server. The subsequent steps will run with the existing configuration of the plugin. Using existing password for root. Estimated strength of the password: 100 Change the password for root ? (Press y|Y for Yes, any other key for No) : Y #是否更改root用户密码,输入Y New password: #输入新密码,长度为8至30个字符,必须同时包含大小写英文字母、数字和特殊符号 。特殊符号可以是()` ~!@#$%^&*-+=|{}[]:;‘<>,.?/ Re-enter new password: #再次输入新密码 Estimated strength of the password: 100 Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y


推荐阅读