网站制作学习网Linux→正文:yum 安装nginx+php+php-fpm+mysql
字体:

yum 安装nginx+php+php-fpm+mysql

Linux 2014/10/29 23:48:56  点击:不统计

forasp.cn
yum 安装nginx+php+php-fpm+mysql
 #安装mysql 客户端

yum install mysql.x86_64
#安装mysql服务器端
yum install mysql-server.x86_64
#安装nginx
yum install nginx.x86_64
#安装php-fpm 
yum install php-fpm.x86_64
#安装php,不知道为什么这里面加载个apache 所以下一步删除httpd
yum install php.x86_64
yum remove httpd
#如果服务则关闭防火墙
service iptables stop
#启动服务
service mysqld start
#这里如果想解析php需要修改配置文件这个在下次文章中写出。
service nginx start
service php-fpm start
 
上述服务启动完毕即可

·上一篇:tar 不压缩部分文件 >>    ·下一篇:Error: Cannot retrieve metalink for repository: epel. Please verify it >>
推荐文章
最新文章