nginx安装

1.下载地址

官方网址:http://nginx.org/en/download.html

2. 安装

解压后进入下载目录,执行下面的命令
./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/nginx/sbin/nginx --conf-path=/usr/local/nginx/conf/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx/nginx.pid --lock-path=/var/lock/nginx.lock --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module --with-http_gzip_static_module --http-client-body-temp-path=/var/tmp/nginx/client/ --http-proxy-temp-path=/var/tmp/nginx/proxy/ --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-pcre

nginx安装需要依赖一些其他的工具,若报错请尝试
yum -y install pcre-devel
yum -y install openssl openssl-devel
安装成功后重新运行上门的命令

3. 编译

make

4. 安装

make install

5. 启动

cd /usr/local/nginx/sbin
./nginx
若启动报错根据错误提示执行如下命令
缺少用户
useradd -s /sbin/nologin -M nginx

目录不存在
mkdir sudo mkdir -p /var/tmp/nginx/client/

你可能感兴趣的:(nginx安装)