CentOS7 yum 安装 Nginx

增加对应的NGINX源

shell
1
rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

查看NGINX信息

shell
1
yum info nginx #(查看nginx 版本方便后面下载对应版本)

yum安装NGINX

shell
1
yum -y install nginx

NGINX相关命令

查看安装路径

shell
1
rpm -ql nginx

查看编译参数

shell
1
nginx -V

NGINX启动、停止、重启、开机自启

  • 启动

    启动 nginx 服务
    1
    systemctl start nginx
  • 停止

    停止 nginx 服务
    1
    systemctl stop nginx
  • 重启

    重启 nginx 服务
    1
    systemctl restart nginx
  • 自启

    开机自启 nginx 服务
    1
    systemctl enable nginx

检查启动是否成功

shell
1
systemctl status nginx

使用curl访问测试

shell
1
curl -i localhost
评论

:D 一言句子获取中...

加载中,最新评论有1分钟缓存...