Heim >Datenbank >MySQL-Tutorial >CentOS系统使用yum安装MariaDB数据库

CentOS系统使用yum安装MariaDB数据库

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 16:45:431290Durchsuche

因为在CentOS上默认是没有MariaDB仓库的,因此,先需要安装rep

因为在CentOS上默认是没有MariaDB仓库的,因此,先需要安装rep

step 1. 生成repo文件
    (1) 创建一个新的repo文件
          # nano /etc/yum.repos.d/MariaDB.repo
    (2) 添加内容
          [mariadb]
         name = MariaDB
         baseurl = centos6-amd64
         gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
         gpgcheck=1
    (3) Ctrl+O,Ctrl+X 保存退出

step 2. 更新仓库
# yum -y update

step 3. 安装MariaDB
yum -y install MariaDB-client MariaDB-server MariaDB-devel

step 4. 启动MariaDB
service mysql start
:)OK,安装成功,收工做午饭咯。。。
补充:就想到吃了。。。还要把大小写敏感去掉啊大姐(linux下默认表名是大小写敏感的,,这样使用起来很不方便)。。。

step 5. 去掉表名的大小写敏感
cp /etc/my.cnf.d/server.cnf  /etc/my.cnf
在 [mysqld-5.5] 下加入:
lower_case_table_names=1
这样系统就会自动将表名转成小写。切记在使用数据库前作这个操作,否则中途改就比较郁闷了,特别是当数据库名也有大写字母的时候。

在 CentOS/RHEL/Scientific Linux 6 下安装 LAMP (Apache with MariaDB and PHP)

MariaDB Proxy读写分离的实现

安装MariaDB与MySQL并存

MariaDB 的详细介绍:请点这里
MariaDB 的下载地址:请点这里

本文永久更新链接地址:

linux

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn