首页 > 代码库 > centos6.2 LNMP 环境安装(yum)
centos6.2 LNMP 环境安装(yum)
安装第三方yum源
wget http://www.atomicorp.com/installers/atomic
sh ./atomic
yum chech-update #更新yum源
安装环境
安装nginx
yum remove httpd* php* #删除系统自带的软件包
yum install nginx
chkconfig nginx on #设置nginx开机启动
service nginx start
安装mysql
yum install mysql mysql-server
/etc/init.d/mysqld start #启动mysql
chkconfig mysqld on #设置开机启动
cp /usr/share/mysql/my-medium.cnf /etc/my.cnf #拷贝配置文件
mysql_secure_installation #设置root密码 ,回车 根据提示按Y 输入2次密码,然后一路Y
service mysqld restart # 重启mysql
安装PHP5
yum install php php-fpm
安装PHP组件 ,使PHP5 支持mysql (包括mcrypt加密模块)
yum install php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath
php-mhash libmcrypt
chkconfig php-fpm on
service php-fpm start
配置nginx支持PHP
cp /etc/nginx/nginx.conf /etc/nginx/nginx.confbak
vim /etc/nginx/nginx.conf
user nginx nginx; #修改nginx运行账号为:nginx组的nginx
:wq
cp /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.confbak
vim /etc/nginx/conf.d/default.conf
index index.php index.html index.htm; #增加index.php
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_intercept_errors on;
include fastcgi.conf;
}
service nginx restart #重启nginx
配置PHP
vim /etc/php.ini
date.timezone = PRC
expose_php =Off #禁止显示PHP 版本信息
magic_quotes_gpc =On # 防止SQL注入
short_open_tag = ON #支持PHP短标签
open_basedir = .:/tmp/ #在380行 设置表示允许访问当前目录(即PHP脚本文件所在之目录)和/tmp/目录,可以防止php木马跨站,如果改了之后安装
程序有问题(例如:织梦内容管理系统),可以注销此行,或者直接写上程序的目录/data/www.osyunwei.com/:/tmp/ 注意: 该选项像如果没有正确
配置会造成nginx无法正常访问 access denied
配置php-fpm
cp /etc/php-fpm.d/www.conf /etc/php-fpm.d/www.confbak #备份原有配置文件
vi /etc/php-fpm.d/www.conf #编辑
user = nginx #修改用户为nginx
group = nginx #修改组为nginx
:wq #保存退出
测试
cd /usr/share/nginx/html
vi index.php #添加以下代码
<?php
phpinfo();
?>
:wq! #保存退出
chown nginx.nginx /usr/share/nginx/html -R #设置权限
service nginx restart #重启nginx
service php-fpm restart #重启php-fpm
在浏览器输入IP地址就能看见phpinfo了
至此最简化LNMP环境搭建完毕,可根据生产环境需要可做进一步优化
centos6.2 LNMP 环境安装(yum)