大家好,又见面了,我是你们的朋友全栈君。
1.安装maria database
Centos 8 上,默认安装的 mariadb 服务器版本为:MariaDB Community Server 10.3
dnf install mariadb-server 命令进行安装,本人已测试OK
dnf install mariadb-server
也可以使用如下命令来安装,本人未经测试
yum -y install mariadb mariadb-server
2. 启动maria database
安装成功以后,需要手动启动 maria database
systemctl start mariadb
3.查看maria database运行状态
通过命令查看运行数据库的版本:systemctl status mariadb
systemctl status mariadb
运行结果
mariadb.service – MariaDB 10.3 database server Loaded: loaded (/usr/lib/systemd/system/mariadb.service; disabled; vendor preset: disabled) Active: active (running) since Thu 2021-10-07 21:03:47 CST; 4s ago Docs: man:mysqld(8) https://mariadb.com/kb/en/library/systemd/ Process: 28785 ExecStartPost=/usr/libexec/mysql-check-upgrade (code=exited, status=0/SUCCESS) Process: 28629 ExecStartPre=/usr/libexec/mysql-prepare-db-dir mariadb.service (code=exited, status=0/SUCCESS) Process: 28593 ExecStartPre=/usr/libexec/mysql-check-socket (code=exited, status=0/SUCCESS) Main PID: 28754 (mysqld) Status: “Taking your SQL requests now…” Tasks: 30 (limit: 10834) Memory: 87.8M CGroup: /system.slice/mariadb.service └─28754 /usr/libexec/mysqld –basedir=/usr Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ mysql-prepare-db-dir[28629]: See the MariaDB Knowledgebase at http://mariadb.com/kb or the Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ mysql-prepare-db-dir[28629]: MySQL manual for more instructions. Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ mysql-prepare-db-dir[28629]: Please report any problems at http://mariadb.org/jira Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ mysql-prepare-db-dir[28629]: The latest information about MariaDB is available at http://mariadb.org/. Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ mysql-prepare-db-dir[28629]: You can find additional information about the MySQL part at: Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ mysql-prepare-db-dir[28629]: http://dev.mysql.com Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ mysql-prepare-db-dir[28629]: Consider joining MariaDB’s strong and vibrant community: Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ mysql-prepare-db-dir[28629]: https://mariadb.org/get-involved/ Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ mysqld[28754]: 2021-10-07 21:03:47 0 [Note] /usr/libexec/mysqld (mysqld 10.3.28-MariaDB) starting as process 28754 … Oct 07 21:03:47 iZuf648xlh7jh935ertehqZ systemd[1]: Started MariaDB 10.3 database server.
4 配置(初始化)mariadb
4.1 首先是设置密码,会提示先输入密码(一定记住密码)
Enter current password for root (enter for none):<– 初次运行直接回车
4.2 设置密码
Set root password? [Y/n] <– 是否设置root用户密码,输入y并回车或直接回车
New password: <– 输入root用户的密码
Re-enter new password: <– 再输入一次设置的root密码
4.3 其他配置
Remove anonymous users? [Y/n] <– 是否删除匿名用户,回车
Disallow root login remotely? [Y/n] <–是否禁止root远程登录,回车(如果生产环境建议不开放root远程登录,危险性高),
Remove test database and access to it? [Y/n] <– 是否删除test数据库,回车
Reload privilege tables now? [Y/n] <– 是否重新加载权限表,回车
5 登录MariaDB
用如下命令测试一下,如果能登录数据库,说明全部安装和配置成功
mysql -u root -p
6 关闭mariadb
关闭命令如下命令
systemctl stop mariadb
数据库日常管理
前提条件
用管理员帐号(root)登录以后,不要区换数据库,直接命令提示符下面执行
mysql -u root -p
1 创建用户
语法:CREATE USER ‘username’@’host’ IDENTIFIED BY ‘password’;
说明:
- username:你将创建的指定用户名
- host:指定该用户在哪个主机上可以登陆。如果是本地用户可用localhost,如果想让该用户可以从任意远程主机登陆,可以使用通配符
%。
- password:该用户的登陆密码,密码可以为空,如果为空则该用户可以不需要密码登陆服务器
参照列子:
CREATE USER 'dog'@'localhost' IDENTIFIED BY '123456';
CREATE USER 'pig'@'192.168.1.101_' IDENDIFIED BY '123456';
CREATE USER 'pig'@'%' IDENTIFIED BY '123456';
CREATE USER 'pig'@'%' IDENTIFIED BY '';
CREATE USER 'pig'@'%';
2 用户权限设定
GRANT命令说明:
(1)ALL PRIVILEGES
表示所有权限,也可以使用SELECT、UPDATE等权限。
(2)ON
用来指定权限针对哪些库和表。
(3)*.*
中前面的号用来指定数据库名,后面的号用来指定表名。
(4)TO
表示将权限赋予某个用户。
(5)@
前面表示用户,@
后面接限制的主机,可以是IP、IP段、域名以及%,%表示任何地方。
(6)IDENTIFIED BY
指定用户的登录密码。
(7)WITH GRANT OPTION
这个选项表示该用户可以将自己拥有的权限授权给别人。
注意:
在创建操作用户的时候不指定WITH GRANT OPTION
选项会导致该用户不能使用GRANT
命令创建用户或者给其它用户授权。
每次更新权限后记得刷新权限FLUSH PRIVILEGES
;
备注:
使用GRANT重复给用户添加权限,权限叠加。
如先给用户添加一个SELECT权限,然后又给用户添加一个UPDATE权限,那么该用户就同时拥有了SELECT和UPDATE权限。
如下命令 分配用户所有权限
GRANT ALL PRIVILEGES ON *.* TO 'userid'@'%' IDENTIFIED BY 'passowrd' WITH GRANT OPTION;
2.1 单个数据库授权
MariaDB [(none)]> GRANT ALL PRIVILEGES ON mysql.* TO 'wang6'@'%' IDENTIFIED BY '123' WITH GRANT OPTION; Query OK, 0 rows affected (0.000 sec) MariaDB [(none)]> SELECT user, host, authentication_string FROM mysql.user;
3 查询用户
select * from mysql.user;
4、收回权限、删除用户
4.1、收回权限
REVOKE [权限] ON [库.表] FROM [用户名]@[IP];
MariaDB [(none)]> REVOKE SELECT(host, user) ON mysql.user FROM 'userid'@'%'; Query OK, 0 rows affected (0.000 sec)
4.2、删除用户
DROP USER [用户名]@[IP];
MariaDB [(none)]> DROP USER IF EXISTS 'userid'@'%'; Query OK, 0 rows affected (0.000 sec)
参考数据库管理教程
https://segmentfault.com/a/1190000040671636?utm_source=sf-similar-article
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/138895.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...