redhat6.4安裝MySQL-server-5.5.28-1.linux2.6.x86_64.rpm

來源:互聯網
上載者:User

標籤:

首先下載下面三個檔案:

MySQL-server-5.5.28-1.linux2.6.x86_64.rpm

MySQL-client-5.5.28-1.linux2.6.x86_64.rpm

MySQL-devel-5.5.28-1.linux2.6.x86_64.rpm

然後使用root帳號登陸,進行安裝:

1. 安裝server、devel、client:1. 安裝server、devel、client:

 

rpm -ivh --replacefiles MySQL-s*.rpm

rpm -ivh --replacefiles MySQL-d*.rpm

 

rpm -ivh --replacefiles MySQL-c*.rpm

 

 

[[email protected] ~]# rpm -ivh --replacefiles MySQL-server-5.5.28-1.linux2.6.x86_64.rpm  

Preparing...                ########################################### [100%] 

   1:MySQL-server           ########################################### [100%] 

[[email protected] ~]# rpm -ivh --replacefiles MySQL-client-5.5.28-1.linux2.6.x86_64.rpm

Preparing...                ########################################### [100%] 

   1:MySQL-client           ########################################### [100%] 

[[email protected] ~]# rpm -ivh --replacefiles MySQL-devel-5.5.28-1.linux2.6.x86_64.rpm  

Preparing...                ########################################### [100%] 

   1:MySQL-devel            ########################################### [100%]

要移除安裝可以使用 rpm -e MySQL-server  、 rpm -e MySQL-devel、MySQL-client即可;

2. 初始化資料庫:

 

/usr/bin/mysql_install_db

 

3. 啟動mysql服務:

 

service mysql start

 

使用命令ps -ef | grep mysql 查看mysql進程:

  [[email protected] ~]#  ps -ef|grep mysql root       3708   3057  0 18:39 pts/1    00:00:00 grep mysql

4.第一次登陸設定root密碼:

首先查看 cat /root/.mysql_secret //有時候找不到那就先不管 往下看

  [email protected] ~]# cat /root/.mysql_secret

# The random password set for the root user at Fri Aug 30 15:57:18 2013 (local time): fMYcarvB   這部網上說這樣反正我沒成功

然後命令列:mysql -u root -p ,然後輸入上面的密碼即可:

[[email protected] ~]# mysql -uroot -p Enter password: Welcome to the MySQL monitor.  Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.5.28 MySQL Community Server (GPL)

Copyright (c) 2000, 2012, 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.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

設定root密碼:

 

mysql> use mysql 

Database changed 

mysql> update user set password=password(‘root‘) where user=‘root‘; 

Query OK, 0 rows affected (0.15 sec) 

Rows matched: 5  Changed: 0  Warnings: 0 

 

mysql> flush privileges; 

Query OK, 0 rows affected (0.00 sec)

退出,重新登陸即可使用新的密碼登陸;

5. 設定遠程登陸:

使用root登陸到mysql後

切換到mysql資料庫

mysql> show databases; +--------------------+ | Database           | +--------------------+ | information_schema | | mysql              | | performance_schema | | test               | +--------------------+ 4 rows in set (0.00 sec)

mysql> update user set host=‘%‘ where user=‘root‘; ERROR 1046 (3D000): No database selected mysql> use mysql Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A

Database changed mysql> update user set host=‘%‘ where user=‘root‘; ERROR 1062 (23000): Duplicate entry ‘%-root‘ for key ‘PRIMARY‘ mysql> select host,user from user; +-----------------------+------+ | host                  | user | +-----------------------+------+ | %                     | root | | 127.0.0.1             | root | | ::1                   | root | | localhost             |      | | localhost.localdomain |      | | localhost.localdomain | root | +-----------------------+------+ 6 rows in set (0.00 sec)

 

然後: 

  mysql> grant all privileges on *.* to ‘root‘@‘@‘ with grant option; ERROR 1105 (HY000): Malformed hostname (illegal symbol: ‘@‘) mysql> grant all privileges on *.* to ‘root‘@‘%‘ with grant option; Query OK, 0 rows affected (0.00 sec)

 

mysql> exit 

Bye 

[[email protected] ~]# service mysql restart 

Shutting down MySQL.. SUCCESS!  

Starting MySQL.. SUCCESS!  

重啟mysql即可遠程登陸。

redhat6.4安裝MySQL-server-5.5.28-1.linux2.6.x86_64.rpm

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.