• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Problems with access mysql with Jdbc drivers

A

agews

Guest
We want to approach to one database mySQL with JDBC drivers with Plesk 7.5.1 on RedHat Ent. Server 3.0

We use a script like this:

/usr/java/jdk1.4.2/bin/java -cp /usr/xxx/mysql-connector-java-3.0.6-stable-bin.jar /usr/xxx/com/agews/vgload/LoadVirtual

In JDBC drivers we setup:
ServerName=localhost
Database= database_name
Port=3306
User=username
Password=password
etc.

but when we launch the procedure we obtain the following error:
"Server configuration denies access to data source"

We have set up all the corrected permissions of access on mySQL!

There are other configurations to bring to the system (example: tomcat/catalina.policy) ?
 
Grant database on mySQL

The solutions is:

# mysql -u admin -p [CP_PASSWORD]
mysql> use [DATABASE];
mysql> GRANT ALL ON [DATABASE].* TO [USER] IDENTIFIED BY '[PASSWORD]';
mysql> FLUSH PRIVILEGES;
mysql> exit;

after access with JDBC to mySQL work fine !
 
Back
Top