標籤:centos config word 所有權 rpm span 查詢 data 安裝mysql
Mysql安裝配置
先來更新系統
[[email protected] ~]# yum -y update
查看已安裝的mysql版本
[[email protected] ~]# rpm -qa | grep mysql
刪除上一步查詢出來的版本,注意更換這裡的版本
[[email protected] ~]# rpm -e --nodeps mysql-libs-5.1.73-7.el6.x86_64
通過yum方式安裝mysql
[[email protected] ~]# yum install -y mysql-server mysql mysql-deve
開啟mysql服務
[[email protected] ~]# service mysqld start
設定mysql開機自啟
[[email protected] ~]# chkconfig mysqld on
設定root使用者密碼
[[email protected] ~]# mysqladmin -u root password ‘YouPassword‘
登陸mysql
[[email protected] ~]# mysql -u root -p
順便介紹一下開啟root使用者的遠端存取許可權的方法(不安全)
mysql> grant all PRIVILEGES on *.* to [email protected]‘%‘ identified by ‘YouPassword‘;
建立名為scott的資料庫
mysql> create database scott;
建立名為scott密碼為tiger的使用者
mysql> insert into mysql.user(Host,User,Password) values ("%","scott",password("tiger"));
重新整理許可權
mysql> flush privileges;
使scott使用者擁有scott資料庫的所有許可權
mysql> grant all PRIVILEGES on scott.* to [email protected]‘%‘ identified by ‘tiger‘;
重新整理許可權
mysql> flush privileges;
退出
mysql> exit;
Centos6.5下安裝Mysql