Originally from the User Slack
@Nathan_Tamez: Hey I’m trying to run Scylla locally via docker with this image scylladb/scylla
and it looks as though Scylla is just failing to start as it keeps trying to restart and i keep getting this log
2024-03-20 08:44:29,462 INFO success: scylla entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2024-03-20 08:44:29,463 INFO exited: scylla (exit status 2; not expected)
2024-03-20 08:44:30,471 INFO spawned: 'scylla' with pid 159
Scylla version 5.4.4-0.20240228.58a1be93b212 with build-id ade6d24626fd56ce48e49f550fd15bdc04a31b59 starting ...
command used: "/usr/bin/scylla --log-to-syslog 0 --log-to-stdout 1 --default-log-level info --network-stack posix --developer-mode=1 --overprovisioned --listen-address fd07:b51a:cc66:1:0:242:c0a8:d702 192.168.215.2 --rpc-address fd07:b51a:cc66:1:0:242:c0a8:d702 192.168.215.2 --seed-provider-parameters seeds=fd07:b51a:cc66:1:0:242:c0a8:d702 192.168.215.2 --alternator-address fd07:b51a:cc66:1:0:242:c0a8:d702 192.168.215.2 --blocked-reactor-notify-ms 999999999"
parsed command line options: [log-to-syslog, (positional) 0, log-to-stdout, (positional) 1, default-log-level, (positional) info, network-stack, (positional) posix, developer-mode: 1, overprovisioned, listen-address: fd07:b51a:cc66:1:0:242:c0a8:d702, (positional) 192.168.215.2, rpc-address: fd07:b51a:cc66:1:0:242:c0a8:d702, (positional) 192.168.215.2, seed-provider-parameters: seeds=fd07:b51a:cc66:1:0:242:c0a8:d702, (positional) 192.168.215.2, alternator-address: fd07:b51a:cc66:1:0:242:c0a8:d702, (positional) 192.168.215.2, blocked-reactor-notify-ms, (positional) 999999999]
error: too many positional options have been specified on the command line
Try --help.
i’m on Mac OS with a M1 Pro chip
@Felipe_Cardeneti_Mendes: Hi, can you share the output of hostname -i
in your container? I think that must be it:
> if self._listenAddress is None:
> self._listenAddress = subprocess.check_output([‘hostname’, ‘-i’]).decode(‘ascii’).strip()
I use a Mac myself but I don’t get an IPV6 address like you do, did you manually enabled it?
@Nathan_Tamez: it was IPv6 haha, i needed to enable it for a test with some IPv6 for some other project.
@Felipe_Cardeneti_Mendes: ok, as expected. https://github.com/scylladb/scylladb/issues/16502
GitHub: docker node crashes with error: too many positional options have been specified on the command line
· Issue #16502 · scylladb/scylladb
@Nathan_Tamez: thanks for the help