MYSQL进入文件“访问被拒绝" -但我的用户拥有“全部"访问..并且文件夹是CHMOD 777 [英] MYSQL into outfile "access denied" - but my user has "ALL" access.. and the folder is CHMOD 777

查看:89
本文介绍了MYSQL进入文件“访问被拒绝" -但我的用户拥有“全部"访问..并且文件夹是CHMOD 777的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么想法吗?

SELECT * INTO OUTFILE '/home/myacnt/docs/mysqlCSVtest.csv'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '*'
LINES TERMINATED BY '\n'
FROM tbl_property 
WHERE managerGroupID = {$managerGroupID}

错误:

Access denied for user 'asdfsdf'@'localhost' (using password: YES)

推荐答案

尝试执行此SQL命令:

Try executing this SQL command:

> grant all privileges 
  on YOUR_DATABASE.* 
  to 'asdfsdf'@'localhost' 
  identified by 'your_password';
> flush privileges; 

似乎您在连接数据库而不是写到您提到的文件夹时遇到问题.

It seems that you are having issues with connecting to the database and not writing to the folder you’re mentioning.

此外,请确保已将FILE授予用户'asdfsdf'@'localhost'.

Also, make sure you have granted FILE to user 'asdfsdf'@'localhost'.

> GRANT FILE ON *.* TO 'asdfsdf'@'localhost';

这篇关于MYSQL进入文件“访问被拒绝" -但我的用户拥有“全部"访问..并且文件夹是CHMOD 777的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