I get MySQL upgrade to 5.7.9 from Homebrew on OS X El Capitan (10.11.1), and got ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) when start the service. $ brew upgrade mysql ==> Downloading https://homebrew.bintray.com/bottles/mysql-5.7.9.el_capitan.bott…
Using Corkscrew Tunnel SSH over HTTP
China National Network Firewall (GFW) shielding part free SSL certificate (e.g StartSSL) from Jun 20, 2015 and my blog has been blocked now in some place of China. It seems like shielded by detecting the secondary field of SSL certificate.…
Install Nginx and PHP-FPM on OS X
Install Nginx via Homebrew $ brew install nginx Adding Nginx to startup routine $ ln -sfv /usr/local/opt/nginx/*.plist /Library/LaunchDaemons/ $ sudo chown root:wheel /Library/LaunchDaemons/homebrew.mxcl.nginx.plist To Start $ launchctl load -w /Library/LaunchDaemons/homebrew.mxcl.nginx.plist or $ sudo nginx To Stop $ launchctl unload -w…
Sublime Text for Go Build System
Go, also commonly referred to as Go, is a programming language developed at Google in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson. It is a statically-typed language with syntax loosely derived from that of C, adding garbage collection,…