centos7 安装nginx

阅读更多
1,添加源
rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm


2、安装Nginx
yum install -y nginx


3、启动Nginx并设置开机自动运行
systemctl start nginx.service
systemctl enable nginx.service


4,查看nginx 安装版本
nginx -v


5,进入到nginx安装目录,一般是在
/usr/sbin

执行如下命令:
nginx启动 nginx
nginx重启 nginx -s reload
nginx停止 nginx -s stop


/etc/nginx
配置文件 nginx.conf 在这里配置nginx相关信息
配置完成后  可重启nginx 用命令(nginx -s reload)


6,查看nginx是否启动
[root@localhost sbin]# ps -ef|grep nginx
root     28599     1  0 02:43 ?        00:00:00 nginx: master process nginx
nginx    28600 28599  0 02:43 ?        00:00:00 nginx: worker process
root     28602 28218  0 02:43 pts/0    00:00:00 grep --color=auto nginx


7,nginx默认端口80
firewall-cmd --zone=public --add-port=80/tcp --permanent

重启端口:firewall-cmd --reload

你可能感兴趣的:(centos7 安装nginx)