Linux Centos 6.6安裝Mysql

在Linux Centos 6.6環境下,通過rpm軟件包安裝mysql或使用yum安裝mysql。


目錄

1、下載mysql

2、使用rpm軟件包安裝mysql

3、使用yum安裝mysql

4、查看mysql版本

5、重啓mysql

6、查看是否開機啓動mysql

7、設置mysql開機啓動

8、修改mysql用戶密碼

9、用root用戶登錄mysql

10、允許root用戶遠程登錄連接

11、連接mysql導入SQL腳本




1、下載rpm格式的mysql

翻牆吧,少年。

http://dev.mysql.com/downloads/mysql/

2、使用rpm軟件包安裝mysql

.rpm後綴格式mysql安裝方式。

rpm -ivh MySQL-server-5.6.24-1.linux_glibc2.5.x86_64.rpm

[root@localhost Desktop]# rpm -ivh MySQL-server-5.6.24-1.linux_glibc2.5.x86_64.rpm

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

file /usr/share/mysql/charsets/README from install of MySQL-server-5.6.24-1.linux_glibc2.5.x86_64 conflicts with file from package mysql-libs-5.1.73-3.el6_5.x86_64

---------------------------------------------------------------

file /usr/share/mysql/charsets/macroman.xml from install of MySQL-server-5.6.24-1.linux_glibc2.5.x86_64 conflicts with file from package mysql-libs-5.1.73-3.el6_5.x86_64

file /usr/share/mysql/charsets/swe7.xml from install of MySQL-server-5.6.24-1.linux_glibc2.5.x86_64 conflicts with file from package mysql-libs-5.1.73-3.el6_5.x86_64

 

rpm -ivh MySQL-client-5.6.24-1.linux_glibc2.5.x86_64.rpm

[root@localhost Desktop]# rpm -ivh MySQL-client-5.6.24-1.linux_glibc2.5.x86_64.rpm

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

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

 

3、使用yum安裝mysql

yum list | grep mysql
yum install mysql-server.x86_64
yum install mysql.x86_64


4、查看mysql版本

rpm -qi mysql-server


5、重啓mysql

service mysqld restart

6、查看是否開機啓動mysql

chkconfig --list | grep mysqld

[root@localhost Desktop]# chkconfig --list | grep mysqld

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


7、設置mysql開機啓動

chkconfig mysqld on
chkconfig --list | grep mysqld

[root@localhost Desktop]# chkconfig mysqld on

[root@localhost Desktop]# chkconfig --list | grep mysqld

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


8、修改mysql用戶密碼

修改用戶root的密碼爲root

/usr/bin/mysqladmin -u root password 'root'

[root@localhost Desktop]# /usr/bin/mysqladmin -u root password 'root'


9、用root用戶登錄mysql

mysql -u root -p

[root@localhost Desktop]# mysql -u root -p

Enter password: 

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 5

Server version: 5.1.73 Source distribution

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

  

10、允許root用戶遠程登錄連接

允許root用戶在任何地方進行遠程登錄,並具有所有庫任何操作權限

命令行:

[root@localhost Desktop]# mysql -u root -p"root" 

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;

FLUSH PRIVILEGES;

 

11、連接mysql導入SQL腳本

將SQL腳本上傳到tmp目錄下。

mysql -u root -p
create database test;
use test;
source /tmp/test.sql;

[root@centos6 /]# mysql -u root -p

Enter password: 

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 5

Server version: 5.1.73 Source distribution

 Copyright (c) 2000, 2013, 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> create database test;

mysql> use test;

Database changed

mysql> source /tmp/test.sql;


新新:http://blog.csdn.net/xinxin19881112/article/details/46873811

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章