發表於1年前(2014-08-04 17:35) 閱讀(
0) 11人收藏此文章, 我要收藏 贊
0 摘要剛裝完虛擬機器心情大好打算編譯安裝mariadb,但是一看各種cmake引數就頭大了,哎,老實yum安裝吧。轉來這篇文章。我的是centos7。
mariadb
mysql
目錄[-]
[azureuser@mono etc]$ cd /etc/yum.repos
.d [azureuser@mono yum.repos
.d]$ vi mariadb.repo
拷貝以下內容:
gpgcheck=1如果是其他的作業系統,可以在這裡找到相關資訊。
[azureuser@mono yum.repos
.d]$ sudo yum -y install mariadb-client mariadb-server mariadb-devel
[azureuser@mono yum.repos
.d]$ sudo service mysql start
[azureuser@mono yum.repos
.d]$ mysqladmin -u root password 『passwd』
[azureuser@mono yum.repos.d]$ mysql -u root -p
enter password:
welcome to the mariadb monitor. commands end
with ; or \g.
your mariadb connection id is
4 server version: 10.0.4-mariadb mariadb server
type
'help;'
or'\h'
for help. type
'\c'
to clear the current input statement.
mariadb [(none)]>grant all privileges on *.* to
'root'@'%' identified by 『passwd』 with grant option;
mariadb [(none)]> flush privileges;
第一句中」%「表示任何主機都可以遠端登入到該伺服器上訪問。如果要限制只有某台機器可以訪問,將其換成相應的ip即可,如:
grant
allprivileges
on *.* to root@"172.168.193.25"
identified
by"root";
用root帳號登入後,在/etc/my.cnf 中的[mysqld]後新增新增lower_case_table_names=1,重啟mysql服務,這時已設定成功:不區分表名的大小寫;
其中 0:區分大小寫,1:不區分大小寫
linux centos下使用yum安裝mySql
直接上操作 1 系統會自帶mysql 刪掉刪掉 檢視有沒有 rpm qa grep mysql 如果有使用命令刪除 rpm e nodeps 查出的mysql 可以先查詢一下子mysql的版本號 yum list grep mysql yum install y mysql server rpm q...
Centos 使用YUM安裝MariaDB
azureuser mono etc cd etc yum.repos d azureuser mono yum.repos d vi mariadb.repo拷貝以下內容 gpgcheck 1如果是其他的作業系統,可以在這裡找到相關資訊。azureuser mono yum.repos d sud...
CentOS使用yum安裝mysql
1 檢視centos自帶mysql是否已安裝。輸入 yum list installed grep mysql 輸入 yum y remove mysql libs.x86 64,若有多個依賴檔案則依次解除安裝。當結果顯示為complete!即解除安裝完畢。輸入 yum list grep mysq...