">
Home Backend Development PHP Tutorial Solution to the problem that Apache cannot start in Xampp

Solution to the problem that Apache cannot start in Xampp

Aug 08, 2016 am 09:19 AM
apache http localhost xampp

xampp (apache+mysql+php+perl) is a powerful website building integration software package. Many people know from their own experience that installing an Apache server is not an easy task. If you want to add MySQL, PHP, and Perl, it's even harder. Using xampp, you can easily build a running environment for PHP and other programs under various systems.

Xampp is very simple to obtain and install. You only need to go to the following website:
http://www.apachefriends.org/zh_cn/xampp.html to download xampp. I installed the windows version Installer installation package, just follow its installation prompts to install it, which is very convenient and fast.
However, it is best to choose a disk other than the C drive for the installation directory. According to the experience of some netizens, in Windows 7 or Vista, if you choose the C drive for installation, there will be a problem of failure to create some files due to permission reasons. If you already have the highest authority, you can install it directly on the C drive.
Generally in Windows XP or Windows 7, when xampp is just installed, the apache server cannot be started.

Today, when I used xampp to modify wordpress, I found a serious problem. Apache could not be started. No matter how many times I clicked start, the display was as follows:
busy...
apache started [port 80]
After checking the information from many parties, it turned out that the reason was that port 80 was blocked. Other programs occupy it, so this port is very busy, causing Apache to fail to start. Solution one is as follows:
1. Run -cmd, then enter netstat -ano and press Enter;
2. Check the pid of the line containing xx.xx.xx.xx:80 in the local address. It is a few numbers. Write down these numbers;
3. Start "Task Manager" - "Details", find the corresponding "PID", and "End Task";
4. Then check which program corresponds to the pid just now, It is easy to find, that is, it occupies port 80;
5. Stop it directly or use tools such as Optimization Master to prevent it from starting up.
Okay, it’s ready to use.
Second solution: Change the port (Try not to use ports 0-1023, this is a system reserved port)
The iis server used by my asp is the default web80 port of xp, and the tomcat server used by jsp. It is the default port 8080 when tomcat is installed. Then I will change the default port 80 of apache in xampp under php to 8081 (any other port will be fine as long as it is not occupied). Otherwise, everything else will be ok
In this case, how to modify it What about the apache port? Go to the installation directory of ServerName localhost:8081
Then restart apache in XAMPP Control Panel.
Why is it still displayed as follows:
busy...
apache started [port 80]
Never mind it, enter the address in IE: http://localhost:8081 to test, it cannot be opened, I have modified the apache port. , try to stop the iis web service. Start
apache again. It also displays as follows:
busy…
apache started [port 80]
Enter the address in IE: http://localhost:8081 to test and successfully open the xampp web page. The prompt:
Welcome to XAMPP for Windows Version 1.7.0!
Congratulations You:
You have successfully installed XAMPP!
Although the xampp-control dialog box still shows that apache has started port 80, the actual occupied port is 8081. Restart the iis service, and both apache and iis can work on their respective ports 8081 and 80.
Restart the computer, apache cannot be used again, try to close the iis service, start apache -> http://localhost:8081 test is successful; then start the iis service,
http://localhost:8081 test is successful
It’s really a What a strange debugging process. Anyway, it works.
Start apache directly with xamppapache_start.bat, and a prompt appears that port 443 is occupied. It turns out that IIS occupies the ssl port (that is, port 443 https). This is easy to handle. Modify xamppxamppapacheconfextrahttpd -ssl.conf file, change all 443 to 4433 or turn off the ssl service, test again and everything is ok.
Of course, as a development and debugging environment, if the SSL service is not needed, the SSL service can be turned off. The method is to modify the xamppapacheconfhttpd.conf file, find "Includeconf/extra/httpd-ssl.conf" and comment it out with the # character to turn off the SSL service.
Writing while doing the debugging process of running, indicating that the startup was not successful.
Solution:
1. Start apache in the xampp control panel if the startup fails.
2. Enter the apache directory under the xampp installation directory, such as c:xamppapachelogs
3. You can see an error.log file.
4. Open the file and go to the end of the file to learn more about the reason for the startup failure.
5. Find solutions to different reasons for failure.
Solution to the case
1. Failed to start apache in the xampp control panel
2. Check the error.log, it shows "make_sock: could not bind to address0.0.0.0:80
no listening sockets available shutting down"
3. Yes It seems that this is a mistake when listening to port 80. Maybe port 80 is already occupied by other applications. The failure to start apache is mostly due to port issues.
4. Open the c:xamppapacheconf directory
5. There is a httpd.cnf file in the directory. Open it with Notepad and change all "80" inside to other ports such as "8082". After modification, save and exit.
6. Re-start apache in the xampp control panel. It is successful and the status is running.
Note: Because the default port of the browser is 80, after modifying the listening port of apache, when browsing in the browser, you need to add localhost after port. For example, http://localhost:8082/ replaces the previous http://localhost/. Of course, localhost= 127.0.0.1, the same as http://127.0.0.1:8082/.

