Skip to main content

Posts

Showing posts from December, 2015

Installing the PHP "memcached" Extension on OS X MAC

To disable System Integrity Protection, boot into recovery mode by restarting and then holding  ⌘R  as you hear the startup chime. Then start the Terminal from the Utilities menu. Run the following command $ csrutil disable Then reboot. You are good to go. If you wish to turn it back on, which you probably should when you are done, follow the instructions above but instead use: $ csrutil enable The first step is to install the latest and greatest Xcode. Install the Xcode developer tools. Apple seems to have removed this option from the preferences so you'll need to handle this from the command line. $ xcode-select --install Next we will install the required dependencies. If you are not already using  Homebrew  you should be. $ brew install wget autoconf pkg-config libmemcached You will also want to make sure you have PEAR installed; instructions can be found  here  but can be summarized as follows: $ wget http://pear.php.net/go-pear.phar $ php go-pear.phar T

How to Start and Stop Background Services with Homebrew/brew

install brew services:   brew tap homebrew/services then check list of service ablable in brew by commond ": brew services list this will give you all service aviable with brew then start , stop restart by :  brew services start redis brew services restart redis brew services stop redis now you can cleanup brew by : brew services cleanup , More : brew --help brew command brew  beer

How to install memcached on Mac with Homebrew and Lunchy

install  memcached -  brew install memcached . install  Lunchy -  gem install lunchy find version of install memcached and link lunchy to memcached -  $version cp / usr / local / Cellar / memcached / $version / homebrew . mxcl . memcached . plist ~ /Library/ LaunchAgents / and start memcached with lunchy start memcached , lunchy stop memcached