1、supervisor安裝文件,安裝命令為:sh supervisor_install.sh
創(chuàng)新互聯(lián)建站自2013年起,先為中原等服務(wù)建站,中原等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為中原企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問(wèn)題。
#!/bin/bash
yum -y install python-setuptools
easy_install 'supervisor==3.3.4'
echo "alias 'supervisorctl'='supervisorctl -c /opt/superctl/etc/supervisor.conf'" >> ~/.bashrc
mkdir -p /opt/superctl/bin/
mkdir -p /opt/superctl/log/
mkdir -p /opt/superctl/etc/
chmod -R 755 /opt/superctl/bin/
chmod 755 /opt/superctl/supervisor.sh
cd /opt/superctl/etc/
cat > supervisor.conf << EOF
[unix_http_server]
file=/opt/superctl/log/supervisord.sock
[inet_http_server]
port=127.0.0.1:9001
[supervisord]
logfile=/opt/superctl/log/supervisord.log
logfile_maxbytes=20MB
logfile_backups=10
loglevel=info
pidfile=/opt/superctl/log/supervisord.pid
nodaemon=false
minfds=60000
minprocs=200
#directory=/opt/superctl/
childlogdir=/opt/superctl/log/
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///opt/superctl/log/supervisord.sock ; use a unix:// URL for a unix socket
[include]
files = /opt/superctl/etc/*.supervisor
EOF
cat > test.supervisor.temple << EOF
[program:test]
command = /bin/bash /opt/superctl/bin/test_start.sh
autostart = true
autorestart = true
stdout_logfile = /opt/superctl/log/test-stdout.log
stderr_logfile = /opt/superctl/log/test-stderr.log
stdout_logfile_maxbytes = 500MB
stdout_logfile_backups = 50
stdout_capture_maxbytes = 1MB
stdout_events_enabled = false
loglevel = info
priority = 1
stopasgroup = true
EOF
2、在superctl目錄下添加supervisor.sh文件
#
# chkconfig: 2345 12 80
# 配置文件:/opt/superctl/etc/supervisor.conf
#
source ~/.bashrc
PATH=/sbin:/usr/sbin:$PATH
usage ()
{
echo $"Usage: $0 {start|stop|status|restart}" 1>&2
RETVAL=2
}
start ()
{
if [ -e /opt/superctl/etc/supervisor.conf ] ;then
if [ `ps -ef|grep "/opt/superctl/etc/supervisor.conf"|grep -v grep|wc -l` -ne 0 ];then
sleep 1
echo "/opt/superctl/etc/supervisor.conf 進(jìn)程正在運(yùn)行"
ps -ef|grep " /opt/superctl/etc/supervisor.conf"|grep -v grep
else
sleep 1
/bin/supervisord -c /opt/superctl/etc/supervisor.conf
fi
fi
}
stop ()
{
if [ `ps -ef|grep " /opt/superctl/etc/supervisor.conf"|grep -v grep|wc -l` -eq 1 ];then
supervisorctl stop all
sleep 4
/bin/supervisorctl shutdown
fi
}
status ()
{
/bin/supervisorctl status
}
restart ()
{
stop
sleep 3
start
}
case "$1" in
stop) stop ;;
status) status ;;
restart) restart ;;
start) start ;;
*) usage ;;
esac
exit $RETVA
3、啟動(dòng)命令:
sh supervisor.sh start|stop|restart
當(dāng)前標(biāo)題:安裝supervisor
路徑分享:http://muchs.cn/article28/jsohcp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開(kāi)發(fā)、商城網(wǎng)站、品牌網(wǎng)站制作、網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、網(wǎng)站策劃
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)