Centos 6.5使用yum安裝mysql

1步、yum安裝mysql
[root@stonex ~]#  yum -y install mysql-server
安裝結果:
Installed:mysql-server.x86_640:5.1.733.el6_5                                                                             Dependency Installed: mysql.x86_64 0:5.1.73-3.el6_5 mysql

perl-DBD-MySQL.x86_64 0:4.013-3.el6    perl-DBI.x86_64 0:1.609-4.el6

2步、設置開機啓動
[root@stonex ~]#  chkconfig mysqld on

3步、啓動MySql服務
[root@stonex ~]#  service mysqld start

4步、設置MySQLroot用戶設置密碼
[root@stonex ~]#  mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
......
省略了一些行
mysql> select user,host,password from mysql.user;
查詢用戶的密碼,都爲空,用下面的命令設置root的密碼爲root
mysql> set password for root@localhost=password('root');
mysql> exit

5步、用新密碼登錄
[root@stonex ~]#  mysql -u root -p

6步、基本命令
show databases; //查看系統已存在的數據庫
use databasesname;   //選擇須要使用的數據庫
drop database databasename; //刪除選定的數據庫
exit    //退出數據庫的鏈接
create database test01;    //創建名爲test的數據庫
show tables;        // 列出當前數據庫下的表
其餘基本的增刪改查使用標準SQL便可sql

7步、開放遠程登陸權限數據庫

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
FLUSH PRIVILEGES;
(完)spa

相關文章
相關標籤/搜索