查看 端口占用情况:netstat -lnp|grep 80
杀掉进程:kill -9 nid
能够后台运行,那么我们就可以使用nohup这个命令,比如我们有个test.php需要在后台运行,并且希望在后台能够定期运行,那么就使用nohup:
nohup /root/test.php &
nginx的vhost支持servername的通佩符的定义:*
比如如下就是针对所有的三级域名的配置:
server
{
listen
80;
server_name *.mkqs.nibaguai.com;
#
index index.html index.htm index.php default.html default.htm default.php;
#
root
/opt/ci123/www/html/pingtai/www.nibaguai.com;
location / {
try_files $uri @apache;
}
location @apache {
internal;
proxy_pass http://localhost:88;
include proxy.conf;
}
location ~ .*\.(php|php5)?$
{
proxy_pass http://localhost:88;
include proxy.conf;
}
}
杀掉进程:kill -9 nid
能够后台运行,那么我们就可以使用nohup这个命令,比如我们有个test.php需要在后台运行,并且希望在后台能够定期运行,那么就使用nohup:
nohup /root/test.php &
nginx的vhost支持servername的通佩符的定义:*
比如如下就是针对所有的三级域名的配置:
server
}
我的更多文章:
- (2013-07-02 17:31:22)
- (2013-07-02 16:48:46)
- (2013-07-01 16:20:02)
- (2013-06-26 14:21:32)
- (2013-06-24 15:53:58)