How to fully remove/uninstall Zend server from OSX/Mac
To fully remove the Zend server from osX – and according to official documentation – here are the steps:
Stop all Zend Server processes
Delete all Zend Server installed files
Remove the .app from /Applications
Remove Zend users
so first – fire up the activity monitor – check out the zend processes. Make sure to check the username that runs them – usually zend and _zend
Also click on one of them and click “Sample process” – a new window will open – take note of the path – usually /usr/local/zend/
go to terminal:
sudo pkill -u <username>
Go to /Applications – delete the zend folder.
Go to preferences – Users and Groups – delete any related zend users.
or
Go to Terminal
sudo dscl . delete /users/<username>
rm -r /users/<username>
– will delete the home folder
and now the last part removing the zend folders you found from the first step of sampling.
in terminal
cd /usr/local
sudo rm -f -R zend
and you should be done – restart – check out the processes – they should be clean of zendish things.
Let me know if I missed anything… i want to wipe it off as well ;p





Recent Comments