This question has been flagged
1 Reply
4637 Views

I followed the steps described at https://it-projects-llc.github.io/odoo-saas-tools/getting-started/ to install odoo saas in docker.

I could log into http://portal.saas.example.com/ by giving admin-admin username and password.

But I could neither connect to http://server.saas.example.com/ nor could I log into the template DB by clicking the link created on clicking the "log into template DB" button in the saas->saas->plan.

The page shows "server-1.portal’s server IP address could not be found.

DNS_PROBE_FINISHED_NXDOMAIN"

What would I have missed? How to log in to the server/ template DB?

Avatar
Discard
Best Answer

first sudo su

INIT_SAAS_TOOLS_VALUE=' \
--portal-create \
--server-create \
--plan-create \
--odoo-script=/mnt/odoo-source/odoo-bin \
--odoo-config=/mnt/config/odoo-server.conf \
--portal-db-name=portal \
--server-db-name=server-1 \
--server-hosts-template={dbname}.{base_saas_domain_1} \
--plan-template-db-name=template-1 \
--plan-clients=demo-%i \
' && docker exec -u root -t odoo /bin/bash \
-c "export INIT_SAAS_TOOLS='$INIT_SAAS_TOOLS_VALUE'; bash /install-odoo-saas.sh"

create portal, server and plan then start server via systemctl start odoo.service

Avatar
Discard