The above introduces the solution to the problem that Apache cannot start in Xampp, including the relevant aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

How to add a server in eclipse How to add a server in eclipse May 05, 2024 pm 07:27 PM

To add a server to Eclipse, follow these steps: Create a server runtime environment Configure the server Create a server instance Select the server runtime environment Configure the server instance Start the server deployment project

How to conduct concurrency testing and debugging in Java concurrent programming? How to conduct concurrency testing and debugging in Java concurrent programming? May 09, 2024 am 09:33 AM

Concurrency testing and debugging Concurrency testing and debugging in Java concurrent programming are crucial and the following techniques are available: Concurrency testing: Unit testing: Isolate and test a single concurrent task. Integration testing: testing the interaction between multiple concurrent tasks. Load testing: Evaluate an application's performance and scalability under heavy load. Concurrency Debugging: Breakpoints: Pause thread execution and inspect variables or execute code. Logging: Record thread events and status. Stack trace: Identify the source of the exception. Visualization tools: Monitor thread activity and resource usage.

How to implement HTTP streaming using C++? How to implement HTTP streaming using C++? May 31, 2024 am 11:06 AM

How to implement HTTP streaming in C++? Create an SSL stream socket using Boost.Asio and the asiohttps client library. Connect to the server and send an HTTP request. Receive HTTP response headers and print them. Receives the HTTP response body and prints it.

Application of algorithms in the construction of 58 portrait platform Application of algorithms in the construction of 58 portrait platform May 09, 2024 am 09:01 AM

1. Background of the Construction of 58 Portraits Platform First of all, I would like to share with you the background of the construction of the 58 Portrait Platform. 1. The traditional thinking of the traditional profiling platform is no longer enough. Building a user profiling platform relies on data warehouse modeling capabilities to integrate data from multiple business lines to build accurate user portraits; it also requires data mining to understand user behavior, interests and needs, and provide algorithms. side capabilities; finally, it also needs to have data platform capabilities to efficiently store, query and share user profile data and provide profile services. The main difference between a self-built business profiling platform and a middle-office profiling platform is that the self-built profiling platform serves a single business line and can be customized on demand; the mid-office platform serves multiple business lines, has complex modeling, and provides more general capabilities. 2.58 User portraits of the background of Zhongtai portrait construction

How to deploy and maintain a website using PHP How to deploy and maintain a website using PHP May 03, 2024 am 08:54 AM

To successfully deploy and maintain a PHP website, you need to perform the following steps: Select a web server (such as Apache or Nginx) Install PHP Create a database and connect PHP Upload code to the server Set up domain name and DNS Monitoring website maintenance steps include updating PHP and web servers, and backing up the website , monitor error logs and update content.

How to implement PHP security best practices How to implement PHP security best practices May 05, 2024 am 10:51 AM

How to Implement PHP Security Best Practices PHP is one of the most popular backend web programming languages ​​used for creating dynamic and interactive websites. However, PHP code can be vulnerable to various security vulnerabilities. Implementing security best practices is critical to protecting your web applications from these threats. Input validation Input validation is a critical first step in validating user input and preventing malicious input such as SQL injection. PHP provides a variety of input validation functions, such as filter_var() and preg_match(). Example: $username=filter_var($_POST['username'],FILTER_SANIT

How to leverage Kubernetes Operator simplifiy PHP cloud deployment? How to leverage Kubernetes Operator simplifiy PHP cloud deployment? May 06, 2024 pm 04:51 PM

KubernetesOperator simplifies PHP cloud deployment by following these steps: Install PHPOperator to interact with the Kubernetes cluster. Deploy the PHP application, declare the image and port. Manage the application using commands such as getting, describing, and viewing logs.

How to implement HTTP file upload security using Golang? How to implement HTTP file upload security using Golang? Jun 01, 2024 pm 02:45 PM

Implementing HTTP file upload security in Golang requires following these steps: Verify file type. Limit file size. Detect viruses and malware. Store files securely.

See all articles