**技术环境:** 1.CentOS8(192.168.2.1) 这台服务器的环境是刚刚把LNMP进行源码编译安装后的环境. 2.Win64(192.168.2.1) 远程操作Cmder和文件传输Winscp **准备依赖包:** ~~~ yum -y install zlib-devel pcre-devel openssl-devel ~~~ 准备nginx用户: ~~~ useradd -M -s /sbin/nologin nginx ~~~ **源码编译与安装:** ~~~ ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_random_index_module --with-http_sub_module make make install ~~~ **设置配置文件:** ~~~ user nginx; ~~~ **服务管理:** 1.检测配置语法 ~~~ /usr/local/nginx/sbin/nginx -t ~~~ 2.启动服务 ~~~ /usr/local/nginx/sbin/nginx ~~~ 3.重载服务 ~~~ /usr/local/nginx/sbin/nginx -s reload pkill -HUP nginx ~~~ 4.关闭服务 ~~~ /usr/local/nginx/sbin/nginx -s stop pkill nginx ~~~ 5.开机启动 ~~~ vi /etc/rc.local /usr/local/nginx/sbin/nginx ~~~ **进程管理:** ~~~ pstree |grep nginx ps -ef |grep nginx ps aux |grep nginx ~~~ **端口管理:** ~~~ netstat -tunpl |grep nginx ~~~ **客户端测试:** ~~~ http://192.168.2.1 ~~~ ### **系统的学习PHP** 关注:PHP自学中心,回复相应的关键词,领取以下视频教程 \*\* Vue2.5核心技术源码分析\*\* 公众号里回复:19082201