linux Mysql 一些常用命令
mysql如何通过命令行远程连接数据库
说明:mysql -h ip地址 -P 端口号 -u 用户名 -p 密码
mysql -h127.0.0.1 -P3306 -uroot -ppsw
linux 命令查看数据库用户列表
SELECT User, Host, Password, password_expired FROM mysql.user;
解决mysql函数group_concat长度限制
GROUP_CONCAT有个最大长度的限制,超过最大长度就会被截断掉,你可以通过下面的语句查看当前数据库允许的最大长度:
SELECT @@global.group_concat_max_len; show variables like "group_concat_max_len";
直接能够起作用,但是有弊端,服务器重新启动后,会变回原来的长度。
SET GLOBAL group_concat_max_len = 102400; SET SESSION group_concat_max_len = 102400;
在MySQL配置文件中my.conf或my.ini中添加配置,可以保证服务器重启长度不会变化,但是需要注意,配置完成后需要重新启动服务器才能生效
#[mysqld] group_concat_max_len=102400
linux下mysql服务器的开启、关闭、重启和查看状态
service mysql start // 启动服务器 service mysql stop // 停止服务器 service mysql restart // 重启服务器 systemctl status mysqld.service // 查看服务器启动状态
创建用户并赋予权限
mysql> CREATE USER 'Kevin'@'localhost' IDENTIFIED BY '123456'; // 创建一个用户名为Kevin密码为123456的用户 mysql> SELECT host, user, password FROM mysql.user WHERE user='Kevin'; // 验证账号是否创建成功 mysql> GRANT ALL ON *.* TO 'Kevin'@'localhost'; // 将所有权限全部赋予Kevin mysql> FLUSH PRIVILEGES; // 刷新系统权限表
linux下mysql的权限设计总结
1,进入mysql,终端中输入 mysql -u 用户名 -p 。enter键后,提示输入密码。
2,执行grant all privileges on xxxdb.* to usertest@"%" identified by "passdtest"; 增加用户usertest,密码为passdtest。其对数据库xxxdb有所有权限。可以外网访问。
3,show databases; 显示此用户下的数据库
4,select host,user from mysql.user; 查看用户的权限
1、创建新用户
通过root用户登录之后创建
>> grant all privileges on *.* to testuser@localhost identified by "123456" ; // 创建新用户,用户名为testuser,密码为123456 ;
>> grant all privileges on *.* to testuser@localhost identified by "123456" ; // 设置用户testuser,可以在本地访问mysql
>> grant all privileges on *.* to testuser@"%" identified by "123456" ; // 设置用户testuser,可以在远程访问mysql
>> flush privileges ; // mysql 新设置用户或更改密码后需用flush privileges刷新MySQL的系统权限相关表,否则会出现拒绝访问,还有一种方法,就是重新启动mysql服务器,来使新设置生效
2、设置用户访问数据库权限
>> grant all privileges on test_db.* to 'testuser'@'localhost' identified by "123456" ; // 设置用户testuser,只能访问数据库test_db,其他数据库均不能访问 ;
>> grant all privileges on *.* to testuser@localhost identified by "123456" ; // 设置用户testuser,可以访问mysql上的所有数据库 ;
>> grant all privileges on test_db.user_infor to testuser@localhost identified by "123456" ; // 设置用户testuser,只能访问数据库test_db的表user_infor,数据库中的其他表均不能访问 ;
3、设置用户操作权限
>> grant all privileges on *.* to testuser@localhost identified by "123456" WITH GRANT OPTION ; //设置用户testuser,拥有所有的操作权限,也就是管理员 ;
>> grant select on *.* to testuser@localhost identified by "123456" WITH GRANT OPTION ; //设置用户testuser,只拥有【查询】操作权限 ;
>> grant select,insert on *.* to testuser@localhost identified by "123456" ; //设置用户testuser,只拥有【查询\插入】操作权限 ;
>> grant select,insert,update,delete on *.* to testuser@localhost identified by "123456" ; //设置用户testuser,只拥有【查询\插入】操作权限 ;
>> REVOKE select,insert ON what FROM testuser //取消用户testuser的【查询\插入】操作权限 ;
4、设置用户远程访问权限
>> grant all privileges on *.* to testuser@“192.168.1.100” identified by "123456" ; //设置用户testuser,只能在客户端IP为192.168.1.100上才能远程访问mysql ;
5、关于root用户的访问设置
设置所有用户可以远程访问mysql,修改my.cnf配置文件,将bind-address = 127.0.0.1前面加“#”注释掉,这样就可以允许其他机器远程访问本机mysql了;
>> grant all privileges on *.* to root@"%" identified by "123456" ; // 设置用户root,可以在远程访问mysql
>> select host,user from user; //查询mysql中所有用户权限
关闭root用户远程访问权限
>> delete from user where user="root" and host="%" ; //禁止root用户在远程机器上访问mysql
>> flush privileges ; //修改权限之后,刷新MySQL的系统权限相关表方可生效