I used Quick Start, Use a local cluster, then Docker here:
I got an interface, just like the screen shots with 5 icons down the left side, which is largely read-only (at least upon setup) and does not seam to have the full interface in it for setting up a cluster.
I think I"m looking for YugabyteDB Anywhere?
I’m really looking to run the full version under Docker.
The goal is simply to be able to follow the guides to try out replication setups so I can get a fell for everything and figure out what I need. Many of the cluster guides have screen-shots that I don’t have in the Docker quick start version. I’m also wanting to start the full interface under Docker.
If I need to do it under the command-line, that is fine. The UI is not a hard requirement. It is just that the guides don’t seam to use a command-line, it is that interface.
Finally, a recent install from docker hub tag yugabytedb/yugabyte:latest per the quick start above looks like this:
Starting yugabyted...
⚠ WARNING System checks. Following pre-reqs are not met:
- Transparent hugepages disabled. Please enable transparent_hugepages.
- ntp/chrony package is missing for clock synchronization. For centos 7, we recommend installing either ntp or chrony package and for centos 8, we recommend installing chrony package.
Review the following docs and rerun the start command.
Quick start for Linux: https://docs.yugabyte.com/latest/quick-start/install/linux/
✅ YugabyteDB Started
⚠ WARNING: Cluster started in an insecure mode without authentication and encryption enabled. For non-production use only, not to be used without firewalls blocking the internet traffic.
✅ UI ready
$ docker exec -it yugabyte /home/yugabyte/bin/ysqlsh --echo-queries
ysqlsh: could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5433?
could not connect to server: Cannot assign requested address
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5433?
$ docker run -d --name yugabyte -p7000:7000 -p9000:9000 -p5433:5433 -p9042:9042\
yugabytedb/yugabyte:2.17.1.0-b439 bin/yugabyted start\
--daemon=false
Unable to find image 'yugabytedb/yugabyte:2.17.1.0-b439' locally
2.17.1.0-b439: Pulling from yugabytedb/yugabyte
Digest: sha256:ed09f14588cb8cda772ec344dc1e5beb19aeed710fca41600f3a79a2c19773c0
Status: Downloaded newer image for yugabytedb/yugabyte:2.17.1.0-b439
73a0b759c06986b09e1b7d1d8a7beca9d4029966285ccfdcd14ebd34a9b0b448
$ docker exec -it yugabyte /home/yugabyte/bin/ysqlsh --echo-queries
ysqlsh: could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5433?
could not connect to server: Cannot assign requested address
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5433?
Yes, I’m just copying commands from the web page into a shell. I did not change anything so there is nothing unique on my side and I believe this is nothing I can really help with at this point. Thank you.