写点什么

Linux 安装 nginx

作者:六哥是全栈
  • 2024-09-03
    广西
  • 本文字数:417 字

    阅读完需:约 1 分钟

Linux安装nginx

1.安装依赖


yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel


2.进入 src 目录


cd /usr/src/


3.下载安装包


wget http://nginx.org/download/nginx-1.19.2.tar.gz


4.解压安装包


tar -zxvf nginx-1.19.2.tar.gz


5.进入解压的目录


cd nginx-1.19.2


6.配置(根据需要的安装的模块配置)


./configure --prefix=/usr/local/nginx-1.19.2 --with-http_ssl_module --with-http_stub_status_module --with-stream


7.编译


make


8.安装


make install


9.常用命令


启动服务:/usr/local/nginx/sbin/nginx


停止服务:/usr/local/nginx/sbin/nginx -s stop


重新加载配置:/usr/local/nginx/sbin/nginx -s reload


查看模块信息:/usr/local/nginx/sbin/nginx -V


查看线程信息:ps -ef | grep nginx


配置文件目录:/usr/local/nginx/conf/


开机启动


在 /etc/rc.local 文件最后追加内容 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf &


用户头像

还未添加个人签名 2024-08-28 加入

还未添加个人简介

评论

发布
暂无评论
Linux安装nginx_Linux_六哥是全栈_InfoQ写作社区