In the material
mysqladmin -p create servermail Log in as MySQL root user mysql -u root -p Enter your MySQL root’s password; if it’s successful you will see: mysql > First we need to create a new user, specific for mail authentication, and we are going to give SELECT permission. mysql > GRANT SELECT ON servermail.* TO ‘usermail’@‘127.0.0.1’ IDENTIFIED BY ‘mailpassword’; After that, we need to reload MySQL privileges to ensure it applies those permissions successfully: mysql > FLUSH PRIVILEGES;
Now we create database ‘servermail’ and user ‘usermail’ with password ‘mailpassword’.
Why can’t login on the database with command:
mysql -u usermail -pmailpassword servermail ?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hello,
To know what the issue might be we need to know what errors you are getting when you try this? If you try mysql -u usermail -p then enter the password when asked, does it work?
Without more information on the errors, it’s impossible to know what the cause might be. It’s possible you are entering the wrong password, or the user was not entered correctly. When following the guide and setting up a user I was able to log in with the password I setup and configured. So we need more information.
It’s important to understand when asking for help to provide as much information as you can. This allows supporters to have the information to replicate and reproduce the error you are getting to assist.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.