安裝: 這裡只安裝得時mysql5.1,如果想安裝5.6,看這裡
yum install -y mysql-server使用重啟:service mysqld restart
初次安裝mysql,root賬戶沒有密碼。
#進入控制台設定密碼(不需要重啟資料庫即可生效)。[root@yl-web yl]#mysql -u rootwelcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 3
server version: 5.6.26 mysql community server (gpl)
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>show databases;+--------------------+
| database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
4 rows in set (0.01 sec)
mysql>
mysql> set password for 'root'@'localhost' =password('123456');mysql配置檔案為/etc/my.cnfquery ok, 0 rows affected (0.00 sec)
mysql>
mysql配置檔案為/etc/my.cnf
最後加上編碼配置
[mysql]這裡的字元編碼必須和/usr/share/mysql/charsets/index.xml中一致。default-character-set =utf8
把在所有資料庫的所有表的所有許可權賦值給位於所有ip位址的root使用者。
mysql> grant all privileges on *.* to root@'%'identified by '123456';如果是新使用者而不是root,則要先新建使用者
mysql>create user 'username'@'%' identified by 'password';此時就可以進行遠端連線了。
centos之mysql安裝配置使用
安裝 這裡只安裝得時mysql5.1,如果想安裝5.6,看這裡 yum install y mysql server使用重啟 service mysqld restart 初次安裝mysql,root賬戶沒有密碼。進入控制台 root yl web yl mysql u rootwelcome to...
Centos 安裝配置mysql
1.檢測伺服器是否自帶msyql,或者已經安裝過mysql 有則刪之 2.安裝mysql 可以通過編譯或者yum源進行安裝 新手推薦使用yum安裝,可以排除很多坑 3.簡單的mysql配置檔案修改,如修改字符集,修改root賬戶密碼,mysqld程序開機啟動等 4.開啟配置防火牆,使mysql准許遠...
Centos 下安裝配置 MySQL
這裡介紹使用yum的方式安裝mysql,這是centos一種快速安裝的方式,對應的ubantu工具是apt get,基本用法是一樣的 1 檢查是否已經存在mysql rpm qa mysqld 2 安裝mysql yum y install mysql mysql server mysql deve...