MAC重装环境
重装brew
1、删除brew
<pre>
rm -rf /usr/local/Cellar /usr/local/opt /usr/local/.git
rm -rf ~/Library/Caches/Homebrew
brew prune
brew cleanup
</pre>
2、重装brew
3、更改权限
sudo chown -R whoami
/usr/local
4、测试
<pre>
brew doctor
brew prune
brew cleanup
brew update
</pre>
安装zsh
curl -L http://install.ohmyz.sh | sh
安装 Nginx + php + mysql
1、安装Nginx
<pre>
brew search nginx
brew install nginx
brew info nginx
参考:http://www.mamicode.com/info-detail-1445840.html
开机自启动:
sudo cp /usr/local/opt/nginx/*.plist /Library/LaunchDaemons
sudo launchctl load -w /Library/LaunchDaemons/homebrew.mxcl.nginx.plist
无权限的:
ln -sfv /usr/local/opt/nginx/*.plist ~/Library/LaunchAgents
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist
加权限:
sudo chown root:wheel /usr/local/Cellar/nginx/1.2.6/bin/nginx
sudo chmod u+s /usr/local/Cellar/nginx/1.2.6/bin/nginx
</pre>
2、安装mysql
<pre>
brew search mysql
brew install homebrew/versions/mysql56
开机自启动:
ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mysql56.plist
配置文件配置方法:
brew install mysql (安装)
添加修改mysql配置
mysqld --help --verbose | more (查看帮助, 按空格下翻)
你会看到开始的这一行(表示配置文件默认读取顺序)
Default options are read from the following files in the given order: /etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
通常这些位置是没有配置文件的, 所以要自己建一个
ls $(brew --prefix mysql)/support-files/my-* (用这个可以找到样例.cnf)
cp /usr/local/opt/mysql/support-files/my-default.cnf /etc/my.cnf (拷贝到第一个默认读取目录)
按需修改my.cnf
brew services start mysql (启动)
brew services stop mysql (停止)
</pre>
2、安装php
<pre>
brew update
brew tap homebrew/dupes
brew tap josegonzalez/homebrew-php
brew install php56 --with-fpm --without-apache --with-imap
brew install php56-memcache php56-xdebug php56-swoole php56-memcached php56-mongo php56-redis php56-gearman
</pre>
xhprof PHP的性能监控神器
brew install php56-xhprof
https://pecl.php.net/package/xhprof
由于OSX已经自带了PHP环境,因此需要修改系统路径,优先运行brew安装的版本,在~/.bashrc里加入:
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"
记住添加软连接
sudo ln -s /usr/local/Cellar/php56/5.6.31_7/sbin/php-fpm /usr/local/bin/php-fpm
安装工具
brew install node git
进程相关
<pre>
mkdir -p ~/Library/LaunchAgents
ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
以下是launchd的相关配置的存放目录:
~/Library/LaunchAgents 用户的进程
/Library/LaunchAgents 管理员设置的用户进程
/Library/LaunchDaemons 管理员提供的系统守护进程
/System/Library/LaunchAgents Mac操作系统提供的用户进程
/System/Library/LaunchDaemons Mac操作系统提供的系统守护进程
可以看到,一般我们个人编写的守护进程,都应该放到~/Library/LaunchAgents目录里面。
</pre>
环境变量相关
<pre>
mac 一般使用bash作为默认shell
Mac系统的环境变量,加载顺序为:
/etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc
【说明:】
/etc/profile和/etc/paths是系统级别的,系统启动就会加载.
后面几个是当前用户级的环境变量,这3个按照从前往后的顺序读取,如果~/.bash_profile文件存在,则后面的几个文件就会被忽略不读了,
如果~/.bash_profile文件不存在,才会以此类推读取后面的文件。
~/.bashrc没有上述规则,它是bash shell打开的时候载入的。
</pre>
设置PATH的语法都为:#中间用冒号隔开:
export PATH=$PATH:<PATH 1>:<PATH 2>:<PATH 3>:------:<PATH N>
(一)全局设置
下面的几个文件设置是全局的,修改时需要root权限
1)/etc/paths (全局建议修改这个文件 )
编辑 paths,将环境变量添加到 paths文件中 ,一行一个路径
Hint:输入环境变量时,不用一个一个地输入,只要拖动文件夹到 Terminal 里就可以了。
2)/etc/profile (建议不修改这个文件 )
全局(公有)配置,不管是哪个用户,登录时都会读取该文件。
3)/etc/bashrc (一般在这个文件中添加系统级环境变量)
全局(公有)配置,bash shell执行时,不管是何种方式,都会读取此文件。
4)
1.创建一个文件:
sudo touch /etc/paths.d/mysql
2.用 vim 打开这个文件(如果是以 open -t 的方式打开,则不允许编辑):
sudo vim /etc/paths.d/mysql
3.编辑该文件,键入路径并保存(关闭该 Terminal 窗口并重新打开一个,就能使用 mysql 命令了)
/usr/local/mysql/bin
据说,这样可以自己生成新的文件,不用把变量全都放到 paths 一个文件里,方便管理。
(二)单个用户设置
1)~/.bash_profile (任意一个文件中添加用户级环境变量)
(注:Linux 里面是 .bashrc 而 Mac 是 .bash_profile)
若bash shell是以login方式执行时,才会读取此文件。该文件仅仅执行一次!默认情况下,他设置一些环境变量
设置命令别名alias ll=’ls -la’
设置环境变量:
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
2)~/.bashrc 同上
如果想立刻生效,则可执行下面的语句:
$ source 相应的文件
一般环境变量更改后,重启后生效。