11

所以,我正在使用带有 PHP 的 Ratchet,并且目前已经将一个成功的 websocket 示例上传到我的服务器。

它在我进入 SSH 后工作,然后手动运行“php bin/chat-server.php”。

我想知道的是,在商业情况下,我如何保持聊天服务器运行?

谢谢。

4

5 回答 5

7

做一个守护进程。

如果您使用的是 symfony2,则可以使用Process Component

// in your server start command
$process = new Process('/usr/bin/php bin/chat-server.php');
$process->start();
sleep(1);
if ($process->isRunning()) {
    echo "Server started.\n";
} else {
    echo $process->getErrorOutput();
}

// in your server stop command
$process = new Process('ps ax | grep bin/chat-server.php');
$process->run();
$output = $process->getOutput();
$lines = preg_split('/\n/', $output);
// kill everything (there can be multiple processes if they are spawned)
$stopped = False;
foreach ($lines as $line) {
    $ar = preg_split('/\s+/', trim($line));
    if (in_array('/usr/bin/php', $ar)
        and in_array('bin/chat-server.php', $ar)) {
        $pid = (int) $ar[0];
        posix_kill($pid, SIGKILL);
        $stopped = True;
    }
}
if ($stopped) {
    echo "Server stopped.\n";
} else {
    echo "Server not found. Are you sure it's running?\n";
}

如果您使用的是原生 PHP,请不要害怕,popen是您的朋友!

// in your server start command
_ = popen('/usr/bin/php bin/chat-server.php', 'r');
echo "Server started.\n";

// in your server stop command
$output = array();
exec('ps ax | grep bin/chat-server.php', &$output);
$lines = preg_split('/\n/', $output);
// kill everything (there can be multiple processes if they are spawned)
$stopped = False;
foreach ($lines as $line) {
    $ar = preg_split('/\s+/', trim($line));
    if (in_array('/usr/bin/php', $ar)
        and in_array('bin/chat-server.php', $ar)) {
        $pid = (int) $ar[0];
        posix_kill($pid, SIGKILL);
        $stopped = True;
    }
}
if ($stopped) {
    echo "Server stopped.\n";
} else {
    echo "Server not found. Are you sure it's running?\n";
}

当然还有其他有用的 PHP 库可用于处理守护进程。谷歌搜索“php daemon”会给你很多指示。

于 2013-10-21T20:11:06.907 回答
1

棘轮文档有一个部署页面。你检查了吗?

旧答案:在 prod 服务器上可能是个坏主意(这是个人假设),但您可以使用该screen命令打开终端,启动您的守护程序,然后按 Ctrl-A、Ctrl-D,您的终端是还活着,在后台打开。要重新连接到此终端,请连接回您的服务器并键入screen -r

于 2013-10-22T01:18:24.603 回答
1

本教程展示了一种将 WebSocket 转换为 *nix 服务的非常酷的方法,即使您关闭了 SSH 连接,它也能持续存在。

基本上你制作一个/etc/init/socket.conf包含以下内容的文件

# Info
description "Runs the Web Socket"  
author      "Your Name Here"

# Events
start on startup  
stop on shutdown

# Automatically respawn
respawn  
respawn limit 20 5

# Run the script!
# Note, in this example, if your PHP script (the socket) returns
# the string "ERROR", the daemon will stop itself.
script  
    [ $(exec /usr/bin/php -f /path/to/socket.php) = 'ERROR' ] && ( stop; exit 1; )
end script  

博客文章:http:
//blog.samuelattard.com/the-tutorial-for-php-websockets-that-i-wish-had-existed/

于 2015-06-15T06:40:49.877 回答
1

从棘轮部署页面:

如果您正在运行 Ubuntu,请遵循以下步骤:

  1. 像这样安装主管: 安装主管

  2. 像这样将棘轮网络服务器配置为服务程序: Supervisor Process Control | 监督安装和使用

在 /etc/supervisor/conf.d/.conf 中创建一个 conf 文件,并从 Ratchet 部署页面填写 conf 示例代码:

[program:ratchet]
command                 = bash -c "ulimit -n 10000; exec /usr/bin/php /absolute/path/to/ratchet-server-file.php)"
process_name            = Ratchet
numprocs                = 1
autostart               = true
autorestart             = true
user                    = root
stdout_logfile          = ./logs/info.log
stdout_logfile_maxbytes = 1MB
stderr_logfile          = ./logs/error.log
stderr_logfile_maxbytes = 1MB
  1. 运行以下命令:

    • $ supervisorctl reread
    • $ supervisorctl update
    • 最后检查您的服务是否正在运行:$ supervisorctl

这些都是 Ratched Deployment 教程中应该添加的所有步骤.. 但这种方法可能不是最好的..

于 2020-05-02T13:15:37.457 回答
0

/etc/rc.d/rc为 *nix 服务器启动它。这应该会在服务器启动时启动您的 PHP 脚本。

我实际上并不知道这个行业是如何做到的,因为我现在只是一个编程/Linux 爱好者和学生,但这是我在个人服务器上的路线。

于 2013-10-21T06:41:48.727 回答