Laravel:在后台运行自定义工匠命令

时间:2017-08-01 11:35:04

标签: php laravel websocket artisan ratchet

我正在使用Ratchet包进行聊天应用程序。 如何在共享主机上运行命令“chat:serve”?我需要运行没有控制台线的命令。 我试过这个:

Artisan::call('chat:serve');

或者这个:

$serve = new WSChatServer();
$serve->fire();

但它不起作用。网页永远不会停止加载。 我需要在后台运行这个Artisan命令,它应该一直运行。我该怎么做?没有VPS托管可以做到这一点吗?

<?php namespace App\Console\Commands;

use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;

use Ratchet\Server\IoServer;
use Ratchet\Http\HttpServer;
use Ratchet\WebSocket\WsServer;
use App\Chat;

class WSChatServer extends Command {

    /**
     * The console command name.
     *
     * @var string
     */
    protected $name = 'chat:serve';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Start chat server.';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
            parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function fire()
    {
            $port = intval($this->option('port'));
            $this->info("Starting chat web socket server on port " . $port);

            $server = IoServer::factory(
                new HttpServer(
                    new WsServer(
                        new Chat()
                    )
                ),
                $port
        );

        $server->run();
    }

    /**
     * Get the console command arguments.
     *
     * @return array
     */
    protected function getArguments()
    {
        return [
        ];
    }

    /**
     * Get the console command options.
     *
     * @return array
     */
    protected function getOptions()
    {
        return [
            ['port', 'p', InputOption::VALUE_OPTIONAL, 'Port where to launch the server.', 9090],
        ];
    }

}

1 个答案:

答案 0 :(得分:1)

您的问题暗示了您将遇到最大困难的地方:

&#34;没有VPS托管可以做到这一点吗?&#34;

您的共享主机可能会阻止某些解决此问题的选项。从根本上说,从您的网络服务器到php应用程序的每次调用都将启动一个php进程。完成后,该过程返回。除非您希望此过程未完成,但您希望Web请求返回。所以你真的有三个选择:

1)让php生成一个新进程来运行你的artisan命令,然后让原来的一个返回。为此,您需要访问php中的一个进程扩展。大多数共享主机默认禁用此功能。您还需要确保以父进程关闭时不停止的方式创建进程。

2)您可以通过ssh登录并运行命令。与之前相同,您需要确保生成进程,以便在退出SSH连接时不会停止。 Nohup是一个有用的过程。

3)您可以编写一个cron脚本,如果没有运行,则启动后台进程。与ssh命令类似,它使用其他东西来触发该过程。

我会注意到许多共享的虚拟主机不允许长时间运行的用户进程,因此可能不是该项目的正确解决方案。