搭建 LNMP 环境

mac2022-06-30  72

服务器环境:CentOS 6

1、安装 Nginx

使用 yum 安装 Nginx:

yum install nginx -y

修改 /etc/nginx/conf.d/default.conf,去除对 IPv6 地址的监听

CentOS 6 不支持 IPv6,需要取消对 IPv6 地址的监听,否则 Nginx 不能成功启动。 可参考下面的代码示例: 1 server { 2 listen 80 default_server; 3 # listen [::]:80 default_server; 取消对 IPv6 地址的监听 4 server_name _; 5 root /usr/share/nginx/html; 6 7 # Load configuration files for the default server block. 8 include /etc/nginx/default.d/*.conf; 9 10 location / { 11 } 12 13 error_page 404 /404.html; 14 location = /40x.html { 15 } 16 17 error_page 500 502 503 504 /50x.html; 18 location = /50x.html { 19 } 20 21 }

修改完成后,启动 Nginx:

nginx 此时,可访问外网 HTTP 服务( http://IP)来确认是否已经安装成功。

将 Nginx 设置为开机自动启动:

chkconfig nginx on

 

 

2、安装 MySQL

使用 yum 安装 MySQL:

yum install mysql-server -y

安装完成后,启动 MySQL 服务:

service mysqld restart

设置 MySQL 账户 root 密码:

/usr/bin/mysqladmin -u root password 'ScQGv7mq'

将 MySQL 设置为开机自动启动:

chkconfig mysqld on

 

3、安装 PHP

使用 yum 安装 PHP:

CentOS 6 默认已经安装了 PHP-FPM 及 PHP-MYSQL,下面命令执行的可能会提示已经安装。 yum install php php-fpm php-mysql -y

安装之后,启动 PHP-FPM 进程:

service php-fpm start

启动之后,可以使用下面的命令查看 PHP-FPM 进程监听哪个端口

PHP-FPM 默认监听 9000 端口 netstat -nlpt | grep php-fpm

把 PHP-FPM 也设置成开机自动启动:

chkconfig php-fpm on

 

4、配置 Nginx 并运行 PHP 程序

配置 Nginx

在  /etc/nginx/conf.d 目录中新建一个名为 php.conf 的文件,并配置 Nginx 端口 ,配置示例如下: server { listen 8000; # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ .php$ { root /usr/share/php; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }

修改配置完成后,重启 nginx 服务

service nginx restart 这时候,我们就可以在 /usr/share/php 目录下新建一个 info.php 文件来检查 php 是否安装成功了,文件内容参考如下: <?php phpinfo(); 此时,访问  http://IP:8000/info.php 可浏览到我们刚刚创建的 info.php 页面了

转载于:https://www.cnblogs.com/zhangzhijian/p/11424279.html

相关资源:ubuntu 20.04上搭建LNMP环境的方法步骤
最新回复(0)