-
I tried the rr command with Laravel Octane rr resetrr reset -o rpc.listen=tcp://localhost:6001 expected resultResetting plugin: [http] ∙∙● rr workersrr workers -o rpc.listen=tcp://localhost:6001 expected resultworkers table instead I got an errorshow_workers: informer_plugin_workers: no such service: server; informer_plugin_workers: no such service: server The version of RR used: rr version 2.2.1 (build time: 2021-05-13T18:00:32+0000, go1.16.4) |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Hello @litan1106. Could you please show your |
Beta Was this translation helpful? Give feedback.
-
@48d90782 @nunomaduro rr workers -o rpc.listen=tcp://localhost:18001 -o server.command="php ./vendor/bin/roadrunner-worker" I still got the error. here was my .rr.yaml rpc:
listen: tcp://127.0.0.1:18001
server:
command: "php ./vendor/bin/roadrunner-worker"
env:
- XDEBUG_SESSION: 1
http:
address: 0.0.0.0:18000
pool:
num_workers: 1
debug: "true"
max_jobs: 250
supervisor:
exec_ttl: 90s
static:
dir: "public"
middleware: ["static"]
logs:
mode: "development"
level: "debug"
output: "stdout"
encoding: "json"
status:
address: 127.0.0.1:2114 |
Beta Was this translation helpful? Give feedback.
-
@48d90782 @nunomaduro you can reproduce via docker run:
docker run --rm -it -p 8000:8000/tcp litan1106/example-app-roadrunner-demo:latest sh -c "php artisan octane:start --host=0.0.0.0 --port=8000 --rpc-port=6001"
docker exec -it $YOUR_RUNNING_CONTAINER_ID$ bash
rr reset
rr workers |
Beta Was this translation helpful? Give feedback.
-
To mark as an answer: this is RR bug #686 |
Beta Was this translation helpful? Give feedback.
To mark as an answer: this is RR bug #686