Mysql添加secure_file_prive值
前言
secure_file_prive是mysql可将查询结果导出为文件的必备属性,也是将mysql提权执行插件的必备属性,在MySQL5.1及以上默认是关闭的
关于各个情况下的作用 默认为null
secure_file_prive=null ––限制mysqld 不允许导入导出
secure_file_priv=/path/ --限制mysqld的导入导出只能发生在默认的/path/目录下
secure_file_priv= --不对mysqld 的导入 导出做限制
查看当前值
show variables like '%secure%';
对其进行设置和更改(重启之后记得再使用sql语句查看一下哦)
找到mysql安装目录下的my.ini文件,使用记事本打开,找到[mysqld]选项,向其添加secure_file_priv= (默认为不存在)添加完成之后重启mysql服务器即可
secure_file_priv=