How can i either FULLY remove mysql on linux or somehow fix it.?
It might be due to unresolved dependencies or an apt problem. You could first try at a command prompt/shell:
apt-get -f install
If that doesn't fix it, try:
apt-get remove mysql-server
(or whatever package you installed)
It's difficult to give a better diagnosis though without more information. What Linux distribution is this? Where do you see this error? What were you doing before? When you first installed MySQL, did you create the initial username/passwords?
Once MySQL is gone, you can reinstall it with:
apt-get install mysql-server
Again the "mysql-server" bit might be different, depending on which distribution you're using.
|