linux下使用yum安裝mysql

來源:互聯網
上載者:User

標籤:mysql   linux   yum   access denied   error 1045   

        記錄一下linux安裝mysql的流程和出現問題的解決。

        1、使用yum安裝mysql

           安裝前可以使用mysql指令看是否已經安裝mysql。

            # yum install -y mysql-server

        2、啟動和關閉mysql服務

           # service mysqld start

           # service mysqld stop

        3、配置mysql開機啟動

           # chkconfig mysqld on

        4、查詢是否配置開機啟動成功

           # chkconfig --list mysqld

           # mysqld          0:off   1:off   2:on    3:on    4:on    5:on    6:off

           確保2-5為on或者啟用。

       5、建立管理員和密碼

           # mysqladmin -u root password 123456

       6、登陸mysql伺服器

           # mysql -u root -p 

           然後輸入密碼即可。

       7、開放防火牆的連接埠號碼,用於遠端存取。

           mysql庫中的user表新增一條記錄host為“%”,user為“root”。

           也可以使用mysql語句來實現。

           #mysql> grant all privileges on *.* to [email protected]"%" identified by ".";

           Query OK, 0 rows affected (0.00 sec)

       8、修改mysql密碼

           先登陸mysql伺服器,如果忘記密碼,先使用下面的語句。

           # mysqld_safe --user=root --skip-grant-tables

           # mysql -u root

           然後開始設定密碼。

           # use mysql

           # update user set password=password("new_pass") where user="root";

           # flush privileges; 

      9、關於ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)

           這個一般是密碼不正確導致,按第8步修改密碼即可。

           比較奇怪的是我建立root帳號和密碼後,mysql本機用指令可以正常登陸,遠程用工具登陸出現1045錯誤,修         改密碼後可以正常訪問。

      好了,到這來,mysql基本上安裝完成了。


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.