-
Hi, I have a Ubuntu instance on AWS. And I am trying to install and configure mrsm on my Ubuntu instance. The installation of msrm was successful and I was able to stack up the database using the command
My Ubuntu version is
mrsm version Could someone help me fix the issue ? Thanks in advance :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
FYI: I looked if there are any other processes which are using the port |
Beta Was this translation helpful? Give feedback.
-
Hi @lrangar , thanks for your question! mrsm stack ps should print this output:
You can also inspect and edit the stack configuration with Are you able to verify that the database is running and listening on port 5432? What do the logs look like for mrsm stack logs db I hope this helps! If the container is running, then the issue might be network-related. Another issue (#51) was resolved because the server did not have enough RAM to start the database, so depending on what you've allocated to your EC2, that might be the case. Lastly, if you aren't able to get the database running on this server, you can edit the connection details for |
Beta Was this translation helpful? Give feedback.
Hi @lrangar , thanks for your question!
mrsm stack
is a wrapper fordocker-compose
, so you can try other Docker Compose commands to troubleshoot, e.g.:should print this output:
You can also inspect and edit the stack configuration with
mrsm edit config stack
.Are you able to verify that the database is running and listening on port 5432? What do the logs look like for
db
?I hope this helps! If t…