salt/doc/topics/installation/osx.rst

56 lines
1.2 KiB
ReStructuredText
Raw Normal View History

====
OS X
====
2013-02-05 23:54:22 +00:00
Dependency Installation
-----------------------
2014-02-03 14:35:34 +00:00
When installing via Homebrew, dependency resolution is handled for you.
.. code-block:: bash
2014-02-03 14:35:34 +00:00
brew install saltstack
2014-02-03 14:35:34 +00:00
When using macports, zmq, swig, and pip may need to be installed this way:
2013-02-05 23:54:22 +00:00
.. code-block:: bash
sudo port install py-zmq
2013-02-06 00:06:10 +00:00
sudo port install py27-m2crypto
sudo port install py27-crypto
sudo port install py27-msgpack
sudo port install swig-python
sudo port install py-pip
2013-02-05 23:54:22 +00:00
For installs using the OS X system python, pip install needs to use 'sudo':
2013-02-05 23:54:22 +00:00
.. code-block:: bash
2013-02-06 00:06:10 +00:00
sudo pip install salt
2013-02-05 23:54:22 +00:00
Salt-Master Customizations
--------------------------
To run salt-master on OS X, the root user maxfiles limit must be increased:
2013-02-05 23:54:22 +00:00
.. code-block:: bash
sudo launchctl limit maxfiles 4096 8192
2013-02-05 23:54:22 +00:00
And sudo add this configuration option to the /etc/salt/master file:
.. code-block:: bash
max_open_files: 8192
Now the salt-master should run without errors:
2013-02-05 23:54:22 +00:00
.. code-block:: bash
sudo /usr/local/share/python/salt-master --log-level=all
Post-installation tasks
=======================
2014-02-26 20:28:13 +00:00
Now go to the :doc:`Configuring Salt</ref/configuration/index>` page.