环境:nginx+mysql+php7.2:Mac利用homebrew安装的php7.2 问题:修改了PHP的配置文件,php.ini:服务器是nginx,如何重启PHP? 开启: brew services start php@7.2 重启: brew services restart php@7.2 停止: brew services stop php@7.2…
1.安装Mysql 安装有2种办法,一种是下载mysql安装文件,慢慢安装,另一种就是下载xmpp,里面自带mysql,就像是安装普通的mac软件一样,安装完毕,就有了mysql了. 方法一,官网下载安装(详见,http://blog.csdn.net/pansanday/article/details/54915916) 下载mysql for mac: https://dev.mysql.com/downloads/mysql/ 双击mysql-5.7.17-macos10.12-x86_6…
brew简介安装 brew 又叫Homebrew,是Mac OSX上的软件包管理工具,能在Mac中方便的安装软件或者卸载软件, 只需要一个命令, 非常方便 brew类似ubuntu系统下的apt-get的功能 1. 安装brew brew 的官方网站: http://brew.sh/   在官方网站对brew的用法进行了详细的描述 安装方法:  在Mac中打开Termal:  输入命令: ruby -e "$(curl -fsSL https://raw.github.com/mxcl/home…
(一)安装 1.浏览器打开brew.sh,进入homebrew主页.找到install homebrew 的命令: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2.打开iterm,键入sudo chown -R $USER /usr/local.解释下这个操作:/usr/local目录默认状态下是禁止非root用户的写文件权限的,所以…
以下所有命令在mac 终端执行 1.安装postgres brew install postgres 2.brew 安装的程序都可以在/usr/local/Cellar/下找到,去/usr/local/Cellar/postgresql/12.1下找到   (12.1是我的版本,具体路径还要看你安装的什么版本) homebrew.mxcl.postgresql.plist 文件 3.链接到  ln -s /usr/local/Cellar/postgresql/12.1/homebrew.mxc…
一. 安装brew 要求:OS X 10.6以上系统,并且安装有XCode命令行工具 对于10.11的系统需要设置下local的权限为当前用户 $ sudo chown -R $(whoami):admin /usr/local brew安装程序的过程中需要用到苹果的xcode中的 编译器,你可以到苹果的官网中免费下载安装(需要注册免费的开发者,然后才能下载),安装后到属性(Xcode – Perference–Downloads–Components–Command Line Tools)点击…
|首先加入Homebrew官方的几个软件源 $ brew tap homebrew/dupes $ brew tap homebrew/versions $ brew tap homebrew/php |安装PHP5.6 $ brew install php56 新问题:安装完成后没有Apache用的php5.so - 卸载: $ brew remove php56 - 安装: $ brew install php56 —with-apache 如果出现以下内容说明被弃用了 Warning: h…
mac 终端下,执行以下命令,即可安装brew: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 在终端环境下,brew --version 查看brew的版本,也可以验证brew是否安装成功 安装完毕后,发现使用brew命令,却还是提示:-bash: brew: command not found 其实解决这个问题真的很简单.如下: s…
mac 安装homebrew出错 Failed to connect to raw.githubusercontent.com port 443: Connection refused error:原创heroacool 发布于2019-10-31 19:45:04 阅读数 5672 收藏展开 折腾了好久,执行 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/inst…
mac不自带mysql,这里需要重新安装,方法依然很简单 brew install mysql unset TMPDIR mysql_install_db --verbose --user=`whoami` --basedir="$(brew --prefix mysql)" --datadir=/usr/local/var/mysql --tmpdir=/tmp sudo chown -R your_user /usr/local/var/mysql/ 第一句是安装,后面的是确保正常…