个人笔记
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
751 B

3 years ago
# 常用命令
| 命令 | 作用 |
| :---------------------------------------------- | :---------------------------- |
| show VARIABLES like '%max_allowed_packet%'; | 查看mysql可接收最大数据包大小 |
| set global max_allowed_packet = 1024*1024*1024; | 设置mysql可接收最大数据包大小 |
| show global variables like 'wait_timeout'; | 查看mysql连接超时时间 |
| set global wait_timeout=604800; | 设置mysql连接超时时间 |
| mysql -h host -P port -u user -p password | 链接mysql |
| | |
# 常见问题