Skip to main content

Apache shutdown unexpectedly using XAMPP Server || XAMPP, Apache - Error: Apache shutdown unexpectedly || Apache shutdown Unexpectedly solution

As working in a corporate or novice's webserver environment, developers faces firewall issues while using Apache in XAMPP Control panel.
This is all because of the port number issue. So follow the respective steps to overcome the problem.

Step 1 - From the XAMPP Control Panel, under Apache, click the Config button, and select the Apache (httpd.conf).
Inside the httpd.conf file, somehow I found a line that says:
Listen 80
And change the 80 into any number / port you want. In my scenario I’m using port 8080.
Listen 8080
Still from the httpd.conf file, I found another line that says:
ServerName localhost:80
Change 80 to 8080.
ServerName localhost:8080
Step 2 - From the XAMPP Control Panel, under Apache, click the Config button again, but this time select the Apache (httpd-ssl.conf). Inside the httpd-ssl.conf file, find line that says
Listen 443
And change the 443 into any number / port you want. I’ll using 4433 as the new port number.
Listen 4433
Still from the httpd-ssl.conf file, find another line that says
<VirtualHost _default_:443>

ServerName localhost:443
And change 443 to 4433.
<VirtualHost _default_:4433>

ServerName localhost:4433
Remember to save the httpd.conf and httpd-ssl.conf files after performing some changes. Then restart the Apache service.
Now everything will work fine.

REGARDS,
ITK

Comments

Popular posts from this blog

ASCII TABLE || HEXADECIMAL TABLE

ASCII & Hexadecimal Table (CLICK THE IMAGE TO VIEW IT PROPERLY) REGARDS, ITK

How to install Linux OS in Windows || How to install Linux On Windows

INSTALLING LINUX​================ ​ ​ ​ ​ ​How Linux in Window? ​Linux is widely used by the organisations where security and performance along with multiuser-multitasking (many more features are out there, you can check it by clicking here .) are priority. The main issue arises when we've to learn how to operate linux so that could be easier (for begineers  specially) to get marks in the preferred institute and jobs. Linux is not only all about these, mean getting marks and jobs, means who'll really care for those if one got Linux knowledge to have more self-employeed jobs while having fun of its open source codes. ​Another issue arises when we've to install Linux in pre-existing OS. Here, Windows OS for the installation will be used. ​ (​If you wish to see the clip for Linux installation, Click here .) ​ ​INSTALLATION ​The following steps tell you how to install linux on Windows OS. ​ ​1. Download the VMWare Workstation . ​ ​     ...

INSTALLING TURBO C/C++ IN WINDOWS || INSTALLING TURBO C++ || INSTALLING BORLAND'S TURBO C++

Borland's Turbo C/C++ has been making the novices to know the power of coding with interest beside of being outdated since 1987. It was noted for its integrated development environment, small size, fast compile speed, comprehensive manuals and low price availability. But now it's completely free to download and use. You can download Turbo C/C++ of Borland's (according to your PC's requirements) by clicking here. TO SEE THE INSTALLATION VIDEO CLICK HERE . After the download is completed, follow the following steps (picture-wise too) after opening it : 1. Double click the application to start installation. 2. Now click next. 3. Accept the license aggreement to continue to install by clicking intsall button. 4. The installing page will look like - 5. After the installation is completed soon, click read me if you wish to see its license aggreement. 6. Otherwise you can continue by clicking finish. 7. Now go to the desktop and search ...