启动/停止自定义 PHP 聊天服务器 Linux 服务(CentOS)

启动/停止自定义 PHP 聊天服务器 Linux 服务(CentOS)

我整晚都在努力让这项服务正常工作。我从模板创建了这个脚本,而且我对 Bash 编码还很陌生。我用 php 编写了一个功能齐全的聊天服务器,它可以无限运行,但现在想让它成为一项专用服务。我想这样做,以便它在服务器启动时启动,并在服务器出现任何停机时尽可能重新启动。问题是我需要这个东西在分离的屏幕上运行,这样我就可以监控数据包数据或在需要时通过 SSH 发送服务器命令。

我遇到的主要问题是它在启动时需要有自己的 PID,这样我才能在需要时停止/重新启动它。我是那种会一直努力编码直到弄明白的人,但这对我来说太新了,似乎学习曲线非常陡峭和令人沮丧。下面是我的代码,如果有人能帮我解决这个问题,我已经太累了,我甚至无法再集中注意力了 :(

#!/bin/sh
#
# chatserver 
#
# chkconfig:  345 20 90
# description: chatServer Linux Service Daemon \
#              for general server handling

### BEGIN INIT INFO
# Provides: chatserver
# Required-Start: $local_fs $network $named $syslog
# Required-Stop: $local_fs $syslog
# Default-Start: 3 4 5
# Default-Stop: 0 1 2 6
# Short-Description: This service maintains the chatServer
# Description: chatServer Linux Service Daemon 
#   for general server handling
### END INIT INFO

# Source function library.
. /etc/rc.d/init.d/functions

exec="screen php -q /var/www/html/chatServer.php"
prog="chatserver"
config="/etc/sysconfig/$prog"
pidfile="/var/run/chatserver.pid"

[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog

lockfile=/var/lock/subsys/$prog

start() {
    #$exec || exit 5
    echo -n $"Starting $prog: "
    daemon $exec --name=$exec --pidfile=$pidfile
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}

stop() {
    echo -n $"Stopping $prog: "
    killproc -p $pidfile
    rm -f $pidfile
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}

restart() {
    stop
    start
}

reload() {
    restart
}

force_reload() {
    restart
}

rh_status() {
    # run checks to determine if the service is running or use generic status
    status $prog
}

rh_status_q() {
    rh_status >/dev/null 2>&1
}


case "$1" in
    start)
        rh_status_q && exit 0
        $1
        ;;
    stop)
        rh_status_q || exit 0
        $1
        ;;
    restart)
        $1
        ;;
    reload)
        rh_status_q || exit 7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit 0
        restart
        ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
        exit 2
esac
exit $?

答案1

我找到了一个有用的解决方案。我将我的代码与我在以下位置找到的一些代码合并http://www.linuxquestions.org/questions/programming-9/bash-scripting-creating-a-custom-service-centos-879313/

相关内容