How do I stop a mysql service?



How do I stop a mysql service?..

Answer / Sheetal Kumari

To stop a MySQL service, you can use the command 'service mysql stop' or 'systemctl stop mysql' depending on your operating system. For Windows, navigate to the MySQL installation directory (usually C:Program FilesMySQLMySQL Server x.x), and run mysqld-init.exe with the stop argument: mysqld-init.exe --shutdown

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

what is the Dynamic management views? where can you use?

1 Answers   ACC,


What is mysqli_free_result?

1 Answers  


I want to start and stop mysql on windows? How do I do that?

1 Answers  


how to search second maximum(second highest) salary value(integer)from table employee (field salary)in the manner so that mysql gets less load?

1 Answers  


How can an index be declared in mysql?

1 Answers  


How you will show all data from a table.

1 Answers  


How do I restore a mysql database?

1 Answers  


Why myisam is faster than innodb?

1 Answers  


How to show table structure mysql?

1 Answers  


Explain the difference between MyISAM Static and MyISAM Dynamic?

1 Answers  


Please can the SQL code below be interpreted IF @xMatchCriteria='MATCH12' BEGIN IF EXISTS (Select * from #InsightData where (EmailAddress=@xDCPEmailAddress ) ) BEGIN SET @xTestMatchCriteria = @xMatchCriteria; SELECT @xCRMCustomerId=CustomerId, @xCRMDcpCustomerId=DcpCustomerId, @xCRMPortalCustomerID=PortalCustomerID,@xCRMDcpID=DcpID, @xCRMCardNumber=CardNumber, @xCRMEmailAddress=EmailAddress, @xCRMfirtLetterFirstName=firtLetterFirstName, @xCRMLastName=Surname,@xCRMAddressLine1=AddressLine1, @xCRMPostCode=PostCode FROM #InsightData where (EmailAddress=@xDCPEmailAddress ) END ELSE BEGIN SET @xTestMatchCriteria='No'+@xMatchCriteria; END END

1 Answers  


Is mysql a good database?

1 Answers  


Categories