Last active
September 15, 2016 08:46
-
-
Save hanhpv/104cf0ebb9ddd887858543f5b22ac55d to your computer and use it in GitHub Desktop.
OSX nginx, php-fpm, mysql command aliases
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### SERVER SERVICES ALIAS | |
# Nginx | |
alias nginx.start='sudo launchctl load /Library/LaunchDaemons/homebrew.mxcl.nginx.plist' | |
alias nginx.stop='sudo launchctl unload /Library/LaunchDaemons/homebrew.mxcl.nginx.plist' | |
alias nginx.restart='nginx.stop && nginx.start' | |
# PHP-FPM | |
alias php-fpm.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php70.plist" | |
alias php-fpm.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.php70.plist" | |
alias php-fpm.restart='php-fpm.stop && php-fpm.start' | |
# MySQL | |
alias mysql.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist" | |
alias mysql.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist" | |
alias mysql.restart='mysql.stop && mysql.start' | |
# Nginx Logs | |
alias nginx.logs.error='tail -250f /usr/local/etc/nginx/logs/error.log' | |
alias nginx.logs.access='tail -250f /usr/local/etc/nginx/logs/access.log' | |
alias nginx.logs.default.access='tail -250f /usr/local/etc/nginx/logs/default.access.log' | |
alias nginx.logs.default-ssl.access='tail -250f /usr/local/etc/nginx/logs/default-ssl.access.log' | |
alias nginx.logs.phpmyadmin.access='tail -250f /usr/local/etc/nginx/logs/phpmyadmin.access.log' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment