I different method to set the domain name to access the domain name instead of local IP Address and tried to ping the site it works but when I access in the browser, the page cannot be reach. Please help
I tried configure the DNS but I couldn’t access the site in a browser. Here is the details how I configured the DNS
- I added the IP address and the DNS in /etc/hosts
- change the site name to my DNS to match the site mv ~/frappe-bench/sites/site1.local ~/frappe-bench/sites/erp.local
- bench set-nginx-port erp.local 80
- bench config dns_multitenant on
- bench setup nginx
- sudo service nginx restart
and I also tried to ping the DNS and it is pointing to the IP Address.
Your response will be greatly appreciated. Thank you!
If you want to set up a custom domain like myapp.local
for your local Frappe server, follow these steps:
-
Edit
/etc/hosts
Run:sudo nano /etc/hosts
Add this line at the bottom:
127.0.0.1 myapp.local
-
Add the domain to your site
bench setup add-domain --site [sitename] myapp.local
Then restart:
bench restart
-
Set active site
bench use [sitename]
-
Access your site
Open http://myapp.local:8000 in your browser.
If you’re using Nginx, don’t forget:
bench setup nginx
sudo service nginx restart
That’s it!
Thank you for your response. But I couldn’t bench restart.
Do you have any idea how to fix this?
ERROR: supervisorctl restart frappe:
$ supervisorctl restart frappe:
unix:///var/run/supervisor.sock no such file
ERROR: supervisorctl restart frappe:
subprocess.CalledProcessError: Command ‘supervisorctl restart frappe:’ returned non-zero exit status 7.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File “/home/expert369/.local/bin/bench”, line 8, in
sys.exit(cli())
^^^^^
File “/home/expert369/.local/share/pipx/venvs/frappe-bench/lib/python3.12/site-packages/bench/cli.py”, line 132, in cli
bench_command()
File “/home/expert369/.local/share/pipx/venvs/frappe-bench/lib/python3.12/site-packages/bench/commands/utils.py”, line 41, in restart
Bench(“.”).reload(web, supervisor, systemd)
File “/home/expert369/.local/share/pipx/venvs/frappe-bench/lib/python3.12/site-packages/bench/utils/render.py”, line 126, in wrapper_fn
return fn(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^
File “/home/expert369/.local/share/pipx/venvs/frappe-bench/lib/python3.12/site-packages/bench/bench.py”, line 154, in reload
restart_supervisor_processes(bench_path=self.name, web_workers=web, _raise=_raise)
File “/home/expert369/.local/share/pipx/venvs/frappe-bench/lib/python3.12/site-packages/bench/utils/bench.py”, line 343, in restart_supervisor_processes
failure = bench.run(f"{sudo}supervisorctl restart {group}", _raise=_raise)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/home/expert369/.local/share/pipx/venvs/frappe-bench/lib/python3.12/site-packages/bench/bench.py”, line 48, in run
return exec_cmd(cmd, cwd=cwd or self.cwd, _raise=_raise)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/home/expert369/.local/share/pipx/venvs/frappe-bench/lib/python3.12/site-packages/bench/utils/init.py”, line 181, in exec_cmd
raise CommandFailedError(cmd) from subprocess.CalledProcessError(return_code, cmd)
bench.exceptions.CommandFailedError: supervisorctl restart frappe: