gpt4 book ai didi

php - 让php脚本作为linux服务运行

转载 作者:太空宇宙 更新时间:2023-11-04 04:06:50 24 4
gpt4 key购买 nike

我编写了一个 php 脚本,我想将其作为 service/daemon 运行在Linux中。

这样我就可以使用服务 myservice start/stop/restart

我假设它需要位于 /etc/init.d/

最佳答案

您可以引用/etc/init.d下的任何预构建的启动脚本,例如httpd。例如,您可以引用以下内容:

#!/bin/bash
#
# chkconfig: 35 90 12
# description: Foo server
#
# Get function from functions library
. /etc/init.d/functions
# Start the service FOO
start() {
initlog -c "echo -n Starting FOO server: "
/path/to/FOO &
### Create the lock file ###
touch /var/lock/subsys/FOO
success $"FOO server startup"
echo
}
# Restart the service FOO
stop() {
initlog -c "echo -n Stopping FOO server: "
killproc FOO
### Now, delete the lock file ###
rm -f /var/lock/subsys/FOO
echo
}
### main logic ###
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status FOO
;;
restart|reload|condrestart)
stop
start
;;
*)
echo $"Usage: $0 {start|stop|restart|reload|status}"
exit 1
esac
exit 0

您可以详细查看here

关于php - 让php脚本作为linux服务运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20790887/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com