你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
tanqian
赞同来自:
#!/usr/bin/python #coding=utf-8 import os,sys filename = '/etc/init.d/filebeat' content = '#!/bin/bash\n\n# chkconfig: - 85 15\n#description:\n\nexport FILEBEAT_HOME=/opt/filebeat\nexport FILEBEAT_LOG=/opt/filebeat/start.log\n\ncase "$1" in\nstart)\n echo -n "starting filebeat"\n nohup ${FILEBEAT_HOME}/filebeat -c $FILEBEAT_HOME/filebeat.yml 1>/dev/null 2>$FILEBEAT_LOG &\n echo " OK "\n;;\n\nstop)\n echo -n "shutdown filebeat:"\n pid=`ps -ef|grep filebeat |grep -v grep |awk \'{print $2}\'`\n kill -9 $pid\n echo "OK"\n;;\n*)\necho "Usage: `basename $0` start|stop"\nexit 1;;\nesac\nexit 0\n' fobj = file(filename,"w+") fobj.write(content) fobj.close() os.system('chmod +x '+filename) os.system('chkconfig --add filebeat') os.system('chkconfig filebeat on')
zaqweb
要回复问题请先登录或注册
2 个回复
tanqian
赞同来自:
python脚本:
zaqweb
赞同来自: