Report this

What is the reason for this report?

Webmin showing "This site can’t be reached"

Posted on April 8, 2022

I was working on installing Webmin with this tutorial https://www.digitalocean.com/community/tutorials/how-to-install-webmin-on-ubuntu-20-04

After installation I proceeded to the link for log in as instructed “Webmin install complete. You can now login to https://your_server:10000 as root with your root password, or as any user who can use sudo.”

I got the following error message “This site can’t be reached server IP address could not be found.”

What went wrong?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi there,

The error message you’re encountering usually occurs when there is a DNS resolution issue or if the Webmin service is not running properly. Here are some steps to help you troubleshoot the issue:

  1. Ensure that you have used the correct server IP address or domain name in the URL. Replace “your_server” with your actual server’s IP address or domain name.

  2. Make sure the Webmin service is running:

sudo systemctl status webmin

If the service is not running, start it with the following command:

sudo systemctl start webmin
  1. Check if the port 10000 is open and listening:
sudo netstat -tuln | grep 10000

If the port is not open, make sure your firewall is not blocking the port:

# If you're using UFW
sudo ufw allow 10000/tcp

# If you're using FirewallD
sudo firewall-cmd --zone=public --add-port=10000/tcp --permanent
sudo firewall-cmd --reload
  1. If you are using a domain name instead of an IP address, make sure that the domain name is properly pointed to the server IP address. You can check this using a DNS lookup tool or by running the following command:
nslookup your_domain_name

Replace “your_domain_name” with your actual domain name.

After performing the above steps, try accessing the Webmin interface again using the correct URL: https://your_server:10000.

If the issue persists, please provide any error messages or relevant logs to help identify the problem more accurately.

Best,

Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Start building today

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.