Centos7-mysql執行報錯ERROR1820(HY000):YoumustresetyourpasswordusingALTERUSERstatementbeforeexecutingthisstatement.
剛安裝的mysql,輸入任何內容都報
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
就是要重新設定一下密碼的意思
SET PASSWORD = PASSWORD(`yourpwd`);
繼續報錯:ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
密碼太簡單了。??? 還簡單? 乾脆修改密碼策略。
set global validate_password_policy=0;
set global validate_password_length=1;
SET PASSWORD = PASSWORD(`yourpwd`);
ok!
相關文章
- 執行用例報錯
- yii執行phpunit時報錯PHP
- idea上執行scala報錯Idea
- 執行web專案報錯Web
- sh指令碼執行報錯指令碼
- selenium的那些事--執行報錯
- sqlplus執行sql檔案報錯SQL
- MacOS 裡執行 sed 命令報錯Mac
- mysql執行報錯mysql.sockMySql
- svelte 執行報錯 getaddrinfo ENOTFOUND localhostlocalhost
- MySQL 報錯 ERROR 1290 (HY000): running with the --secure-file-privMySqlError
- [vue]執行vue --version報錯:-4054 ENOSYSVue
- 在KYLIN中執行查詢報錯
- laradock 執行報錯 Service 'workspace' failed to build:AIUI
- Laravel 中執行 PHP artisan migrate 報錯LaravelPHP
- 出現“YoumustresetyourpasswordusingALTERUSERstatementbeforeexecutingthisstatement.”
- crontab異常:shell下可以執行命令,執行crontab卻報錯
- 【MySQL】ERROR 1290 (HY000): --secure-file-priv--匯出報錯MySqlError
- MySQL報錯ERROR 2013 (HY000): Lost connection to MySQL server during queryMySqlErrorServer
- Python 執行報錯 PermissionError: [Errno 13] Permission denied: '***.***'PythonError
- httprunner 執行報錯,有人遇到過麼?何解HTTP
- 一些執行maven命令的報錯Maven
- [20220422]為什麼執行不報錯.txt
- 執行npm run dev 後報錯 Mix: not foundNPMdev
- AS執行main()方法報錯:SourceSet with name ‘main‘ not foundAI
- 執行composer require laravel/ui:^3.0 --dev報錯UILaraveldev
- mysql 5.6.25報錯ERROR 1372 (HY000): Password hash 的一點思考MySqlError
- 執行composer install報錯:Symfony\Component\Process\Exception\ProcessTimedOutExceptionException
- idea執行專案報錯找不到jar包IdeaJAR
- MySQL 執行 Online DDL 操作報錯空間不足?MySql
- mac中python manage.py migrate執行報錯MacPython
- arm64系統執行 electron AppImage 報錯APP
- 執行專案報錯Cannot read property 'styles' of undefinedUndefined
- windows 2003 64位系統php執行報錯WindowsPHP
- 誰遇到過執行 monkey 的時候報 filenotfound 的報錯
- qt編譯報錯 無法執行“rc.exe”QT編譯
- DBeaver同時執行多條insert into報錯處理
- Laravel Mix - 執行 NPM install 報錯解決辦法LaravelNPM