mac使用brew安装的PHP替换自带的PHP】的更多相关文章

在.zshrc文件后面加上 export PATH="$(brew --prefix homebrew/php/php56)/bin:$PATH"…
问题 在 Mac 上通过 brew install mysql 安装的的MySQL使用基本MySQL命令重启会失败: mysql.server stop mysql.server start mysql.server restart 输出显示会提示成功,但是使用的时候会报错,不能使用. ERROR 2002 (HY000): Can not connect to local MySQL server through socket '/tmp/mysql.sock' (2) 解决方法 启动使用My…
Homebrew官方网站:https://brew.sh/1,安装brew,Mac中打开Termal输入命令: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 如果提示/usr/bin/ruby找不到,用which ruby查看ruby的安装位置. 2,使用brew安装软件 brew install tree 3,查看已安装的软件 bre…
安装HomeBrew Brew是Mac下面的包管理工具,就像centos下面的yum一样.HomeBrew可以通过ruby来安装,mac系统是自带ruby的,所以只要在终端运行下面的代码即可安装HomeBrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 在安装的时候会有下面的提示,你应该仔细看下,要清楚知道HomeBrew给你安装了…
之前整理了一下内置的php环境,各种缺库是很坑爹的,而且内置的php编译目录找了老半天没找到.所以决定使用brew去重新编译一边php brew的安装就不说了,上篇博客有说.直入主题 brew安装完php后,切换默认使用 export PATH="$(brew --prefix homebrew/php/php55)/bin:$PATH" export PATH="/usr/local/mysql/bin:$PATH" export PATH="/usr/…
1.安装mysql #brew install mysql 报错 Error: The following directories are not writable by your user: /usr/local/lib You should change the ownership of these directories to your user. sudo chown -R $(whoami) /usr/local/lib 意思是 您应该将这些目录的所有权更改为您的用户 执行以下命令设置…
一.打开mac控制台 $ brew install mysql 二.启动mysql服务 $ mysql.server start 三.初始化mysql配置 1 rainMacBook-Pro:~ comet$ mysql_secure_installation 2 3 Securing the MySQL server deployment. 4 5 Connecting to MySQL using a blank password. 6 7 VALIDATE PASSWORD PLUGIN…
brew安装sshpass brew install https://raw.githubusercontent.com/kadwanev/bigboybrew/master/Library/Formula/sshpass.rb 登陆 sshpass -p password ssh username@ip 起别名 vim ~/.bash_profile ssh alias 插入 alias serv="sshpass -p 'mima' ssh user@ip" 立即起效 source…
1.安装brew ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2.安装homebrew-cask brew tap phinze/homebrew-cask && brew install brew-cask 3.通过brew 安装软件  比方:安装eclipse…
1.先安装brew 网址:https://brew.sh/ 复制命令:/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 在终端运行 2.brew 安装mysql 输入命令:brew install mysql@5.7 (可以指定版本安装,不指定版本默认最新版本) 3.修改环境变量 brew安装的东西都是在 /usr/local/Cellar…