Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Establishing Password

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I have installed SuSE 7.3. When I first boot it, it gives me this information.

mysqladmin -u root -p password 'new-password'
mysqladmin -u root -h myservername -p password 'new-password'

I think the default password is a NULL.. no matter what I do I can not figure this out.

Say I wanted my password to be bocaburger, exactly what would I type in?

Jim
 
Log into your database with mysql -u root, assuming you are on the localhost, then type:

GRANT ALL ON *.* TO root@localhost identified by 'bocaburger';

That should see you right.

Garry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top