Options
- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Solved
Go to solution
Password for MySQL
Labels:
- Labels:
-
Quickstart VM
New Contributor
Created on
‎01-02-2015
01:41 AM
- last edited on
‎10-31-2017
07:29 AM
by
cjervis
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I've installed Cloudera VM 5.3.0 with VMware 11.0 on Windows 8.1. I'm trying to connect to MySQL with CLI and I typed
mysql -u root -p cloudera, but I can't connect to MySql.
Is "cloudera" the correct password ?
Best regards,
1 ACCEPTED SOLUTION
Guru
Created ‎01-02-2015 05:39 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
> mysql -u root -p cloudera
Try
$ mysql -uroot -pcloudera (no space between -p and password)
Try
$ mysql -uroot -pcloudera (no space between -p and password)
Regards,
Gautam Gopalakrishnan
Gautam Gopalakrishnan
11 REPLIES 11
Explorer
Created ‎01-11-2018 09:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
below option worked for me...
$mysql -u root -p
Enter Password:
mysql> grant all privileges on *.* to retail_user@localhost identified by 'pass' with grant option;
$mysql -u root -p
Enter Password:
mysql> grant all privileges on *.* to retail_user@localhost identified by 'pass' with grant option;
Explorer
Created ‎01-11-2018 10:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
mysql -u root -pcloudera

- « Previous
-
- 1
- 2
- Next »