<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://178.140.10.58:8080/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://178.140.10.58:8080/feed.php">
        <title>Библиотека знаний - brew</title>
        <description>Заметки IT программиста</description>
        <link>http://178.140.10.58:8080/</link>
        <image rdf:resource="http://178.140.10.58:8080/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-04-17T13:37:21+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://178.140.10.58:8080/doku.php?id=brew:server-setup"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://178.140.10.58:8080/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>Библиотека знаний</title>
        <link>http://178.140.10.58:8080/</link>
        <url>http://178.140.10.58:8080/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="http://178.140.10.58:8080/doku.php?id=brew:server-setup">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-30T21:01:43+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>MNMP + Memcached</title>
        <link>http://178.140.10.58:8080/doku.php?id=brew:server-setup</link>
        <description>&lt;div class=&quot;tags&quot;&gt;&lt;span&gt;
	&lt;a href=&quot;http://178.140.10.58:8080/doku.php?id=tag:homebrew&amp;amp;do=showtag&amp;amp;tag=homebrew&quot; class=&quot;wikilink1&quot; title=&quot;tag:homebrew&quot; rel=&quot;tag&quot;&gt;homebrew&lt;/a&gt;
&lt;/span&gt;&lt;/div&gt;

&lt;h1 class=&quot;sectionedit1&quot; id=&quot;mnmp_memcached&quot;&gt;MNMP + Memcached&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;pre class=&quot;code bash&quot;&gt;&lt;span class=&quot;co0&quot;&gt;#!/bin/bash&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# install homebrew&#039;s official php tap&lt;/span&gt;
brew tap josegonzalez&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew-php
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# install homebrew-dupes (required to install zlib, php53&#039;s dependency)&lt;/span&gt;
brew tap homebrew&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;dupes
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# install nginx + mysql + php 5.3 + php-fpm + apc + xdebug&lt;/span&gt;
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; nginx mysql
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;--with-fpm&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;--with-mysql&lt;/span&gt; php53
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; php53-zenddebugger php53-memcache php53-gearman php53-apc php53-mcrypt
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; memcached
&amp;nbsp;
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# add apc + xdebug configs to php.ini:&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;kw2&quot;&gt;grep&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-q&lt;/span&gt; zenddebugger &lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;usr&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;local&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;etc&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;5.3&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php.ini&lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;then&lt;/span&gt;
  &lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;The PHP config file is edited&amp;quot;&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;else&lt;/span&gt;
