There have been a couple of posts similar to this one already. My problem seems to be unique.
Using this site (http://innovativethought.net/2007/05/17/resetting-your-forgotten-mysql-password/) as my source, I..
- Stopped the server.
cd /usr/local/mysql/bin/safe_mysqld --skip-grant-tables
cd /usr/local/mysql/bin/mysql mysql
in new terminal window- In new terminal window, type
UPDATE user SET Password=PASSWORD('YOUR_PASSWORD') WHERE Host='localhost' AND User='root';
The problem is that I get stuck on Step 2.
Brians-MacBook-Air-2:bin Ghost$ cd /usr/local/mysql/bin/safe_mysqld --skip-grant-tables
-bash: cd: /usr/local/mysql/bin/safe_mysqld: No such file or directory
What am I doing wrong? I also might be interpreting my source site incorrectly.
Any help would be greatly appreciated!