1. 程式人生 > >mysql 安裝和root 預設密碼

mysql 安裝和root 預設密碼

  1. 安裝
    $ brew install mysql;

  2. 首次登陸設定密碼
    1.1
    $ mysql
    1.2
    mysql>set Password=Password(‘123456’);
    or
    mysql> update mysql.user set authentication_string=password(“123456”) where user=”root”;
    finally
    mysql>quit;

  3. 再次登陸with剛剛設定的密碼
    $ mysql -u root -p
    Enter password:

  4. 新增新使用者並且設定所有許可權
    mysql> create user ‘test’@’%’ identified by ‘1234’;
    mysql> grant all privileges on .
    to test;
    mysql> flush privileges;