मैंने मैक ओएस एक्स पर MySQL स्थापित किया। अगला चरण रूट यूजर पासवर्ड सेट कर रहा था, इसलिए मैंने यह अगला किया:
- यूनिक्स कमांड लाइन का उपयोग करने के लिए टर्मिनल ऐप लॉन्च करें।
यूनिक्स प्रॉम्प्ट के तहत मैंने इन कमांडों को निष्पादित किया:
$ cd /usr/local/mysql/bin $ ./mysqladmin -u root password 'password'
लेकिन, जब मैं कमांड निष्पादित करता हूं
$ ./mysql -u root
, यह उत्तर है:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 224
Server version: 5.5.13 MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
मैं mysql
बिना किसी पासवर्ड के कमांड लाइन में जा सकता हूं !
ऐसा क्यों है?
UPDATE mysql.user SET authentication_string=PASSWORD('password') WHERE User='root';
इसके बजाय उपयोग करने की आवश्यकता होगी ।