<?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>Библиотека знаний - homebrew</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-17T10:38:48+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://178.140.10.58:8080/doku.php?id=homebrew:install"/>
                <rdf:li rdf:resource="http://178.140.10.58:8080/doku.php?id=homebrew:mariadb10"/>
            </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=homebrew:install">
        <dc:format>text/html</dc:format>
        <dc:date>2016-06-18T00:58:41+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Homebrew + Nginx + PHP-FPM + Redis + MongoDB + MariaDB on MAC OS</title>
        <link>http://178.140.10.58:8080/doku.php?id=homebrew:install</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:os&amp;amp;do=showtag&amp;amp;tag=os&quot; class=&quot;wikilink1&quot; title=&quot;tag:os&quot; rel=&quot;tag&quot;&gt;os&lt;/a&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;a href=&quot;http://178.140.10.58:8080/doku.php?id=tag:macos&amp;amp;do=showtag&amp;amp;tag=macos&quot; class=&quot;wikilink1&quot; title=&quot;tag:macos&quot; rel=&quot;tag&quot;&gt;macos&lt;/a&gt;
&lt;/span&gt;&lt;/div&gt;

&lt;h1 class=&quot;sectionedit1&quot; id=&quot;homebrew_nginx_php-fpm_redis_mongodb_mariadb_on_mac_os&quot;&gt;Homebrew + Nginx + PHP-FPM + Redis + MongoDB + MariaDB on MAC OS&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
nano ~/install.sh
&lt;/p&gt;
&lt;pre class=&quot;code bash&quot;&gt;&lt;span class=&quot;co0&quot;&gt;#!/usr/bin/bash&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;kw2&quot;&gt;cat&lt;/span&gt; &lt;span class=&quot;co2&quot;&gt;&amp;lt;&amp;lt;DOCS
Необходимо установить Xcode и выполнить xcode-select --install
для установки Command Line Tools
&amp;nbsp;
и только после этого запустить этот скрипт
DOCS&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;kw3&quot;&gt;read&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-p&lt;/span&gt; &lt;span class=&quot;st_h&quot;&gt;&#039;Вы выполнили эти действия? [y/n]): &#039;&lt;/span&gt; answer
&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;st0&quot;&gt;&amp;quot;&lt;span class=&quot;es2&quot;&gt;$answer&lt;/span&gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;!&lt;/span&gt;= &lt;span class=&quot;st_h&quot;&gt;&#039;y&#039;&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;&lt;span class=&quot;es2&quot;&gt;$answer&lt;/span&gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;!&lt;/span&gt;= &lt;span class=&quot;st_h&quot;&gt;&#039;Y&#039;&lt;/span&gt;  &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;echo&lt;/span&gt; &lt;span class=&quot;st_h&quot;&gt;&#039;Всего доброго&#039;&lt;/span&gt;
    &lt;span class=&quot;kw3&quot;&gt;exit&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt;
