I am very new to MySQL Maria DB which is installed on a Debian 10 system
I am following a set of instructions on setup of Froxlor Control Panel on a VPS and have run into a problem.
I got the following error:
Checking MySQL-root access... SQLSTATE[HY000] [1524] Plugin 'My company' is not loaded
When I go into my server and type mysql -uroot
I got the following message from the system:
ERROR 1524 (HY000): Plugin 'My company' is not loaded
What does mysql -uroot
actually do and what does this error tell me ?
2
Answers
I used this document to solve my problem:
To answer the question:
Is the same as:
Which is the shorthand for:
Which starts up the mysql command line tool and logs in as ‘root’ mysql user.
Regarding the error you’re getting, it appears to be underlying customizations of your mysql server instance, you should check with your hosting provider, as in a normal vanilla instance that wouldn’t appear.
In a normal instance, you would see a prompt like that:
And you would be able to issue SQL instructions on that prompt.