Mostrando entradas con la etiqueta Amazon Web Services. Mostrar todas las entradas
Mostrando entradas con la etiqueta Amazon Web Services. Mostrar todas las entradas

martes, 21 de septiembre de 2021

Non-stop iDempiere and PostgreSQL Services on AWS

In the terminal, once connected on our EC2 Instance, we change owner on idempiere-server folder using follow instructions:

 

cd /opt/

sudo chown -R ubuntu ubuntu idempiere-server/

sudo chgrp -R ubuntu ubuntu idempiere-server/ 

cd /idempiere-server/

 

For get non-stop iDempiere services we're going to use nohup command:

 

nohup ./idempiere-server.sh &

 

Then, for PostgreSQL service we're going to use the same command:

 

nohup /usr/lib/postgresql/12/bin/postmaster -D /usr/local/pgsql/data </dev/null >>server.log

 

Finally, you can open iDempiere on your favorite browser in any time.