apache2 and httpd being run on macOS simultaneously
Stop one service from blocking the other service that performs the same function

Search for a command to run...
Stop one service from blocking the other service that performs the same function

No comments yet. Be the first to comment.
Clean your email list even before sending it to a mass emailing solution like AutoSend to avoid a high bounce rate

Try using an alternative to openclaw, which they claim is cheaper to use

Using types (and interfaces) to define a blueprint of a variable

Using GraphQL as an alternative to REST API for Hashnode

making makemigrations work in Django when migrations is not pushed to git

This is a simple post mainly for my notes incase I need to recapitulate what should be done to restore running of my virtually hosted websites on my laptop.
Ever since I installed httpd on my macOS 15.1 using homebrew and configured my virtual hosts on it and upon macOS updates which resulted in a restart of the laptop, my virtual hosts websites stopped working.
After many updates I found that there’s an apache2 service also running in the background and upon going to local.myWebsite.com it was trying to detect the virtual host from Apache’s config and not the httpd’s one.
So I had to stop Apache2 and httpd and start httpd. Only then my virtual hosts were back running properly.
sudo apachectl stop
brew services stop httpd
brew services start httpd