restart mysql server on windows 7

前端 未结 9 1275
后悔当初
后悔当初 2020-12-13 03:36

How do I restart MySQL on Windows 7?

I\'m using HeidiSql as a front end and there\'s no option in there.

The only other things I have is the MySQL 5.5 comma

相关标签:
9条回答
  • 2020-12-13 03:56

    Open the command prompt and enter the following commands:

    net stop MySQL   
    net start MySQL
    

    the MySQL service name maybe changes based on the version you installed. In my situation, MySQL version is MySQL Server 5.7. So I use the following command

    net stop MySQL57   
    net start MySQL57
    
    0 讨论(0)
  • 2020-12-13 03:57

    In order to prevent 'Access Denied' error:

    Start -> search 'Services' -> right click -> Run as admistrator

    0 讨论(0)
  • 2020-12-13 03:58

    These suggestions so far only work if the mysql server is installed as a windows service.

    If it is not installed as a service, you can start the server by using the Windows Start button ==> Run, then browse to the /bin folder under your mysql installation path and execute mysqld. Or just open a command window in the bin folder and type: mysqld

    0 讨论(0)
  • 2020-12-13 04:01

    In Windows,

    • Open Run Window by Win+R
    • Type services.msc
    • Search MySQL service (Sometimes found as MySQL56 or MySQL57) based on version installed.
    • Click stop, start or restart the service option.
    0 讨论(0)
  • 2020-12-13 04:06

    use net stop mysql57 instead, it should be the version that is not specified

    0 讨论(0)
  • 2020-12-13 04:11

    Ctrl + alt +delete to start TASK MANAGER ,choose Service ,Then you will find MySQL, click that item by right click,then choose start, your MySQL Server will start!

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