centos 7 查询mysql 安装 运行位置

时间:2022-09-21 19:46:25

whereis mysql  安装路径

which mysql 运行文件路径 

 

centos 7 查询mysql 安装 运行位置

 

 

找到 /usr/bin/mysql 路径 mysql为执行文件,不是文件夹

 登陆mysql

mysql -u 用户名 -p 回车

输入密码

centos 7 查询mysql 安装 运行位置

 

查询 数据库版本

select version();

centos 7 查询mysql 安装 运行位置

 

查询当前数据库队列

 show processlist;

centos 7 查询mysql 安装 运行位置

 

远程访问权限设置

grant all privileges on *.* to 'zlhadmin'@'%' identified by 'cai201801db' with grant option;

 

centos 7 查询mysql 安装 运行位置

 

 

grant all privileges on *.* to 'zlhadmin'@'localhost' identified by 'cai201801db' with grant option;

 

换root用户身份登陆查询

centos 7 查询mysql 安装 运行位置

 

查询某个用户的权限

centos 7 查询mysql 安装 运行位置

 这里是root查询结果

centos 7 查询mysql 安装 运行位置

 

这里用root用户身份创建远程权限

用户zlhadmin在host 有一个localhost 和 % 即可

centos 7 查询mysql 安装 运行位置

 

参考资料:

https://blog.csdn.net/zzq900503/article/details/15336583

 

查询所有数据库 

centos 7 查询mysql 安装 运行位置

明明应该这样的 mysql数据库没了。。。。

centos 7 查询mysql 安装 运行位置

 

 

检查防火墙是否开启

 centos7 明明应该是firewall

firewall-cmd --state;

centos 7 查询mysql 安装 运行位置

 

还有人用iptables;

centos 7 查询mysql 安装 运行位置

 

直接修改mysql表中的数据类型

 先查看下表数据结构 desc 表名;

centos 7 查询mysql 安装 运行位置

 修改数据表中字段类型

alter table fa_admin_log modify column content MEDIUMTEXT;

 

 centos 7 查询mysql 安装 运行位置

 

centos 7 查询mysql 安装 运行位置