|
|
Question : How do I change mysql owner from root to something else?
|
|
I have a db with 88 tables. Currently, the owner is root. I need to change this to be another user. Is there a way I can change all ownership on these tables to be another user?
|
Answer : How do I change mysql owner from root to something else?
|
|
use this: chown -R "username" /usr/local/mysql/var
|
|
|
|