I find it hard to establish a link between jdbc and mysql. I think one of the reasons is the mysql port. I checked the port with the statement: \"show variables like \'port\';\"
First of all check what SHOW VARIABLES LIKE 'skip_networking';
if it reports skip_networking = On, your mysqld is started without networking support (which leads to an value of 0 in the port system variable).
If this is the case, you most likely have to check the init scripts for your mysqld, its most likely under /etc/init.d/mysql
, search here for --skip-networking
and comment out (delete) this part. After this procedure you have to restart your mysqld.
Normaly there is no need to set the port 3306 explicitly since 3306 is the default port for mjysqld to listen on.