Install Nginx without network in CentOS
1) download nginx
- Wgethttp: // nginx.org/download/nginx-0.8.54.tar.gz
By default, it is downloaded to the current directory, that is, the pwd directory.
2) decompress
- Tarzxvfnginx-
.
.Tar.gz
Go to nginx directory cd nginx-0.8.54
3)
- ./Configure
Configure may occur in this step. The error of pcre cannot be found.
If you can connect to the Internet, we recommend that you use the yum command to install the dependency package.
- Yum-yinstallgccpcre-developensslopenssl-devel
If there is no network, you can find the following package under CentOS 5.5 DVD and install it in sequence.
Rpm-ivh pcre-devel-6.6-2.el5_1.7.i386.rpm
Rpm-ivh openssl-0.9.8e-12.el5_4.6.i386.rpm
Rpm-ivh e2fsprogs-devel-1.39-23.el5.i386.rpm
Rpm-ivh keyutils-libs-devel-1.2-1.el5.i386.rpm
Rpm-ivh libsepol-devel-1.15.2-3.el5.i386.rpm
Rpm-ivh libselinux-devel-1.33.4-5.5.el5.i386.rpm
Rpm-ivh krb5-devel-1.6.1-36.el5_4.1.i386.rpm
Rpm-ivh zlib-devel-1.2.3-3.i386.rpm
Rpm-ivh openssl-devel-0.9.8e-12.el5_4.6.i386.rpm
Run./configure after installation.
The following information is displayed, indicating that the compilation is successful.
Configuration summary
+ Using system PCRE library
+ OpenSSL library is not used
+ Md5: using system crypto library
+ Sha1 library is not used
+ Using system zlib library
4)
- Make
5)
Make install
Installed
- /Usr/local/nginx
To the nginx directory
6) Start
- /Usr/local/nginx/sbin/nginx
Check whether startup is successful
[Root @ maomao sbin] # ps aux | grep nginx
Root 10391 0.0 0.0 4008 456? Ss nginx: [B] [color = red] master [/color] [/B] process./nginx
Nobody 10392 0.0 0.0 4164? S nginx: worker process
The master node is the main process. When the master node is disabled, kill the process. Other Sub-processes are automatically disabled.
Open http: // localhost/in the browser to view the default welcome page of nginx.
Welcome to nginx!
Nginx uses port 80 by default. We can change it in the conf/nginx. conf file under the nginx installation directory.
- Vim/usr/local/nginx/conf/nginx. conf
Find the following clip to make changes and then restart
Server {
Listen 80; // Port
Server_name localhost; // bind the Domain Name
Location /{
Root html; // default directory
Index index.html index.htm; // default homepage name
}
}
Restart nginx after modification.
- Kill-HUP 'cat/usr/local/nginx/logs/nginx. pid'
The HUP signal is a smooth restart.
Stop nginx
- Kill 'cat/usr/local/nginx/logs/nginx. Pi'
You cannot access the http: // localhost/page.