Skip to content
Advertisement

Unable to local MySQL database with Spring app deployed through Tomcat

I’m trying to create a web application using Spring and Hibernate, deploying it through Tomcat 8. I’ve setup MySQL and Tomcat 8 locally on my machine, and am able to deploy the web application to it. The app fails to launch due to the application/tomcat failing to connect to the database.

I’m following the setup tutorial here (Using Hibernate 4): Tutorial

When I try to deploy the application I receive the following error, which I abbreviated to the first error that occurred:

JavaScript

Application Setup (spring.xml)

JavaScript

I tried following the suggestion outlined here: Suggested solution

It seems to be a problem with the database setup, as I am unable to ping it through terminal. Although I can login to it:

MySQL Checks

Login:

JavaScript

MySQL Timeout:

JavaScript

Check MySQL Timeout:

JavaScript

Check MySQL host:

JavaScript

Check MySQL Port

JavaScript

Check Skip Networking

JavaScript

Ping Checks

127.0.0.1

JavaScript

localhost

JavaScript

localhost MySQL port

JavaScript

What else do I need to make sure that the database / tomcat / application are set up properly.

Update 1:

Following the instructions outlined here: setup

I added the bind address parameter to the configuration file using 127.0.0.1, as well as setting the port to 3306. I don’t think that worked, as after restarting MySQL, the port was still set to 3307.

Advertisement

Answer

Let’s look at this from first principles.

The JDBC URL you are using, which says that you are trying to connect to “localhost:3307”

The java.net.ConnectException: Connection refused means that the database was not listening for requests on the IP address and port number that your client was trying to use.

So why could be going wrong?

  • It could be that the database simply wasn’t running, but you have probably eliminated that. (You can run the mysql client from the command line?)

  • It could be that you (or someone) has misguidedly configured localhost to resolve to something other than 127.0.0.1. (Some people do crazy things …)

  • But I think that the most likely explanation is that MySQL is not listening for requests 127.0.0.1.

One way to be sure of this is to start the database, and then run “netstat -an | grep LISTEN | grep tcp”. That will show you all of the IP addresses and port numbers that are currently being “listened” on. Make sure that the address/port combination you are trying to use is included.

(Note that an IPv4 address 0.0.0.0 means any address. It is a wildcard.)

Once you have figure out what the server is listening on you can decide between changing the JDBC URL to match that, or getting the server to listen on the IP / port you want to use.


Other people are suggesting a problem with user-names and passwords. These suggestions are red herrings. If that was the problem, the exception would be different.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement