gpt4 book ai didi

Laravel 5.1 : Run Custom Artisan Command in Background

转载 作者:行者123 更新时间:2023-12-04 16:13:43 25 4
gpt4 key购买 nike

我正在使用 Ratchet package 开发聊天应用程序.在教程的帮助下,我编写了一个自定义的 artisan 命令来启动 Websocket 服务器。我需要在后台运行这个 Artisan 命令,它应该一直运行。我该怎么做?

我尝试使用 Artisan::queue and Artisan::call从工匠门面。但是由于我的自定义命令无限期地运行(很长时间),它不起作用。

编辑:

我的托管服务提供商不允许我通过 ssh 运行 Artisan 命令。

这是自定义 Artisan 命令的代码:

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;

use Ratchet\Http\HttpServer;
use Ratchet\Server\IoServer;
use Ratchet\WebSocket\WsServer;
use App\Classes\Socket\ChatSocket;
use App\Classes\Socket\Base\BaseSocket;

class ChatServer extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'chat_server:serve';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';

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

/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$this->info("Start server");

$server = IoServer::factory(
new HttpServer(
new WsServer(
new ChatSocket()
)
),
8080
);

$server->run();
}
}

最佳答案

您只需使用以下命令在控制台中运行它:

php artisan chat_server:serve

也许您应该确保它始终有效。其中一种方法是使用 Supervisor确保此命令将(几乎)一直运行

关于Laravel 5.1 : Run Custom Artisan Command in Background,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34569162/

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