If you don't have any recollection of setting up a mysql root password, then there is none. You should be able to get a mysql prompt by
And exit with quit or ctrl-d.
If that is the case, here's how you create a database for mythtv and account to access it. The mysql> is the prompt you see, not for you to type in.
Code:
mysql> create database mythtv;
mysql> grant all on mythtv.* to mythtv@localhost identified by 'mythtv';
The first mythtv is the database name, the second the account name, and the third the password. This is in case you want to use other values.
You can then exit mysql as root and login as mythtv to test:
Code:
mysql -u mysql -p mythtv
Password:
mysql>
The first mythtv is the account name, the second the database to use.
Then you can proceed with the mythtv setup.
If you did set up a root password for mysql (would not be the same as your Linux root password), then I hope you remember it. The only difference would be adding -p to the command line when connecting as root in the first invocation:
Code:
mysql -u root -p
Password:
mysql>
Bookmarks