千家信息网

CentOS6.7系统中配置LNMP环境的方法

发表于:2025-01-31 作者:千家信息网编辑
千家信息网最后更新 2025年01月31日,今天小编给大家分享一下CentOS6.7系统中配置LNMP环境的方法的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收
千家信息网最后更新 2025年01月31日CentOS6.7系统中配置LNMP环境的方法

今天小编给大家分享一下CentOS6.7系统中配置LNMP环境的方法的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

1:查看环境:

 [root@localhost ~]# cat /etc/redhat-release

2:关掉防火墙

#重启后生效开启[root@localhost ~]# chkconfig iptables offor#即时生效,重启后失效开启[root@localhost ~]# service iptables stop

关闭selinux

#即时生效,重启后失效[root@localhost ~]#setenforce 0 //将selinux=enforcing修改为disabled然后重启生效[root@localhost ~]# vi /etc/selinux/config

3.配置centos 6.7 第三方yum源(centos默认的标准源里没有nginx软件包)

[root@localhost ~]#wget http://www.atomicorp.com/installers/atomic [root@localhost ~]#sh ./atomic [root@localhost ~]#yum check-update

4:安装开发包和库文件

复制代码 代码如下:

#注意不要换行
[root@localhost ~]#yum -y install ntp make openssl openssl-devel pcre pcre-devel libpng libpng-devel libjpeg-6b libjpeg-devel-6b freetype freetype-devel gd gd-devel zlib zlib-devel gcc gcc-c++ libxpm libxpm-devel ncurses ncurses-devel libmcrypt libmcrypt-devel libxml2 libxml2-devel imake autoconf automake screen sysstat compat-libstdc++-33 curl curl-devel

5:卸载已安装的apache、mysql、php

# yum remove httpd# yum remove mysql# yum remove php

6:安装nginx

# yum install nginx# service nginx start# chkconfig --levels 235 nginx on     //设2、3、5级别开机启动

7:安装mysql

# yum install mysql mysql-server mysql-devel# service mysqld start# chkconfig --levels 235 mysqld on//登陆mysql删除空用户,修改root密码mysql>select user,host,password from mysql.user; mysql>drop user ''@localhost; mysql>update mysql.user set password = password('your password') where user='root'; mysql>flush privileges;

8:安装php

//同样注意不要换行# yum install php lighttpd-fastcgi php-cli php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-mssql php-snmp php-soap//安装php和所需组件使php支持mysql、fastcgi模式#yum install php-tidy php-common php-devel php-fpm php-mysql# service php-fpm start# chkconfig --levels 235 php-fpm on

9:配置nginx支持php

//将配置文件改为备份文件# mv /etc/nginx/nginx.conf /etc/nginx/nginx.confbak//由于原配置文件要自己去写因此可以使用默认的配置文件作为配置文件# cp /etc/nginx/nginx.conf.default /etc/nginx/nginx.conf//修改nginx配置文件server段,添加fastcgi支持# vi /etc/nginx/nginx.conf//加入index.phpindex index.php index.html index.htm;//将下列代码注释去掉,并修改成nginx默认路径location ~ \.php$ {   root   html;   fastcgi_pass 127.0.0.1:9000;   fastcgi_index index.php;   fastcgi_param script_filename /usr/share/nginx/html$fastcgi_script_name;   include  fastcgi_params;  }

10:配置php

//编辑文件php.ini,在文件末尾添加cgi.fix_pathinfo = 1 [root@centos ~]# vi /etc/php.ini

11:重启nginx php-fpm

# service nginx restart# service php-fpm restart

12:建立info.php文件

# vi /usr/share/nginx/html/info.php

13:测试nginx是否可以解析php

本地浏览器输入:192.168.32.164/info.php

以上就是"CentOS6.7系统中配置LNMP环境的方法"这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注行业资讯频道。

0