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

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

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:
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.
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
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
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