search
HomeOperation and MaintenancephpstudyEffective solution for phpStudy Apache and MySQL to start and then stop

Effective solution for phpStudy Apache and MySQL to start and then stop

phpStudy is very convenient to configure the PHP running environment on Windows, and it is simple and worry-free to use. When debugging the wordpress website locally, I used phpStudy to configure the environment. However, I encountered an annoying thing recently, that is, phpStudy has been running well, but suddenly the Apache and MySQL services cannot start.

Fault situation: Click Start or Restart on the phpStudy interface. Apache and MySQL will stop a few seconds after starting. The situation is the same no matter how you start or restart.

Effective solution for phpStudy Apache and MySQL to start and then stop

So I searched around on Baidu and found that many people have encountered this problem. I also tried various solutions: restarting the computer and deleting the website. , modify the port, run with administrator privileges, register Apache and MySQL services, and after a round, I was surprised to find that none of the methods worked! Apache and MySQL still start and stop after a while.

I searched on the official website but could not find a solution. In the end I had no choice but to come up with a trick: reinstall phpStudy2018.

After reinstalling phpStudy, it can be used normally, but the same problem reappeared after a few days of use. A lot of data has already been entered into the debugged website. If you reinstall phpStudy, you will have to work a lot, and it is impossible to reinstall every time something goes wrong. I even want to give up phpStudy and return to xampp, but I really don’t want to move the data again, it’s too troublesome. So I searched Baidu again, and this time I saw a netizen’s tip to check Apache’s error log to see what went wrong.

I opened the Apache error log, the location is: phpStudy\PHPTutorial\Apache\logs\error.log, the error message:

[Mon May 28 16:37:42.192961 2018] [core:warn] [pid 11664:tid 372] AH00098: pid file H:/phpStudy/PHPTutorial/Apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Mon May 28 16:37:42.194961 2018] [core:error] [pid 11664:tid 372] (OS 5)拒绝访问。  : AH00099: could not create H:/phpStudy/PHPTutorial/Apache/logs/httpd.pid
[Mon May 28 16:37:42.194961 2018] [core:error] [pid 11664:tid 372] AH00100: httpd.exe: could not log pid to file H:/phpStudy/PHPTutorial/Apache/logs/httpd.pid

It is obvious that the problem lies in httpd On the .pid file, the program cannot modify this file. It should be a permissions issue. I had an idea and renamed the file, then pressed the start button and found that Apache could be started, and the program automatically generated a new httpd.pid file.

Effective solution for phpStudy Apache and MySQL to start and then stop

Having the experience of starting Apache, I went to the MySQL folder and changed the file names one by one. Finally, I found that I only need to rename phpStudy\PHPTutorial\MySQL\data\PC.pid , MySQL can also be started.

Effective solution for phpStudy Apache and MySQL to start and then stop

Apache and MySQL stopped after starting and then stopped. Solution summary

Method 1: Rename or delete the following two files:

phpStudy\PHPTutorial\Apache\logs\httpd.pid
phpStudy\PHPTutorial\MySQL\data\PC.pid

Method 2: Right-click the folder PHPTutorial and select the administrator to take ownership (Related tutorial recommendations: php video tutorial)

Effective solution for phpStudy Apache and MySQL to start and then stop

Tip: Me It is judged that the problem of Apache and MySQL starting and then stopping is caused by permissions. The problem arises because the program does not have permission to write to the two files above. I guess taking ownership of the folder PHPTutorial can also solve the problem. Of course, this is just a guess. We have not tested whether it will be successful. I hope friends who have tested it will give feedback in the comments whether it is successful or not.

The above is the detailed content of Effective solution for phpStudy Apache and MySQL to start and then stop. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function