Raman
Raman

Reputation: 169

XAMPP issue with Mac OS Catalina

I have been using XAMMP on my mac, it was working fine before OS update to Catalina.

I am not able to start MySQL and Apache. I read the blog that Apache and Php are built-in with Mac OS Catalina, this might be the issue, I have been using 64-bit XAMMP

Upvotes: 8

Views: 16383

Answers (6)

Najmul
Najmul

Reputation: 1

For catalina XAMPP version 7.4.1 will work perfectly

Upvotes: 0

Jones Gabriel
Jones Gabriel

Reputation: 1

open xampp-manager >> networks.

edit both ports and uncheck: 1. require local 2. over SSH

save and restart services and it should work now

Upvotes: 0

Download the latest version of XAMMP here, it works with Mac OS Catalina.

Please note the installer version


In another case use the solution already described, through the terminal:

sudo /Applications/XAMPP/xamppfiles/xampp start

Upvotes: 1

Alexandre Crivellaro
Alexandre Crivellaro

Reputation: 893

I had to first stop MACOS web server and then start Apache and MySql. The sequence I used was:

sudo apachectl stop
cd /Applications/XAMPP/xamppfiles
sudo ./xampp startapache
sudo ./xampp startmysql 

Works fine.

Upvotes: 6

ajeet kanojia
ajeet kanojia

Reputation: 30623

I am assuming that your XAMPP is located under the Application folder. Please run the below command on your terminal to start the Apache, MySQL, and ProFTPD

sudo /Applications/XAMPP/xamppfiles/xampp start

Upvotes: 0

Hector
Hector

Reputation: 149

The manager-osx is not working, but you can start it through the terminal. Go to /Applications/XAMPP/xamppfiles and type: sudo ./xampp start

Upvotes: 13

Related Questions