&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;
&amp;nbsp;
[apc]
extension = &lt;span class=&quot;es1&quot;&gt;\&amp;quot;&lt;/span&gt;&lt;span class=&quot;es5&quot;&gt;`brew --prefix php53-apc`&lt;/span&gt;/apc.so&lt;span class=&quot;es1&quot;&gt;\&amp;quot;&lt;/span&gt;
apc.enabled = 1
apc.shm_segments = 1
apc.shm_size = 64M
apc.ttl = 7200
apc.user_ttl = 7200
apc.num_files_hint = 1024
apc.mmap_file_mask = /tmp/apc.XXXXXX
apc.enable_cli = 1
&amp;nbsp;
[zenddebugger]
zend_extension = &lt;span class=&quot;es1&quot;&gt;\&amp;quot;&lt;/span&gt;&lt;span class=&quot;es5&quot;&gt;`brew --prefix php53-zenddebugger`&lt;/span&gt;/zenddebugger.so&lt;span class=&quot;es1&quot;&gt;\&amp;quot;&lt;/span&gt;
&amp;nbsp;
&amp;quot;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;&amp;gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;usr&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;local&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;etc&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;5.3&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php.ini
&lt;span class=&quot;kw1&quot;&gt;fi&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# set up mysql to run as user account&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# install mysql db default&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;!&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-d&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;usr&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;local&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;var&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;mysql &lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;; &lt;span class=&quot;kw1&quot;&gt;then&lt;/span&gt;
	&lt;span class=&quot;kw3&quot;&gt;unset&lt;/span&gt; TMPDIR
	&lt;span class=&quot;kw2&quot;&gt;rm&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-R&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;usr&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;local&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;var&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;mysql&lt;span class=&quot;sy0&quot;&gt;/*&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-y&lt;/span&gt;
	mysql_install_db &lt;span class=&quot;re5&quot;&gt;--verbose&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;--user&lt;/span&gt;=&lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;kw2&quot;&gt;whoami&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;--basedir&lt;/span&gt;=&lt;span class=&quot;st0&quot;&gt;&amp;quot;&lt;span class=&quot;es4&quot;&gt;$(brew --prefix mysql)&lt;/span&gt;&amp;quot;&lt;/span&gt; \
		&lt;span class=&quot;re5&quot;&gt;--datadir&lt;/span&gt;=&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;usr&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;local&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;var&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;mysql &lt;span class=&quot;re5&quot;&gt;--tmpdir&lt;/span&gt;=&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;tmp
&lt;span class=&quot;kw1&quot;&gt;fi&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# launch mysql on startup&lt;/span&gt;
&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;Launch MySql&amp;quot;&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-f&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.mysql.plist &lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;; &lt;span class=&quot;kw1&quot;&gt;then&lt;/span&gt;
	launchctl unload &lt;span class=&quot;re5&quot;&gt;-w&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.mysql.plist
	&lt;span class=&quot;kw2&quot;&gt;rm&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.mysql.plist
&lt;span class=&quot;kw1&quot;&gt;fi&lt;/span&gt;
&lt;span class=&quot;kw2&quot;&gt;cp&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;brew &lt;span class=&quot;re5&quot;&gt;--prefix&lt;/span&gt; mysql&lt;span class=&quot;sy0&quot;&gt;`/&lt;/span&gt;homebrew.mxcl.mysql.plist ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-f&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;tmp&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;mysql.sock &lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;; &lt;span class=&quot;kw1&quot;&gt;then&lt;/span&gt;
	&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;usr&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;local&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;bin&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;mysqladmin &lt;span class=&quot;re5&quot;&gt;-uroot&lt;/span&gt; shutdown
&lt;span class=&quot;kw1&quot;&gt;fi&lt;/span&gt;
launchctl load &lt;span class=&quot;re5&quot;&gt;-w&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.mysql.plist
&amp;nbsp;
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# launch php-fpm on startup&lt;/span&gt;
&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;Launch PHP-FPM&amp;quot;&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-f&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew-php.josegonzalez.php53.plist &lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;; &lt;span class=&quot;kw1&quot;&gt;then&lt;/span&gt;
	launchctl unload &lt;span class=&quot;re5&quot;&gt;-w&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew-php.josegonzalez.php53.plist
	&lt;span class=&quot;kw2&quot;&gt;rm&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew-php.josegonzalez.php53.plist
&lt;span class=&quot;kw1&quot;&gt;fi&lt;/span&gt;
&lt;span class=&quot;kw2&quot;&gt;cp&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;brew &lt;span class=&quot;re5&quot;&gt;--prefix&lt;/span&gt; php53&lt;span class=&quot;sy0&quot;&gt;`/&lt;/span&gt;homebrew-php.josegonzalez.php53.plist ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;
launchctl load &lt;span class=&quot;re5&quot;&gt;-w&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew-php.josegonzalez.php53.plist
&amp;nbsp;
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# launch nginx at startup as root (in order to listen on privileged port 80):&lt;/span&gt;
&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;Launch Nginx&amp;quot;&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-f&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.nginx.plist &lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;; &lt;span class=&quot;kw1&quot;&gt;then&lt;/span&gt;
	launchctl unload &lt;span class=&quot;re5&quot;&gt;-w&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.nginx.plist
	&lt;span class=&quot;kw2&quot;&gt;rm&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.nginx.plist
&lt;span class=&quot;kw1&quot;&gt;fi&lt;/span&gt;
&lt;span class=&quot;kw2&quot;&gt;cp&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;brew &lt;span class=&quot;re5&quot;&gt;--prefix&lt;/span&gt; nginx&lt;span class=&quot;sy0&quot;&gt;`/&lt;/span&gt;homebrew.mxcl.nginx.plist ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;
&lt;span class=&quot;kw2&quot;&gt;sed&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-i&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-e&lt;/span&gt; &lt;span class=&quot;st_h&quot;&gt;&#039;s/`whoami`/root/g&#039;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;brew &lt;span class=&quot;re5&quot;&gt;--prefix&lt;/span&gt; nginx&lt;span class=&quot;sy0&quot;&gt;`/&lt;/span&gt;homebrew.mxcl.nginx.plist
launchctl load &lt;span class=&quot;re5&quot;&gt;-w&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.nginx.plist
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# launch memcached&lt;/span&gt;
&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;Launch Memcached&amp;quot;&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-f&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.memcached.plist &lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;; &lt;span class=&quot;kw1&quot;&gt;then&lt;/span&gt;
	launchctl unload &lt;span class=&quot;re5&quot;&gt;-w&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.memcached.plist
	&lt;span class=&quot;kw2&quot;&gt;rm&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.memcached.plist
&lt;span class=&quot;kw1&quot;&gt;fi&lt;/span&gt;
&lt;span class=&quot;kw2&quot;&gt;cp&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;brew &lt;span class=&quot;re5&quot;&gt;--prefix&lt;/span&gt; memcached&lt;span class=&quot;sy0&quot;&gt;`/&lt;/span&gt;homebrew.mxcl.memcached.plist ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;
launchctl load &lt;span class=&quot;re5&quot;&gt;-w&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;Library&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;homebrew.mxcl.memcached.plist 
&amp;nbsp;
&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;
POST-INSTALL PROCEDURE:
=======================
1) configure intellij / netbeans / phpstorm / eclipse pdt to connect to xdebug on port 9009
&amp;quot;&lt;/span&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;MNMP + Memcached&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;mnmp_memcached&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;19-&amp;quot;} --&gt;</description>
    </item>
</rdf:RDF>
