4

私はワンプサーバーをインストールしましたが、私は完全に動作していましたが、今はphpMyAdmin を開こうとして いますが、サーバーはこのエラーを表示します

**MySQL が言ったエラー: ドキュメンテーション

2002 - ターゲット マシンがアクティブに拒否したため、接続できませんでした。

サーバーが応答していません (またはローカル サーバーのソケットが正しく構成されていません)。

mysql.log

130816 10:30:30 [Note] Plugin 'FEDERATED' is disabled.
130816 10:30:30 InnoDB: The InnoDB memory heap is disabled
130816 10:30:30 InnoDB: Mutexes and rw_locks use Windows interlocked functions
130816 10:30:30 InnoDB: Compressed tables use zlib 1.2.3
130816 10:30:30 InnoDB: Initializing buffer pool, size = 128.0M
130816 10:30:30 InnoDB: Completed initialization of buffer pool
130816 10:30:30 InnoDB: highest supported file format is Barracuda.
130816 10:30:32  InnoDB: Waiting for the background threads to start
130816 10:30:33 InnoDB: 1.1.8 started; log sequence number 6780464
130816 10:30:34 [Note] Server hostname (bind-address): '(null)'; port: 3306
130816 10:30:34 [Note]   - '(null)' resolves to '::';
130816 10:30:34 [Note]   - '(null)' resolves to '0.0.0.0';
130816 10:30:34 [Note] Server socket created on IP: '0.0.0.0'.
130816 10:30:35 [Note] Event Scheduler: Loaded 0 events
130816 10:30:35 [Note] wampmysqld: ready for connections.
Version: '5.5.24-log'  socket: ''  port: 3306  MySQL Community Server (GPL)
130816 10:31:48 [Note] wampmysqld: Normal shutdown

130816 10:31:48 [Note] Event Scheduler: Purging the queue. 0 events
130816 10:31:48  InnoDB: Starting shutdown...
130816 10:31:50  InnoDB: Shutdown completed; log sequence number 6780474
130816 10:31:50 [Note] wampmysqld: Shutdown complete

130816 10:31:51 [Note] Plugin 'FEDERATED' is disabled.
130816 10:31:51 InnoDB: The InnoDB memory heap is disabled
130816 10:31:51 InnoDB: Mutexes and rw_locks use Windows interlocked functions
130816 10:31:51 InnoDB: Compressed tables use zlib 1.2.3
130816 10:31:51 InnoDB: Initializing buffer pool, size = 128.0M
130816 10:31:51 InnoDB: Completed initialization of buffer pool
130816 10:31:51 InnoDB: highest supported file format is Barracuda.
130816 10:31:52  InnoDB: Waiting for the background threads to start
130816 10:31:53 InnoDB: 1.1.8 started; log sequence number 6780474
130816 10:31:53 [Note] Server hostname (bind-address): '(null)'; port: 3306
130816 10:31:53 [Note]   - '(null)' resolves to '::';
130816 10:31:53 [Note]   - '(null)' resolves to '0.0.0.0';
130816 10:31:53 [Note] Server socket created on IP: '0.0.0.0'.
130816 10:31:53 [Note] Event Scheduler: Loaded 0 events
130816 10:31:53 [Note] wampmysqld: ready for connections.
Version: '5.5.24-log'  socket: ''  port: 3306  MySQL Community Server (GPL)
4

7 に答える 7

6

あなたがする必要があるのは、

  • 最初に wampserver を終了します
  • 次に、「C:\wamp\bin\mysql\mysql5.6.17\data」に移動します
  • 注: フォルダーを削除しないでください。その後、フォルダー以外のすべてのファイルを削除することが重要です。
  • その後、「C:\wamp\bin\mysql\mysql5.6.17\data」を閉じないでください
  • wampserver を再度開き、wampserver トレイが緑色に変わるまで待ちます

以上です!

于 2015-08-15T05:32:55.113 に答える
0

Well, I had the same issue, I searched on google for any better solution but i found nothing helpful. So, what I did, is: Unistall Wamp, delete the wamp folder from C and reinstalled wamp again. I KNOW is not the best solution but it's still the one that worked for me.

于 2014-11-14T08:31:50.403 に答える
0

wampmysqldサービスが状態でブロックされているときに、この問題が発生しましたstopping。同じ問題が再び発生した場合は、次のことを試すことができます。

  1. ワンプサーバーをシャットダウンする
  2. [開始] をクリックします。
  3. [検索の開始] ボックスに と入力し、 + +cmdを押します。(コンソールを管理者として実行)CTRLSHIFTENTER
  4. と入力Taskkill /F /FI "SERVICES eq wampmysqldしてからENTER.
  5. すべてが期待どおりに機能する場合は、次のように表示されますSUCCESS: The process with PID XXXX has been terminated.
  6. wamp サーバーを再起動すると、アイコンが再び緑色になります。

これは私にとってはうまくいきました。

于 2015-04-21T10:59:52.863 に答える