知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

php重启nginx脚本

发布时间:2014-09-05 16:57:13作者:知识屋

重启nginx是执行 /usr/bin/nginxd restart 即可
以下是脚本内容:
#!/usr/local/php/bin/php
<?
if($argv[1]=="start")
{
echo system("ulimit -SHn 51200");
echo system("/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf");
}
elseif($argv[1]=="stop")
{
echo system("killall -9 nginx");
}
elseif($argv[1]=="test")
{
echo system("/usr/local/nginx/sbin/nginx -t");
}
elseif($argv[1]=="restart")
{
echo system("killall -9 nginx");
sleep(1);
echo system("ulimit -SHn 51200");
echo system("/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf");
}
else
        echo "Usage: nginx {start|stop|restart|test|}/r/n";
?>

作者“稀饭吃了不顶饿”

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