通过官网查看
https://mariadb.org/ 或 https://yum.mariadb.org/
最新版为 10.5.x
设置数据源
https://mariadb.com/kb/en/yum/
这里使用的是国内源 http://mirrors.aliyun.com/mariadb/yum/10.5/centos8-amd64/
cat <<EOF > /etc/yum.repos.d/mariadb.repo
[mariadb]
name = mariadb
baseurl=http://mirrors.aliyun.com/mariadb/yum/10.5/centos8-amd64/
gpgkey=https://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDB
#enabled=1
gpgcheck=1
EOF
复制到 终端直接执行
更新缓存
dnf clean all
dnf makecache
dnf repolist
显示可安装的版本
## 这个可以看版本
dnf search mariadb --showduplicates --disablerepo=AppStream
或
dnf search mariadb
安装
现在安装的就是 最新的版本了
dnf -y install mariadb-server mariadb-client --disablerepo=AppStream
--disablerepo=AppStream
禁用仓库标识为 AppStream 的主软件仓库
命令
设置密码
mysql_secure_installation
设置开机启动
systemctl enable mariadb --now
启动 mariadb
systemctl start mariadb
创建新超级管理用户 fox
在 shell 中输入
mysql -uroot -p
#输入 root 的 管理密码
下面 每次执行一条
use mysql;
#创建用户 并设置密码
create user 'fox'@'%' identified by '123456';
#授权 fox 拥有 所有权限
grant all privileges on *.* to 'fox'@'%' identified by '123456' WITH GRANT OPTION;
# 刷新权限
flush privileges;
#退出
exit;
允许 root 远程登录
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
flush privileges;
原文链接:https://blog.csdn.net/fenglailea/article/details/105840417
搜索
标签
study
ab
amap
apache
apahe
awk
aws
bat
centos
CFS
chrome
cmd
cnpm
composer
consul
crontab
css
curl
cygwin
devops
di
docker
docker,docker-compose
ethereum
excel
fiddler
fluentd
framework
front-end
git
gitgui
github
glide
go
golang
gorm
grafana
gzip
ioc
item2
iterm2
javascript
jenkins
jsonp
kafka
laradock
laravel
larval
linux
liunux
log
mac
mac, wi-fi
macos
magento
mariaDB
minikube
mongoDB
msp
mysql
netbeans
nginx
nodejs
nohup
npm
nsq
oracle
php
php-fpm
php7
phpstorm
php扩展
Protobuf
python
redis
scp
server
shell
soap
socket
socket5
sql
sre
ssdb
ssh
ssl
study
sublime
swift
system
td-agent
uml
v2ray
vagrant
vagrnat
vim
vpn
vue
vue.js
webpack
webrtc
websocket
webtatic
windows
windows7
word
wps
xdebug
yarn
yii2
yum
zookeeper
世界国家
互联网
以太坊
分类
前端
小程序
打印机
排序算法
搞笑
权限
粤语
缓存
网络
虚拟机
视频
设计模式
项目管理
热门文章
友情链接