I have installed YugaByte and created a local cluster in one AWS EC2 (RHEL 8) machine by following this tutorial. The yugabyte is running as below:
The IP Address of the AWS EC2 machine is: 10.10.23.34
Now, I want to connect to the database using pgAdmin which is installed in my Windows machine and found that the server could be not reached.
I tried to run the yugabyte server with –advertise_address flag but still could not connect with pgAdmin.
./bin/yugabyted start --advertise_address=10.10.23.34
I have tried with --listen flag but still could not connect.
./bin/yugabyted start --listen 0.0.0.0
How to change the listen address such as to any network so that the connection can be made to the yugabyte ysql server from the outside?