【Mysql】into outfile報錯的問題
明明有select 許可權卻報錯
mysql> select * from server into outfile '/tmp/tt.txt';
ERROR 1045 (28000): Access denied for user 'chenliang'@'%' (using password: YES)
百度後需要給file許可權
mysql> grant file on *.* to chenliang;
Query OK, 0 rows affected (0.00 sec)
再次導還是報錯
mysql> select * from server into outfile '/tmp/tt.txt';
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
--這次錯誤不一樣了,這個錯誤是一個引數導致的
配置檔案加入後重啟
secure_file_priv=''
匯出成功
mysql> select * from server into outfile '/tmp/tt.txt';
Query OK, 27 rows affected (0.00 sec)
這個引數我以前在5.6.24版本都沒調整過,可能預設值就是‘’,高版本預設值改成null,所以一定要注意
mysql> select * from server into outfile '/tmp/tt.txt';
ERROR 1045 (28000): Access denied for user 'chenliang'@'%' (using password: YES)
百度後需要給file許可權
mysql> grant file on *.* to chenliang;
Query OK, 0 rows affected (0.00 sec)
再次導還是報錯
mysql> select * from server into outfile '/tmp/tt.txt';
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
--這次錯誤不一樣了,這個錯誤是一個引數導致的
配置檔案加入後重啟
secure_file_priv=''
匯出成功
mysql> select * from server into outfile '/tmp/tt.txt';
Query OK, 27 rows affected (0.00 sec)
這個引數我以前在5.6.24版本都沒調整過,可能預設值就是‘’,高版本預設值改成null,所以一定要注意
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29096438/viewspace-2140122/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- mysql checksum 報錯問題。MySql
- select into outfile問題一則
- MYSQL timestamp NOT NULL插入NULL的報錯問題MySqlNull
- MySql5.7及以上 ORDER BY 報錯問題MySql
- mysql 報錯json字串 中文漢字轉義的問題MySqlJSON字串
- Laravel對不同版本的MySQL字元編碼報錯問題LaravelMySql字元
- mysql8.0 部分sql語法報錯問題MySql
- mysql的時區錯誤問題MySql
- 【MySQL】Novicat 連線mysql 報錯1251的問題處理,Novicat12 破解方法MySql
- 修改MySQL資料型別報 Changing columns for table XXX 錯的問題MySql資料型別
- RHCE常見的報錯問題
- composer require 報錯問題UI
- httprunner 的安裝報錯問題,rtHTTP
- RedisTemplate呼叫increment報錯問題RedisREM
- mybatis plus saveBatch報錯問題MyBatis
- go mod init報錯問題Go
- 重新restore了mysql到另一臺機器上後mysql 編碼問題報錯RESTMySql
- 解決 Inkscape 報錯 Duplicate 問題
- 反序列 unserialize(): Error 報錯問題Error
- selenium_未報錯但是閃退的問題
- org.thymeleaf.exceptions.TemplateInputException:模板錯誤報錯問題Exception
- 解決eslint空格報錯等問題EsLint
- @AllArgsConstructor與@Value共同使用引發的報錯問題Struct
- 解決vue使用Sass時候的報錯問題Vue
- Lumen 報錯提示 例項不了 Response 類的問題
- Delta Magisk root後解決adb的報錯問題
- 解決MMM啟動監控報錯的問題
- MySql中SUM函式計算錯誤問題MySql函式
- MySQL問題處理——1040錯誤Too many connectionsMySql
- mysql 遇到的問題MySql
- Server returns invalid timezone. Need to set ‘serverTimezone‘ property. Idea連線mysql報錯問題ServerIdeaMySql
- Windows下Mysql 5.7.21(Zip)的安裝配置以及初始密碼報錯的問題簡單總結WindowsMySql密碼
- 安裝vue/cli報錯問題解決Vue
- matplotlib中文報錯問題及解決方案
- 安卓so包常見報錯問題安卓
- iOS FFmpeg XCode編譯報錯問題 AVMediaTypeiOSXCode編譯
- LightDB Canopy 常見報錯問題分析(一)
- Go問題彙總 | 設定GOPROXY報錯Go
- npm install 時 node-sass 報錯問題NPM