Install Nginx in the Linux tar package and nginx in the linuxtar package
1. First install the dependency package (there are a lot of dependency packages. We use yum to install them)
yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel
2.upload nginx-1.7.6.tar.gz to/usr/local/
tar -zxvf nginx-1.7.6.tar.gz
3. Rename the package name and change the nginx-1.7.6 to nginx
mv nginx-1.7.6 nginx
3. Compile
cd nginx
./configure
make
make install
4. Test
/usr/local/nginx/nginx -t
5. Problem:
nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (2: No such file or directory)2015/06/06 15:16:28 [emerg] 13663#0: open() "/usr/local/nginx/logs/access.log" failed (2: No such file or directory)
6. Solution
6.1 create a logs folder
mkdir logs
6.2 create a file
cd logs/
touch error.log
touch nginx.pid
7. Start
/usr/local/nginx/nginx
See
Welcome to nginx! It indicates that the nginx initial STARTUP configuration is successful!
My personal website: http://www.caicongyang.com
My CSDN blog: http://blog.csdn.net/caicongyang