LINUX安装nginx详细步骤
1.安装依赖包
1 |
|
2.下载并解压安装包
1 |
|
3.安装nginx
1 |
|
4.配置nginx.conf
1 |
|
5.启动nginx
1 |
|
如果出现报错:nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed
则运行: /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
再次启动即可!
1 |
|
查看nginx进程是否启动:
ps -ef | grep nginx
6.若想使用外部主机连接上虚拟机访问端口192.168.131.2,需要关闭虚拟机的防火墙:
centOS6及以前版本使用命令: systemctl stop iptables.service
centOS7关闭防火墙命令: systemctl stop firewalld.service
随后访问该ip即可看到nginx界面。
LINUX安装nginx详细步骤
https://www.weiyalong.top/2020/11/07/LINUX安装nginx详细步骤/