thats the first part i dont know how to do, using the host (FreeBSD) to get into my sql to run that command.
Im logged in as root, and when i run that line it gives me this in return:
# UPDATE mysql.user SET host = '%' WHERE user = 'root' ; FLUSH PRIVILEGES ;
UPDATE: Command not found.
FLUSH: Command not found.
Thanks for the help so far!
Main Topics
Browse All Topics





by: todd_farmerPosted on 2007-04-07 at 07:52:08ID: 18869560
Connect to the server from the FreeBSD host using the command-line interface (as root) and issue:
UPDATE mysql.user SET host = '%' WHERE user = 'root';
FLUSH PRIVILEGES;