Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Following the recommended instructions for resetting root at link and the other recommendations here at stackoverflow. I tried to reset my root pass both ways suggested, with and without the --defaults-file option

First I tried. "C:\Program Files\MySQL\MySQL Server 5.5\bin\mysqld" –init-file=C:\mysql-init.txt --console

Error: C:\Program Files\MySQL\MySQL Server 5.5\bin\mysqld: Too many arguments (first extra is 'ûinit-file=C:\mysql-init.txt').

Next I tried "C:\Program Files\MySQL\MySQL Server 5.5\bin\mysqld" --defaults-file="C:\ProgramData\MySQL\MySQL Server 5.5\my.ini" MySQL55 –init-file=C:\mysql-init.txt --console

Error: C:\Program Files\MySQL\MySQL Server 5.5\bin\mysqld: Too many arguments (first ex tra is 'MySQL55').

'Too many arguments' makes me think my syntax is the problem

share|improve this question

1 Answer

up vote 3 down vote accepted

Look at your command lines again and manually delete the LONG HYPHENS. Then type the hyphens in again manually.

"C:\Program Files\MySQL\MySQL Server 5.5\bin\mysqld" –init-file=C:\mysql-init.txt --console

should be

"C:\Program Files\MySQL\MySQL Server 5.5\bin\mysqld" --init-file=C:\mysql-init.txt --console

(notice the hyphens before init-file)

Refer to mysqld options

share|improve this answer
I manually typed it in and got unknown option i. How do you guarantee the short hyphen? – rd42 Feb 13 '12 at 19:55
I edited the answer. When you type in overly-helpful programs like Word/Outlook (which are not meant for console commands), they lenghten out the dash. It is still normally visually discernable. – RichardTheKiwi Feb 13 '12 at 19:59
Thank you for your keen eye. I manually typed it in with out the --default-file and used --init but all typed in the console. Thanks Richard! – rd42 Feb 13 '12 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.