&lt;span class=&quot;kw1&quot;&gt;fi&lt;/span&gt;
&amp;nbsp;
ruby &lt;span class=&quot;re5&quot;&gt;-e&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;&lt;span class=&quot;es4&quot;&gt;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&lt;/span&gt;&amp;quot;&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# Устанавливаем репозитории&lt;/span&gt;
brew tap homebrew&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;versions
brew tap homebrew&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;dupes
&lt;span class=&quot;co0&quot;&gt;#brew tap josegonzalez/homebrew-php&lt;/span&gt;
brew tap homebrew&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php
&lt;span class=&quot;co0&quot;&gt;#brew tap homebrew/homebrew-php&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#brew tap dart-lang/dartbrew tap dart-lang/dart&lt;/span&gt;
brew tap homebrew&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;nginx
&amp;nbsp;
brew update
brew upgrade
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;#brew install caskroom/cask/brew-cask&lt;/span&gt;
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; lzlib
&amp;nbsp;
&lt;span class=&quot;kw3&quot;&gt;echo&lt;/span&gt; &lt;span class=&quot;st_h&quot;&gt;&#039;
ant
atk
autoconf
autoconf-archive
automake
bash
homebrew/versions/bash-completion2
binutils
bison
boost
boost-build
cabextract
cairo
cloog
cloog-ppl015
cloog018
cmake
coreutils
cpanminus
curl
diffutils
drush
ed
elasticsearch17
erlang
file-formula
findutils
flex
fontconfig
freetype
gawk
gcc
gd
gdbm
gdk-pixbuf
geoip
gettext
git
glib
gmp
gmp4
gnu-indent
gnu-sed
gnu-tar
gnu-which
gnutls
gobject-introspection
gpatch
grep
gzip
harfbuzz
htop-osx
icu4c
isl
isl011
jasper
jpeg
less
logrotate
lzip
lzo
m4
make
makedepend
mariadb
mcrypt
memcached
mercurial
mhash
midnight-commander
mongodb
mpfr
mpfr2
nano
ncurses
nettle
nginx-full --with-upload-module
ngrep
node
nspr
openssl
openvpn
ossp-uuid
p7zip
pango
pbzip2
pcre
perl518
phantomjs
php70 --with-fpm
php70-mcrypt
php70-pcntl
php70-xdebug
php70-pdo-pgsql
pigz
pixman
pkg-config
popt
postgresql94
pyqt5
python
python3
qcachegrind
qt
qt5
rbenv
re2c
readline
reaver
redis
ruby
ruby-build
rabbitmq
s-lang
scons
sip
spidermonkey
sqlite
tuntap
unixodbc
unoconv
unrar
v8
watch
wdiff
wget
wxmac
xz&#039;&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;&amp;gt;&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;brew.lst
&amp;nbsp;
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;kw2&quot;&gt;cat&lt;/span&gt; ~&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;brew.lst&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;st0&quot;&gt;&amp;quot;s/screen//&amp;quot;&lt;/span&gt;&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;st0&quot;&gt;&amp;quot;s/brew-cask//&amp;quot;&lt;/span&gt;&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;st0&quot;&gt;&amp;quot;s/dart//&amp;quot;&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;`&lt;/span&gt;
&amp;nbsp;
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;--HEAD&lt;/span&gt; homebrew&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php70-redis
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;--HEAD&lt;/span&gt; homebrew&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php70-mongodb
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;--HEAD&lt;/span&gt; homebrew&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php70-yaml
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;--HEAD&lt;/span&gt; homebrew&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;php70-ssh2
&amp;nbsp;
brew &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; libpng &lt;span class=&quot;re5&quot;&gt;--universal&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#brew install wine --with-gcc&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#brew install wine winetricks&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#brew install php-code-sniffer&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#brew install composer&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;Homebrew + Nginx + PHP-FPM + Redis + MongoDB + MariaDB on MAC OS&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;homebrew_nginx_php-fpm_redis_mongodb_mariadb_on_mac_os&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;28-&amp;quot;} --&gt;</description>
    </item>
    <item rdf:about="http://178.140.10.58:8080/doku.php?id=homebrew:mariadb10">
        <dc:format>text/html</dc:format>
        <dc:date>2015-09-19T10:46:27+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Maria DB 10</title>
        <link>http://178.140.10.58:8080/doku.php?id=homebrew:mariadb10</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 tag label label-default mx-1&quot; title=&quot;tag:homebrew&quot; rel=&quot;tag&quot;&gt;&lt;span class=&quot;iconify&quot;  data-icon=&quot;mdi:tag-text-outline&quot;&gt;&lt;/span&gt; homebrew&lt;/a&gt;,
	&lt;a href=&quot;http://178.140.10.58:8080/doku.php?id=tag:macos&amp;amp;do=showtag&amp;amp;tag=macos&quot; class=&quot;wikilink1 tag label label-default mx-1&quot; title=&quot;tag:macos&quot; rel=&quot;tag&quot;&gt;&lt;span class=&quot;iconify&quot;  data-icon=&quot;mdi:tag-text-outline&quot;&gt;&lt;/span&gt; macos&lt;/a&gt;,
	&lt;a href=&quot;http://178.140.10.58:8080/doku.php?id=tag:osx&amp;amp;do=showtag&amp;amp;tag=osx&quot; class=&quot;wikilink1 tag label label-default mx-1&quot; title=&quot;tag:osx&quot; rel=&quot;tag&quot;&gt;&lt;span class=&quot;iconify&quot;  data-icon=&quot;mdi:tag-text-outline&quot;&gt;&lt;/span&gt; osx&lt;/a&gt;
&lt;/span&gt;&lt;/div&gt;

&lt;h1 class=&quot;sectionedit1&quot; id=&quot;maria_db_10&quot;&gt;Maria DB 10&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;brew install mariadb --cc=llvm-gcc --env=std --devel&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;Maria DB 10&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;maria_db_10&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;29-&amp;quot;} --&gt;</description>
    </item>
</rdf:RDF>
