mysql
UPDATE mysql.user SET password=PASSWORD('rootpass') WHERE user='root';
FLUSH PRIVILEGES;
quit
It doesn't say how to get in so I understand the confusion that somebody can think "use mysql" is the way to get in. I missed that myself too. Easy to overlook. The help file could mention that or just add it to the lines to type.That should start up mysql without the need for a root password. Once in, type
mysql
use mysql
UPDATE mysql.user SET password=PASSWORD('rootpass') WHERE user='root';
FLUSH PRIVILEGES;
quit
[B]item.php?id=45[/B]
[B]item.php?id=45[COLOR=#000000][FONT='inherit']/etc/init.d/mysqld stop[/FONT][/COLOR][/B]
ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('MyNewPass');
It's just from the DA help section, following these commands exactly should cause no harm. But you are right, if he's not experienced enough he better use phpmyadmin.I highly not suggest that the TS would work in a shell console as root.