How come I can't create database on mysql, I am root user ? When I type the command "mysqladmin create mydb -p"
After that the error come out:
"mysqladmin:connect to server at '' failed; error:'Access denied for user: 'root@server.company'
I also try the command:
"mysqladmin -h localhost create mydb -p"
"mysqladmin -h 192.168.0.10 create mydb -p"
"mysqladmin -h /var/lib/mysql create mydb -p"
"mysqladmin -h server.company create mydb -p"
but still have same problem, that's why I can't set access right of database at the next step.
Thank you.