Linux安装nginx(快速版)

网上已经有很多详细的nginx安装教程,但是大都太过于复杂和冗长,对于急性子的同学看着难受,于是决定整一手快速无脑安装版的,来来来,搞起搞起!!!

yum install nginx

安装完后,rpm -qa | grep nginx 查看

启动nginx:systemctl start nginx

加入开机启动:systemctl enable nginx

查看nginx的状态:systemctl status nginx

备注:用yum安装更快一些。。。

步骤1:

下载nginx

wget  http://nginx.org/en/download.html/nginx-1.14.2.tar.gz

备注: http://nginx.org/en/download.html(可进入网站选择合适的nginx版本)

步骤2:

安装所需依赖:openssl、zlib、pcre

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

步骤3:

安装nginx

tar -zxvf nginx-1.14.2.tar.gz  # 解压
cd nginx-1.14.2.tar.gz  # 进入文件夹
./configure && make && make install  # 编译安装

步骤4:

nginx启动与关闭命令

/usr/local/nginx/sbin/nginx  # 启动
/usr/local/nginx/sbin/nginx -s stop  # 关闭

步骤5:

如果想将nginx配置文件nginx.conf随项目文件放一起,则需要

rm /usr/local/nginx/conf/nginx.conf  # 删除nginx.conf
ln -s [项目路径]/nginx.conf /usr/local/nginx/conf/  # 建立软链接,将nginx配置文件放在项目文件中

你可能感兴趣的:(服务部署,linux,nginx,负载均衡)