nginx服务器的安装和配置
1.安装
1)在windows环境下的安装
下载windows版本的nginx后,解压,然后进入到目录中,运行:start nginx
其他命令:nginx -s [ stop|quit|reopen|reload ]
2)在linux下的安装
tar zxvf pcre-8.21.tar.gz(安装nginx必需)
./configure
make
make install
cp /usr/local/lib/libpcre.so.1 /usr/lib
tar zxvf nginx..../tar.gz
cd nginx...
./configure
make
make install
2.nginx的启动
linux下命令:/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
(-c是指定配置文件的意思)
3.nginx的停止
ps -ef |grep nginx
找到master process的id
kill -QUIT nginx的id
快速停止
kill -TERM nginx的id
强制关闭nginx的所有进程
pkill -9 nginx
4.nginx的重启
1)检查配置文件是否正确
/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
2)平滑重启
kill -HUP Nginx主进程号
如果配置文件不正确,nginx将仍旧使用修改前的配置文件
nginx基本配置
通过配置文件示例可知,nginx.conf配置文件结构主要构成:
....
events
{
...
}
http
{
....
server
{
...
}
server
{
...
}
...
}
虚拟主机配置
#server {
# listen 8000;
# server_name localhost;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# } www.jb51.net
#}
#server {
# listen 8080;
# server_name localhost;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
【nginx服务器的安装和配置的方法介绍】相关文章:
★ Win7系统开机黑屏提示system halted的故障原因及解决方法
★ Win7使用金山毒霸提示“安装引擎失败,不支持此接口”的解决方法