Access Denied when opening phpMyAdmin

前端 未结 19 609
野的像风
野的像风 2020-12-09 05:47

What could be the problem of my mysql database server in WAMP.

I can\'t open it. The error says:

MySQL sai         


        
相关标签:
19条回答
  • 2020-12-09 06:05

    This works:

    1. Stop the MySQL service
    2. Open data folder
    3. Remove both ib_logfile0 and ib_logfile1
    4. Restart the service
    0 讨论(0)
  • 2020-12-09 06:06

    Go to your MySQL directory and find mysql-bin.index then clear its content. Everything should work fine after that.

    Source

    0 讨论(0)
  • 2020-12-09 06:07

    i had the same problem and these step worked for me

    1. open services
    2. stop MySQL[version] service
    3. open mysql properties
    4. if you did a manual install of MySQL (ie not using xampp wamp etc.) then you may want to change startup type to automatic
    5. go to the log in tab
    6. select local system account
    7. press ok
    8. start the service again

    MySQL57 properties screenshot

    if you upvote me i can add the photo inline

    0 讨论(0)
  • 2020-12-09 06:09

    when I turned off my McAfee Firewall the problem was fixed

    what I need to change in McAfee settings

    Firewall -> Settings -> Program Permissions -> Apache HTTP Server -> need to be set to Full or Outgoing

    0 讨论(0)
  • 2020-12-09 06:09

    I installed MySQL stand-alone (not using any XAMPP/WAMP stack) and got this problem some time ago. I just ran the following command in windows command prompt:

    C:\>"C:\mysql\bin\mysqld" --console
    

    where "C:\mysql\" is the installation directory (adjust the path according to your own case). The

      --console
    

    displays the process for debugging purposes.

    After startup, you should see something like:

    C:\mysql\bin\mysqld: ready for connections
    Version: '5.7.10'  socket: ''  port: 3306
    

    For moore, see Starting MySQL Server

    0 讨论(0)
  • 2020-12-09 06:13

    I know it is a quite old question. But given that I have faced the same issue the other day as of 2017, which really freaked me out. I thought this may help some people.

    I'm assuming you faced the issue possibly because of a recent update of the database.

    If that's the case, please simply do the following three steps:

    1. Disconnect from your internet.
    2. Access your MySQL offline as usual.
    3. Once you have logged in MySQL, you can reconnect to the Internet.

    Everything should work just fine.

    0 讨论(0)
提交回复
热议问题