Can you create a database in cpanel for sqlyog? - mysql

I've created a database in cpanel and i was wondering if i could use it in SQLyog. Whenever i enter the database user and database password im getting and access denied error in the client. Should i be using different credentials to the ones created in the MySQL database wizard? I also have all the privileges checked.
Thank you all for you help!

Related

Sqlyog mysql access denied for user#ipaddress using password yes

I have created a user via SQLyog.
Created user on localhost
Given all global Privileges
When Trying to access
I am getting above error when I am trying to access it
Any help would be highly appreciated

MYSql 5.7- user is not able to change his own password having select access

I am using MySQL 5.7.38 hosted on AWS RDS, and created one user with select-only access. That user is not able to change his password.
Is it a feature of MySQL 5.7.38 or am I doing wrong something?
The user is trying to change his password from PHPMyAdmin UI.

MySQL Workbench Export Privileges

Using MySQL Workbench 6.3, Windows Server 2012 R2.
I have created a user with SELECT privileges on a single database. This user is able to connect to the database and view the records in read only mode.
However I'd also like this user to be able to export the database, currently when they try (via manage > export data) the receive the following error.
'Access Denied for user 'user'#'xxx' (using password NO) when trying to connect'
Basically I only want this user to be able to read the database records and export the database.
Is it possible to add these additional privileges?
Thanks
I had to grant 'LOCK TABLES' then it worked.
if you can't change access, just check this checkbox.

MySQL Access Denied for user ''#'localhost'

I am having trouble creating a database on my local server using MySQL.
Approach:
Start mysqld as administrator
Start MySQL as administrator
mysql> create database db_name;
MySQL throws an error indicating, "Access Denied for user ''#'localhost to database 'db_name'.
What do I need to specify to MySQL to create a database?
You need to provide a valid user/password combination to gain access to MYSQL.
You also need that the user you are using have the privileged to create a database.
On default, new users have zero access to the database management including creation.

Single user with multiple databases in Plesk 11

I am running Centos6 with Plesk 11 and I am trying to assign a single user to have access to multiple databases. I am following the instructions given here: http://kb.parallels.com/en/115783
When I run the command GRANT ALL PRIVILEGES ON newdb.* TO 'olduser'#'%'; from the SQL tab in phpmyadmin, I am getting the following error:
1044 - Access denied for user 'openemm2'#'%' to database 'openemm_cms'
openemm2 is the username I have assigned to this database -- why the error and what can I do about it?
Found the solution to this. I had to log into the mysql> prompt using:
mysql -uadmin -p`cat /etc/psa/.psa.shadow`
This allowed me access to run the command. I have also discovered one can accomplish the same thing through the phpmyadmin panel access through the database servers link from the servers tab in Plesk 11. This is where you find the master phpmyadmin where you can access ALL of your databases rather than the individual access phpmyadmin you get through the database link in the websites & domains tab.