Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to restore mysql privileges after bad chown

wrongly i set owner on all the files in my server to root :

chown -R root /

now i have some problem with mysql server due to permission.

How can i set mysql owner to the correct files?

(I can't reinstall mysql server cause i have important table in my db )

like image 463
Jayyrus Avatar asked Nov 29 '12 11:11

Jayyrus


1 Answers

On my CentOS box, the own and group is mysql and the install is here. This will fix your mysql permissions.

chown -R mysql:mysql /var/lib/mysql

However, chown -R root / is no doubt going to have caused you a few more problems than simply MySQL.

like image 88
Rawkode Avatar answered Nov 15 '22 00:11

Rawkode