1.配置官方的mariadb的yum源,手动创建 mariadb.repo仓库文件
然后写入如下内容
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.1/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
2.根据 *** 作系统的不同版本,centos采用yum安装指令,ubantu采用apt-get指令安装:
从官网安装:apt-get install MariaDB-server MariaDB-clIEnt -y
如果中途断网,或者安装失败,可以先移除配置文件:rm -rf /etc/repos.d/Mariadb.repo
然后清空缓存:apt-get clean all
3.安装完成后,启动mariadb服务端:
systemctl start/stop/restart/stats mariadb
systemctl enable mariadb 开机自启动
.MysqL初始化
MysqL_secure_installation 这条命令可以初始化MysqL,删除匿名用户,设置root密码等等....
设置MysqL的中文编码支持,修改/etc/my.cnf
4.vi /etc/my.cnf
在[MysqLd]中添加参数,使得mariadb服务端支持中文
[MysqLd]
character-set-server=utf8
collation-server=utf8_general_ci
2.重启mariadb服务,读取my.cnf新配置
systemctl restart mariadb
3.登录数据库,查看字符编码
MysqL -uroot -p
输入 \s 查看编码
********************************************************************
MysqL常用命令
desc 查看表结构
create database 数据库名
create table 表名
show create database 库名 查看如何创建db的
show create table 表名; 查看如何创建table结构的
#修改MysqL的密码
set password = PASSWORD(‘redhat‘);
#创建MysqL的普通用户,默认权限非常低
create user [email protected]‘%‘ IDentifIEd by ‘yiningzhenshuai‘;
#查询MysqL数据库中的用户信息
use MysqL;
select host,user,password from user;
***********************************************************************************************
给用户添加权限命令
grant all privileges on *.* to 账户@主机名 对所有库和所有表授权所有权限
grant all privileges on *.* to [email protected]‘%‘; 给yining用户授予所有权限
flush privileges; 刷新授权表
授予远程登录的权限命令 (root不能远程登录的问题??)
grant all privileges on *.* to [email protected]‘%‘; 给yining用户授予所有权限
grant all privileges on *.* to [email protected]‘%‘ IDentifIEd by ‘redhat‘; #给与root权限授予远程登录的命令
此时可以在windows登录linux的数据库
MysqL -uyining -p -h 服务器的地址 连接服务器的MysqL
总结以上是内存溢出为你收集整理的linux安装mysql的分支mariadb全部内容,希望文章能够帮你解决linux安装mysql的分支mariadb所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)