Home Backend Development PHP Tutorial Analysis of the reasons why PHPWAMP auto-starts abnormally and services such as Apache will not automatically restart after the server is restarted

Analysis of the reasons why PHPWAMP auto-starts abnormally and services such as Apache will not automatically restart after the server is restarted

Feb 18, 2017 pm 04:07 PM

When using "PHPWAMP Automatic Tasks", many students encountered the following problems:

"After the phpwamp green integrated environment restarts the computer (server), the website service will not automatically start"

(If you encounter this problem in other environments or when building it yourself, you can also use this method to solve it)


The content of this article conforms to:

Why can’t the website service be restarted even after changing from manual to automatic?

Why does it change to manual after I set the service to automatic?

Why does the service not automatically restart after the server (computer) is restarted?

Analysis of the reasons why the website service will not automatically restart after the windows server is restarted.

Why can’t I restart the server (computer) service after setting it to automatic?

msconfig settings are invalid, automatic is invalid, delay is invalid, registry changes are invalid, how to prevent the website service from automatically restoring to manual?

Author's Foreword:

PHPWAMP is a pure green integrated environment integrated with VC that I developed. It supports custom setting of PHP version, simultaneous running of multiple versions, and mandatory It has many practical functions such as changing the database password of any environment, removing non-port 80 domain name with one click, forced uninstallation of any environment, forced removal of environmental obstacles, automatic periodic task system, etc. Recently, some students found that when using automatic tasks, they found that phpwamp failed after restarting the computer. The website service will not be restarted. You need to manually start the website service before the website can run normally. So what is the cause of this situation? Now I will analyze and solve it one by one for you.

Similarly, this problem has nothing to do with PHPWAMP itself. It is a problem with the computer settings or the automatic recovery of the anti-virus software.

Student questions are as follows:

Student: Teacher, I use PHPWAMP or other integrated environments. Every time the computer restarts, the website service will not change. What if the system automatically restarts? What's weird is that some computers can boot up normally with the system? Could it be that my posture is wrong? After setting the relevant website services to automatic, it still looks like a bird! I checked a lot of online information and followed what was written above, but it all turned out to be in vain. How to solve?

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Author's Tip: Click on the picture to view the high-definition picture. If you can't see it, it means that the article you see is reprinted from other websites. Please come to my blog to view the original text.

If we encounter the situation of the student above, how should we solve it?

In the process of solving this problem, we may encounter the following problems. We only need to solve them one by one according to our own situation.

First introduce the general solution, and then introduce the comprehensive use of PHPWAMP’s own functions to solve this problem.

Step 1 Solution:

Click "View All Services" on the main interface of PHPWAMP

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Then right-click the service you want to start when the computer (server) starts, right-click and click Properties.

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Set it to "automatic", usually we can set it like this, but sometimes it still doesn't work, then Just keep reading.

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Step 2 solution:

Enter in the lower left corner Type msconfig in the box to open the system configuration utility and set the startup items.

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Then select the Services tab in the startup items, find the service you want to start at startup in the list, and restart after setting it up.

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Usually there will be no problem at this step, but some people still can’t do it after setting it up like this!

That’s because the optimization of some anti-virus software will reset the settings, causing msconfig to be unable to be modified and will always return to the settings before modification.

Step 3 Solution:

360 Security Guard was specially installed for demonstration. The same applies to other anti-virus software. First open the anti-software startup settings.

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Find the specific optimization record of the relevant website service and click the restore startup button, as shown below (the same applies to other anti-virus software)

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

If you do this step and still cannot start the website service automatically after booting,

then you can set the corresponding website services such as Apache and MySQL to "Auto (delayed start)" is sufficient.

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

In this way, the system will run this service after loading.

Ultimate universal solution:

If none of the above methods work, you can make the service to be started with the system into a bat file, and then add the startup items.

For example, the service names of Apache and mysql in the PHPWAMP integrated environment are .phpwamp_apache2.4 and .phpwamp_mysql respectively. The corresponding bat codes are as follows

(other integrated environments or For the environment you installed yourself, please check the corresponding service name yourself and just check the number)

@echo off  

set PHPWAMP_version=更新日期20160226  
TITLE PHPWAMP %PHPWAMP_version% 运行中 - %~dp0  


net stop .phpwamp_apache2.4  
net stop .phpwamp_mysql
Copy after login

Of course you can also include some other services of PHPWAMP

@echo off  

set PHPWAMP_version=更新日期20160226  
TITLE PHPWAMP %PHPWAMP_version% 运行中 - %~dp0  


net stop .phpwamp_apache2.2  
net stop .phpwamp_apache2.4  
net stop .phpwamp_mysql  
net stop .phpwamp_nginx  
net stop .phpwamp_php-cgi  
net stop .phpwamp_svnserve  
net stop .phpwamp_memcached  
net start .phpwamp_apache2.2  
net start .phpwamp_apache2.4  
net start .phpwamp_mysql  
net start .phpwamp_nginx  
net start .phpwamp_php-cgi  
net start .phpwamp_svnserve  
net start .phpwamp_memcached
Copy after login

Friendly reminder: If you add services If it has not been installed, there may be corresponding error messages when it starts up. Please ignore these.

Open txt, copy the above code into it, and save it as a file with the suffix bat.

Name the bat file start-up.bat, start-up means startup in English, the name is arbitrary .

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Then open this folder, as shown below.

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Copy the start-up.bat file into it, so that every time it is started, the services in bat will be automatically started.

(This operation is relatively sensitive to anti-virus software. If it is intercepted by anti-virus software during setting, click Pass/or turn off the anti-virus software)

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Other integrated environments , or an environment you build independently, can be set up like this.

Other solutions: Comprehensive use of PHPWAMP's built-in functions to solve the problem

If you are using PHPWAMP and encounter the above problems, you do not need to use the bat method and directly use the built-in functions to solve them.

First turn on the automatic task of scheduled restart of the computer (server), and then turn on the automatic task of scheduled restart of the service.

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Usually when we set up to automatically restart the server (restart the computer), the system will automatically start the website service. If you encounter the above problems and cannot automatically restart the website service, you can restart the server first, and then restart the website service. , staggered by a few minutes between the two.

Case: For example, I want to set up the server to automatically restart (restart the computer) at 3:18 a.m. on the 3rd and 5th of every month, as shown in the figure below.

These two windows look very similar. It is easy to distinguish the window title and the actual content. Note that the first window is to restart the server, and the second window is to restart the website service. I opened both For scheduled tasks, the time can be staggered by a few minutes. See the red box in the picture for details.

PHPWAMP自启异常,服务器重启后Apache等服务不会自动重启的原因分析

Pay attention to the staggered time. The first window is 3.18 minutes, and the second window is 3:28 minutes. The service starts slightly later than the server.

For more PHPWAMP self-start exception, analysis of the reasons why services such as Apache will not automatically restart after the server is restarted. For related articles, please pay attention to the PHP Chinese website!


Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

11 Best PHP URL Shortener Scripts (Free and Premium) 11 Best PHP URL Shortener Scripts (Free and Premium) Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation Survey Announcement of 2025 PHP Situation Survey Mar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

See all articles