Jump to content
We've recently updated our Privacy Statement, available here ×

Data Adapter error


valkis98
Go to solution Solved by valkis98,

Recommended Posts

I installed the Jaspersoft Studio community edition and then created the Data Adapter, JDBC Driver --> com.mysql.jdbc.Driver, JDBC url -->   jdbc:mysql://nofrg.eu/gsf650s_nofrG, and username and password. The Data Adapter does not work and the message is “Access denied for user gsf650s_vlks@212.22.33.9. Τhis address (212.22.33.9)  belongs to my router and of course there is no such user in the database gsf650s_nofrG. I would appreciate your help

 

Link to comment
Share on other sites

  • Replies 9
  • Created
  • Last Reply

Top Posters In This Topic

I understood that the error of not being able to include '@' in the user name has been resolved.

The following error '#1227' is also thought to be caused by a setting on the MySQL side.

It seems that the connection user used by phpmyadmin is not granted CREATEUSER permissions.

Please try granting permissions to the connection user using the GRANT statement.

 

Link to comment
Share on other sites

The problem is that I can not specify the name of the user I want. I make all the statements correctly.

JDBC Driver --> com.mysql.jdbc.Driver, JDBC url -->   jdbc:mysql://nofrg.eu/gsf650s_nofrG, and username and password.

Username I wrote ‘dsf640s_aaa’ . Which finds the user   'gsf650s_vlks@212.22.33.9'?

Note that address  212.22.33.9 is my router.

The problem with the character @ is not solved. It does not allow me to include the character @ in the username and the length of the name should not exceed 16 characters.

Link to comment
Share on other sites

//
//About the connection settings for the data source
//

I think the JDBC URL has the following syntax
jdbc:mysql://(hosyname or IPadress):(port)/(databasename)

*For example, my connection information
URL : jdbc:mysql://192.168.1.44:3306/test
USER : myuser

*Your connection information
URL : jdbc:mysql://nofrg.eu/gsf650s_nofrG
USER : gsf650s_vlks

The part that concerns me is the following.
*There is no port number listed.

//
//About the registered user information of MySQL
//

select user,host from mysql.user;

*For example, my connection information.
# user, host
'myuser', 'localhost'
'myuser', '%'

What are the registered users in your environment?
Are there any users that look like the following?
# user, host
'gsf650s_vlks','212.22.33.9'
'gsf650s_vlks','%'

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...