ChrisBup Posted September 16, 2019 Posted September 16, 2019 I'm working on this site: https://red-org.squarespace.com/ in dev mode but when I run this command: squarespace-server https://red-org.squarespace.com --auth I get the following output: Apparently, that's saying my local server at that port is currently being used by another process. My question is: how can I kill that process? When I run ps aux |grep 9000 to view all processes at that port, I get: As you can see, each time I run ps aux |grep 9000 , new PIDs are generated indicating (I think) that those are zombie processes. I try to kill the listed processes with kill -9 <PID> but it doesn't do anything, which seems to confirm that they are in fact zombie processes. So how can I track down those parent processes and kill them so that I can run a Squarespace local server again — or is there another fix here? I'm running Mac Mojave 10.14.6. Thanks.
ChrisBup Posted October 2, 2020 Author Posted October 2, 2020 Update: In case it’s useful for anyone, I did resolve this by resetting the port php-fpm was using by changing it in www.conf located in /usr/local/etc/php/7.3/php-fpm.d which allowed kill -9 <PID> to work. Reference: https://stackoverflow.com/questions/60239910/how-to-change-php-fpm-port-on-mac
Recommended Posts
Archived
This topic is now archived and is closed to further replies.