Snippets tagged “port”
4 snippets use this tag.
- How do I find out my MySQL URL, host, port and username?Java
To find out your MySQL connection details, you will need to look in your MySQL configuration files. The specific location of these files will depend on how you installed MySQL, but common locations include /etc/my.cnf,
- Tomcat Server Error - Port 8080 already in useJava
If you see the error "Port 8080 already in use" when starting the Tomcat server, it means that another process is already using port 8080 on your machine.
- What is the Python 3 equivalent of "python -m SimpleHTTPServer"Python
In Python 3, you can use the http.server module to run a simple HTTP server.
- Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?Java
A java.net.ConnectException: Connection timed out error can occur when a Java application is unable to establish a network connection to the specified host.