linux安装nginx

安装前准备

①安装前查看是否安装nginx,可以是查看版本

nginx -v

②升级前可以先备份,主要备份 nginx配置文件 nginx.conf

cp -rf /usr/local/nginx_bak/conf/nginx.conf /usr/local/nginx/conf/nginx.conf

安装命令:

1、前置的模块下载

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

2、官网下载 http://nginx.org/download.html 找到自己需要的版本下载(以下为最新版本)

#执行如下命令:
cd /home/tmp # 切换到安装包下载路劲路径
wget http://nginx.org/download/nginx-1.18.0.tar.gz # 去官网下载
wget http://nginx.org/download/nginx-版本号.tar.gz

3、解压

tar -zxvf nginx-1.18.0.tar.gz # 默认解压到nginx-1.18.0

注:nginx-1.18.0.tar.gz为下载的压缩包名

# 解压到指定文件夹
tar -zxvf nginx-1.18.0.tar.gz /home/temp/nginx_new  
# 解压到指定路径/home/temp/nginx_new

4、进入nginx目录

cd nginx-1.18.0

5、配置

./configure --prefix=/usr/local/nginx  # 编译的时候用来指定程序存放路径

↑指定路径为/usr/local/nginx

# 使用下面的配置
./configure --prefix=/usr/local/nginx --user=www-data --group=www-data --pid-path=/var/run/ginx.pid     --with-http_stub_status_module         --with-http_gzip_static_module       --with-http_realip_module          

注:此处\表示是一行命令

。。。。

OK,现在可以执行make 了。

6、编译&安装

执行make、make install命令

make

make install

7、测试是否安装成功

# cd到刚才配置的安装目录/usr/loca/nginx/
./sbin/nginx -t

作者安装时遇到的错误,若没有出现可忽略
错误信息:

nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (2: No such file or directory)

2016/09/13 19:08:56 [emerg] 6996#0: open() "/usr/local/nginx/logs/access.log" failed (2: No such file or directory)

原因分析:nginx/目录下没有logs文件夹

解决方法:

# 创建logs文件夹
mkdir logs

# 修改logs文件夹权限,所有者读、写、可执行
chmod 700 logs

正常情况的信息输出:

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

8、替换原本的nginx.conf

# 安装后就有一个默认的nginx.conf
# 确认配置文件 ,cp -rf 原来的nginx.conf 安装路径下的nginx.conf
cp -rf /usr/local/nginx_bak/conf/nginx.conf /usr/local/nginx/conf/nginx.conf

9、启动nginx

# 在安装的sbin下有启动文件
cd /usr/local/nginx/sbin

# 启动nginx
./nginx

在浏览器中输入服务器的ip地址,如:192.168.1.12

====================== 分割线 ====================

配置完毕!

2、配置nginx开机自启动

vim /etc/rc.d/rc.local

查看nginx版本

nginx -v

查看编译参数

nginx -V

查看安装目录

 rpm -ql nginx

linux安装nginx

上一篇:mac中安装支持m1的软件,提示已损坏问题解决


下一篇:Linux 的文件权限与目录配置