You can obtain a backup from http://linuxzoo.net/~andrew/mysql/andrew.sql
and restore this over your existing data. You can use lwp-request to copy
a file from the web server.
lwp-request http://linuxzoo.net/~andrew/mysql/andrew.sql > /var/tmp/andrew.sql
You execute a backup from the linux command prompt.
mysql -u root -psecure < afile.sql
As the backup given includes user account details you should execute the
flush privileges command from mysql or use the linux instruction
mysqladmin -u root -psecure flush-privileges - having done that you
should find that the user scott has disappeared and the user andrew (with
password andrew) has been created. Also there is a new database and a new
table.
Note that this backup will delete then recreate the user root. In the
restored system root has password secure.