scylladb / scylladb

NoSQL data store using the seastar framework, compatible with Apache Cassandra
http://scylladb.com
GNU Affero General Public License v3.0
13.52k stars 1.29k forks source link

cannot see the 2nd scylladb node instance using docker tutorial #14784

Open hiqsociety opened 1 year ago

hiqsociety commented 1 year ago

latest scylladb tutorial as attached, cant see the 2nd node.

anyone tried before? ubuntu 22.04 Screenshot from 2023-07-21 09-19-39

hiqsociety commented 1 year ago

wait a long time, still same

hiqsociety commented 1 year ago

tried docker compose style is the same

version: '3'

services:
  some-scylla:
    image: scylladb/scylla
    container_name: some-scylla

  some-scylla2:
    image: scylladb/scylla
    container_name: some-scylla2
    command: --seeds=some-scylla

  some-scylla3:
    image: scylladb/scylla
    container_name: some-scylla3
    command: --seeds=some-scylla
~