Mac安装Brew,以及通过brew安装nginx
- Mac安装Brew
安装命令如下:
curl -LsSf http://github.com/mxcl/homebrew/tarball/master | sudo tar xvz -C/usr/local --strip 1
当brew安装成功后,就可以随意安装自己想要的软件了,例如wget,命令如下:
sudo brew install wget
卸载的话,命令如下:
sudo brew uninstall wget
查看安装软件的话,命令如下:
sudo brew search /apache*/
- mac 安装 nginx 环境
1、brew search nginx
2、brew install nginx
启动nginx ,sudo nginx ;访问localhost:8080 发现已出现nginx的欢迎页面了。
备注: ln -s /usr/local/sbin/nginx /usr/bin/nginx 做个软连接。
常用的指令有:
nginx -V 查看版本,以及配置文件地址
nginx -v 查看版本
nginx -c filename 指定配置文件
nginx -h 帮助
#重新加载配置|重启|停止|退出 nginx
nginx -s reload|reopen|stop|quit
#打开 nginx
sudo nginx
#测试配置是否有语法错误
nginx -t
另外附上Mac安装brew命令:
安装命令如下:
curl -LsSf http://github.com/mxcl/homebrew/tarball/master | sudo tar xvz -C/usr/local --strip 1
当brew安装成功后,就可以随意安装自己想要的软件了,例如wget,命令如下:
sudo brew install wget
卸载的话,命令如下:
sudo brew uninstall wget
查看安装软件的话,命令如下:
sudo brew search /apache*/
注意/apache*/是使用的正则表达式,用/分割。
转自博客:
http://www.cnblogs.com/liulipeng/p/3938518.html
http://blog.csdn.net/dracotianlong/article/details/21817097
以上就介绍了Mac安装Brew,以及通过brew安装nginx,包括了正则表达式,github方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: 如何查询一台或多台预付费实例自动续费状态
推荐阅读
-
Mac上将brew安装的MySql改用Docker执行操作过程
-
mac环境中使用brew安装php5.5.15
-
Mac下通过brew安装指定版本的nodejs教程
-
Mac brew安装的php修改了php.ini之后如何重启php?
-
Mac下brew+Mysql安装和使用讲解
-
解决mac安装homebrew后报错-bash: brew: command not found
-
MAC下安装homebrew.(-bash: brew: command not found)
-
iOS-解决mac安装homebrew后报错-bash: brew: command not found
-
【MAC】安装神器brew
-
修复 Mac brew 安装 mongodb 报 Error: No available formula with the name ‘mongodb’ 问题详解