MYSQL导入数据出现:The MySQL server is running with the --secure-file-priv option so it cannot execute this statement [1]分析原因 其实原因很简单,因为在安装MySQL的时候限制了导入与导出的目录权限.只允许在规定的目录下才能导入. 可以通过以下命令查看secure-file-priv当前的值是什么 SHOW VARIABLES LIKE "secure_file_priv"; 结…
问题 在proto 中引入了一些其他 proto 文件的情况下会出现was not found or had errors.问题 在使用Kratos框架时proto文件引入import "google/api/annotations.proto":生成 client 源码时会报错 因其找不到google/api/annotations.proto此文件而无法编译 解决方案 将缺失的文件引入到项目中然后根据自己项目的目录导入文件即可 缺失文件下载 此外还有使用命令的引入方案…