admin 管理员组

文章数量: 887021


2024年2月18日发(作者:formation clues)

1、安装过程

a.

# yum install -y pcrepcre-devel

# yum install -y opensslopenssl-devel

b.

# tar xzf

# cd nginx-1.7.3

c.

# ./configure

(默认安装路径为/usr/local/nginx)

d.

# make

# make install

f.

启动:nginx

# /usr/local/nginx/sbin/nginx

e.

添加到系统服务

将nginx文件直接复制到以下路径

/etc/init.d/nginx

h.

# chmoda+x /etc/init.d/nginx设置权限

设置开机启动配置文件

# vim /etc/

添加一行

/etc/init.d/nginx start

# /etc/init.d/nginx restart 重启测试

g.添加用户

# useraddnginx

I.新建文件夹

(对照文件中相关参数路径)

[root@localhost/]# cd /opt/

[root@localhost/]#mkdir local

[root@localhostopt]# cd local

[root@localhostlocal]#mkdirtmp

[root@localhostlocal]#mkdir cache

[root@localhostlocal]#mkdirvar

[root@localhostlocal]# cd var/

[root@localhostvar]#mkdir log

[root@localhostvar]# cd logs/

[root@localhostlogs]#mkdirnginx

[root@localhostvar]# cd ..

[root@localhostlocal]# cd tmp/

[root@localhosttmp]#mkdirnginx

[root@localhostnginx]# cd nginx

[root@localhostnginx]#mkdirproxy_temp

注:路径/opt/local/cache主要用来存放直播缓存,大约需要30-100G的存储大小(实时改变),因此建议把路径设置到/opt下

2、配置

a、替换正向代理配置文件

路径/usr/local/nginx/conf

b、重启nginx

# /usr/local/nginx/sbin/nginx -s reload

另外相关命令

1、查看状态

使用ps -ef|grepnginx查看nginx的进程

2、 停止nginx所有进程

[root@linuxidcsbin]#pkill -9 nginx


本文标签: 路径 设置 配置文件 添加 文件