180826-mysql配置修改小记

文章目录
  1. 1. 端口号修改
  2. 2. 密码修改
  3. II. 其他
    1. 1. 一灰灰Blog: https://liuyueyi.github.io/hexblog
    2. 2. 声明
    3. 3. 扫描关注

本篇将介绍mysql配置常用修改姿势

1. 端口号修改

默认的端口号为3306,如果需要修改端口号,则找到my.cnf文件,新加一个配置即可:

1
2
3
4
5
6
7
vim /etc/my.cnf

## 找到指定的位置,修改端口号
[mysqld]
port=3305
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock

服务重启

1
service mysqld restart

2. 密码修改

使用set password

格式:

1
mysql> set password for 用户名@localhost = password('新密码');

例子:

1
mysql> set password for root@localhost = password('123');

update 方式

1
2
3
4
5
mysql> use mysql;  

mysql> update user set password=password('123') where user='root' and host='localhost';

mysql> flush privileges;

添加用户

1
2
alter user 'root'@'localhost' identified by 'test';
create user 'test'@'%' IDENTIFIED BY 'test';

授予权限

1
2
3
# root 方式登录
grant all PRIVILEGES on test.* to 'finbtc'@'%' IDENTIFIED by 'test';
flush privileges;

II. 其他

1. 一灰灰Bloghttps://liuyueyi.github.io/hexblog

一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛

2. 声明

尽信书则不如,已上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现bug或者有更好的建议,欢迎批评指正,不吝感激

3. 扫描关注

一灰灰blog

QrCode

知识星球

goals

# Mysql

评论

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×