Xampp not starting on mac by simple pressing start - php

I have installed xaamp on mac min..if i start it from clicking start in manage-os x its not starting apache or mysql server..
but if writing this code in terminal
sudo /Applications/XAMPP/xamppfiles/bin/apachectl start
sudo /Applications/XAMPP/xamppfiles/bin/mysql.server start
I tried by changing ports of config file but didn't work.

Related

Trouble in Launching XAMPP in ubuntu

When I'm trying to launch XAMPP control panel, In the 'Manage Servers' section is is shown that 'Apache Web Server' is Stopped and it does not start. when l run the command line it says that another server is running. So how to find and stop that already running server.
TERMINAL:
Starting XAMPP for Linux 7.2.1-0...
XAMPP: Starting Apache...fail.
XAMPP:  Another web server is already running.
XAMPP: Starting MySQL...ok.
Might be You are having another instance of apache2 running on your system, so first stop it, run following command and then restart xampp:
sudo /etc/init.d/apache2 stop

Xampp php7 not starting mac os X

I uninstall xampp with php 5.6 and download and install my xampp with php7.
Then I use the manage server to start the Apache Web Server, the light red turns on a yellow light, but after returns to red light.
The Application log show this:
Starting Apache Web Server...
/Applications/XAMPP/xamppfiles/apache2/scripts/ctl.sh : httpd started
What´s happening here?
open your terminal and write this command and press enter
sudo apachectl stop
to stop your apache osx and re-open your apache
Good Luck

mac XAMPP Apache shuts down immediately

I've got a clean install of my macbook again, reinstalled the OS and just installed XAMPP. I've clicked "Start" on Apache, and just as the icon turns orange it turns red again.
I have tried:
sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
but that just returns the following:
/System/Library/LaunchDaemons/org.apache.httpd.plist: Could not find specified service
~~~~~~~~~~~~
Then I tried
sudo apachectl stop
And that returned the following:
/System/Library/LaunchDaemons/org.apache.httpd.plist: Could not find specified service
~~
Using the following starts it and works, though the MySQL doesnt work with it
sudo /Applications/XAMPP/xamppfiles/bin/apachectl start
sudo /Applications/XAMPP/xamppfiles/bin/mysql.server start
Though I don't want to go through the process of doing it through the terminal every single time.
Gyazo gif of my situation
This is really frustrating because this is the 3rd time I've re-installed my OS (Had nothing to lose so I went on and did it)
Is it possible that it has invalid permissions?

Why doesn't Apache server MAMP run?

I've downloaded php5.6 from here https://www.mamp.info/en/downloads/ and added it to php folder. After that I can't run Apache server. I removed that folder, but Apache still doesn't work. Files in /Local/logs/ are empty.
Mac OS Mavericks.
Same problem here. A (temporary) solution is to start apache from the terminal:
sudo /Applications/MAMP/Library/bin/apachectl start
MAMP detects it as its status light becomes green! But I cannot explain why MAMP doesn't command apache anymore, with nothing logged.
Tried to modify file /bin/startApache.sh, adding a sudo before start command, without success.

Unable to start XAMPP properly

I am facing the below issue while starting the xampp on linux box.
I am able to start the mysql and proFPD but i couldn't satrt the apache.
It showing another webserver is already running.
XAMPP: Starting Apache fail.
XAMPP: Another web server is already running.
XAMPP: Starting MySQL already running.
XAMPP: Starting ProFTPD already running.
- if you start lampp and are fetching apache starting issue run below
command
sudo /etc/init.d/apache2 stop && sudo /opt/lampp/lampp start
Seems like you have httpd daemon running already.
Go to terminal and type service httpd stop
Then try starting XAMPP

Categories