久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<small id='nz6sU'></small><noframes id='nz6sU'>

    <legend id='nz6sU'><style id='nz6sU'><dir id='nz6sU'><q id='nz6sU'></q></dir></style></legend>
    <tfoot id='nz6sU'></tfoot>
  • <i id='nz6sU'><tr id='nz6sU'><dt id='nz6sU'><q id='nz6sU'><span id='nz6sU'><b id='nz6sU'><form id='nz6sU'><ins id='nz6sU'></ins><ul id='nz6sU'></ul><sub id='nz6sU'></sub></form><legend id='nz6sU'></legend><bdo id='nz6sU'><pre id='nz6sU'><center id='nz6sU'></center></pre></bdo></b><th id='nz6sU'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='nz6sU'><tfoot id='nz6sU'></tfoot><dl id='nz6sU'><fieldset id='nz6sU'></fieldset></dl></div>

      <bdo id='nz6sU'></bdo><ul id='nz6sU'></ul>

        啟用遠程 MySQL 連接:ERROR 1045 (28000): Access denied f

        Enable remote MySQL connection: ERROR 1045 (28000): Access denied for user(啟用遠程 MySQL 連接:ERROR 1045 (28000): Access denied for user)

        1. <legend id='RmoKf'><style id='RmoKf'><dir id='RmoKf'><q id='RmoKf'></q></dir></style></legend>

        2. <small id='RmoKf'></small><noframes id='RmoKf'>

          <tfoot id='RmoKf'></tfoot>
          <i id='RmoKf'><tr id='RmoKf'><dt id='RmoKf'><q id='RmoKf'><span id='RmoKf'><b id='RmoKf'><form id='RmoKf'><ins id='RmoKf'></ins><ul id='RmoKf'></ul><sub id='RmoKf'></sub></form><legend id='RmoKf'></legend><bdo id='RmoKf'><pre id='RmoKf'><center id='RmoKf'></center></pre></bdo></b><th id='RmoKf'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='RmoKf'><tfoot id='RmoKf'></tfoot><dl id='RmoKf'><fieldset id='RmoKf'></fieldset></dl></div>

                <tbody id='RmoKf'></tbody>
                • <bdo id='RmoKf'></bdo><ul id='RmoKf'></ul>

                  本文介紹了啟用遠程 MySQL 連接:ERROR 1045 (28000): Access denied for user的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  在 Windows XP 上運行的 MySQL 5.1.31.

                  MySQL 5.1.31 running on Windows XP.

                  本地 MySQL 服務器 (192.168.233.142) 我可以以 root 身份連接,如下所示:

                  From the local MySQL server (192.168.233.142) I can connect as root as follows:

                  >mysql --host=192.168.233.142 --user=root --password=redacted
                  

                  遠程機器(192.168.233.163),我可以看到mysql端口是開放的:

                  From a remote machine (192.168.233.163), I can see that the mysql port is open:

                  # telnet 192.168.233.142 3306
                  Trying 192.168.233.142...
                  Connected to 192.168.233.142 (192.168.233.142).
                  

                  但是當我嘗試從 遠程 機器連接到 mysql 時,我收到:

                  But when trying to connect to mysql from the remote machine, I receive:

                  # mysql --host=192.168.233.142 --user=root --password=redacted
                  ERROR 1045 (28000): Access denied for user 'root'@'192.168.233.163' (using password: YES)
                  

                  我在 mysql.user 中只有 2 個條目:

                  I have only 2 entries in mysql.user:

                  Host         User     Password
                  --------------------------------------
                  localhost    root     *blahblahblah
                  %            root     [same as above]
                  

                  我還需要做什么才能啟用遠程訪問?

                  What more do I need to do to enable remote access?

                  編輯

                  正如下面 Paulo 所建議的,我嘗試將 % 的 mysql.user 條目替換為特定于 IP 的條目,因此我的用戶表現(xiàn)在如下所示:

                  As suggested by Paulo below, I tried replacing the mysql.user entry for % with an IP specific entry, so my user table now looks like this:

                  Host             User     Password
                  ------------------------------------------
                  localhost        root     *blahblahblah
                  192.168.233.163  root     [same as above]
                  

                  然后我重新啟動了機器,但問題仍然存在.

                  I then restarted the machine, but the problem persists.

                  推薦答案

                  Paulo 的幫助引導我找到解決方案.它是以下內(nèi)容的組合:

                  Paulo's help lead me to the solution. It was a combination of the following:

                  • 密碼包含美元符號
                  • 我試圖從 Linux shell 進行連接

                  bash shell 將美元符號視為 擴展 到環(huán)境變量,所以我們需要用反斜杠轉(zhuǎn)義它.順便說一下,如果美元符號是密碼的最后一個字符,我們不必這樣做.

                  The bash shell treats the dollar sign as a special character for expansion to an environment variable, so we need to escape it with a backslash. Incidentally, we don't have to do this in the case where the dollar sign is the final character of the password.

                  舉個例子,如果你的密碼是pas$word",從Linux bash我們必須按如下方式連接:

                  As an example, if your password is "pas$word", from Linux bash we must connect as follows:

                  # mysql --host=192.168.233.142 --user=root --password=pas\$word
                  

                  這篇關(guān)于啟用遠程 MySQL 連接:ERROR 1045 (28000): Access denied for user的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  How to use windowing functions efficiently to decide next N number of rows based on N number of previous values(如何有效地使用窗口函數(shù)根據(jù) N 個先前值來決定接下來的 N 個行)
                  reuse the result of a select expression in the quot;GROUP BYquot; clause?(在“GROUP BY中重用選擇表達式的結(jié)果;條款?)
                  Does ignore option of Pyspark DataFrameWriter jdbc function ignore entire transaction or just offending rows?(Pyspark DataFrameWriter jdbc 函數(shù)的 ignore 選項是忽略整個事務還是只是有問題的行?) - IT屋-程序員軟件開發(fā)技
                  Error while using INSERT INTO table ON DUPLICATE KEY, using a for loop array(使用 INSERT INTO table ON DUPLICATE KEY 時出錯,使用 for 循環(huán)數(shù)組)
                  pyspark mysql jdbc load An error occurred while calling o23.load No suitable driver(pyspark mysql jdbc load 調(diào)用 o23.load 時發(fā)生錯誤 沒有合適的驅(qū)動程序)
                  How to integrate Apache Spark with MySQL for reading database tables as a spark dataframe?(如何將 Apache Spark 與 MySQL 集成以將數(shù)據(jù)庫表作為 Spark 數(shù)據(jù)幀讀取?)
                    <i id='RKmhf'><tr id='RKmhf'><dt id='RKmhf'><q id='RKmhf'><span id='RKmhf'><b id='RKmhf'><form id='RKmhf'><ins id='RKmhf'></ins><ul id='RKmhf'></ul><sub id='RKmhf'></sub></form><legend id='RKmhf'></legend><bdo id='RKmhf'><pre id='RKmhf'><center id='RKmhf'></center></pre></bdo></b><th id='RKmhf'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='RKmhf'><tfoot id='RKmhf'></tfoot><dl id='RKmhf'><fieldset id='RKmhf'></fieldset></dl></div>

                    <small id='RKmhf'></small><noframes id='RKmhf'>

                      <bdo id='RKmhf'></bdo><ul id='RKmhf'></ul>
                        <tbody id='RKmhf'></tbody>
                      <legend id='RKmhf'><style id='RKmhf'><dir id='RKmhf'><q id='RKmhf'></q></dir></style></legend>
                      <tfoot id='RKmhf'></tfoot>

                          • 主站蜘蛛池模板: 99精品久久久久久中文字幕 | 欧美11一13sex性hd | 亚洲一二三区精品 | 一区二区三区在线看 | 午夜在线免费观看 | 免费观看日韩av | 色香蕉在线 | 男女在线网站 | 婷婷丁香综合网 | 日本又色又爽又黄的大片 | 激情婷婷成人 | 中文字幕成人av | 日韩中文字幕视频 | 成人一区二区三区 | 91精品观看| 国产一区在线看 | 欧美激情精品久久久久 | 日韩福利在线 | 国产精品久久久久久一区二区三区 | 91深夜福利视频 | 91亚洲一区| 国产欧美一区二区三区在线看 | 在线观看黄色大片 | 中文二区 | 黄网站色大毛片 | 国产99久久精品一区二区300 | 日韩在线播放视频 | 呦呦在线视频 | 久久精品一级 | 欧美一级在线免费观看 | 国产成人短视频在线观看 | 日韩成人精品 | 中文字幕在线观看第一页 | 自拍偷拍一区二区三区 | 精品国产乱码久久久久久88av | 91精品国产一区二区三区蜜臀 | 天堂一区二区三区 | 伊人性伊人情综合网 | 成人小视频在线观看 | 日韩精品免费一区 | 国产精品视频二区三区 |