Report this

What is the reason for this report?

How to logon in servermail with usermail ?

Posted on August 22, 2015

https://www.digitalocean.com/community/tutorials/how-to-configure-a-mail-server-using-postfix-dovecot-mysql-and-spamassassin

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!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

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.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.