解决
在日常使用mysqldump进行数据备份时,会出现如下的问题:
1 | mysqldump -h *** -u root -p --skip-lock-tables mig_test > /var/log/mysql/bak.sql |
经查阅相关资料得知,需要添加--column-statistics=0
即可。我猜测的原因可能是备份数据时候在读取相关表结构没有相关权限,所以报此错误。通过添加--column-statistics=0
进行关闭,以免报错。
A wanderer capable of grasping the beauty of the grass, with a heart full of ancient charm, and a fondness for playful wit. Those who understand my words are knowledgeable individuals; those who decipher my code truly comprehend the essence. I am a wandering code swordsman, carrying my skills and riding freely through the digital world.
在日常使用mysqldump进行数据备份时,会出现如下的问题:
1 | mysqldump -h *** -u root -p --skip-lock-tables mig_test > /var/log/mysql/bak.sql |
经查阅相关资料得知,需要添加--column-statistics=0
即可。我猜测的原因可能是备份数据时候在读取相关表结构没有相关权限,所以报此错误。通过添加--column-statistics=0
进行关闭,以免报错。
本地需要安装OpenSS扩展
1 | ssh-keygen -t rsa -C "your_email@example.com" |
your_email@example.com
是你自己的邮箱域名,该命令一路回车,生成一对rsa密钥并将电子邮件地址设置为your_email@example.com
,你git仓库使用的邮箱与此对应。
1 | git config --global core.sshCommand "openssh-client -o StrictHostKeyChecking=no -i /path/to/your/key.pem" |
语言实现类似php的array数据类型!