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

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 ...

Combination of two strings using array || combination of strings without repetition || combination of strings

        COMBINATION OF TWO STRINGS USING ARRAY /* ​ * C Program to Display Every Possible Combination of Two Words  ​ * from the given 2 String without Displaying Repeated Combinations ​ */ ​#include <stdio.h> ​#include <string.h> ​ ​void main() ​{ ​    char str1[50],  str2[50], str3[100][100], str4[100][100]; ​    char str5[200][200], temp[200], str[200][200]; ​    int i, j = 0, k = 0, l = 0, m = 0, index = 0, n = 0; ​    printf("Enter first string\n"); ​    scanf("%[^\n]s", str1); ​    printf("Enter second string\n"); ​    scanf(" %[^\n]s", str2);  ​ ​/* code to convert string in 2-D array */ ​    for (i = 0;str1[i] != '\0';i++) ​    { ​        if (str1[i] =  = ' ') ​        { ​            str3[j][k] = '\0'; ​         ...