介绍
类型
-
关系型数据库
-
非关系型数据库
-
分布式架构数据库
安装mariadb数据库
加载配置文件
cat > /etc/yum.repos.d/mariadb.repo << EOF
[mariadb]
name = MariaDB
baseurl = https://mirrors.tuna.tsinghua.edu.cn/mariadb/yum/10.7/centos/7/x86_64/
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
EOF
安装mariadb
yum install -y mariadb-server
启动数据库并进入
systemctl start mariadb.service
安装Mysql数据库
加载配置文件
cat > /etc/yum.repos.d/mysql.repo << EOF
[mysql-5.7-community]
name=MySQL 5.7 Community Server
baseurl=https://mirrors.tuna.tsinghua.edu.cn/mysql/yum/mysql-5.7-community-el7-\$basearch/
enabled=1
gpgcheck=1
gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
EOF
安装mysql
yum install -y mysql-community-server
启动数据库服务
mysql_secure_installation
已有密码下重置密码
alter user root@'localhost' identified by '123456';
查看用户权限
show grants for 'root'@'localhost';
创建用户
grant all privileges on ucenter.* to 'ucenter'@'%' identified by 'ucenter';