CentOS 7 安装 nginx
官网下载 nginx
nginx官网下载链接:http://nginx.org/en/download.html
下载稳定版即可
将压缩包上传到 CentOS 7 虚拟机中
这里由于上传工具很多,不予展示
安装步骤
- 检查是否存在 nginx(有的话需要卸载掉自带的)
shell
whereis nginx
rm -rf [nginx文件]
- 找到压缩包并解压
shell
tar -zxvf nginx-1.24.0.tar.gz
- 配置nginx
shell
# 在 /usr/local/nginx/nginx-1.24.0 下执行命令
cd /usr/local/nginx/nginx-1.24.0
./configure
# 安装 openssl 以及 ncurses 组件
yum install -y openssl*
yum -y install ncurses-devel
# 安装完后,需要重新执行当前文件下的./configure
./configure #先执行
make #执行完./configure之后,敲make回车
make install #确认是否安装成功(可执行可不执行,没有影响)
/usr/local/nginx/sbin
- 启动nginx
shell
whereis nginx #查找nginx文件
cd /usr/local/nginx #进入该文件
cd ./sbin #进入sbin文件
./nginx #启动nginx程序
-
在Windows上访问Linux下的nginx来确认是否安装成功:
nginx 常用命令
shell
./nginx -s stop #停止nginx
./nginx -s quit #安全退出
./nginx -s reload #修改了文件之后重新加载该程序文件
ps -aux | grep nginx #查看nginx进程
nginx 修改配置文件
shell
# 进入 nginx 的 conf 目录下
cd /usr/local/nginx/conf
# 修改 nginx.conf 文件
vim nginx.conf
# 修改完配置文件一定要重新加载该程序文件
./nginx -s reload