This adds swift-specific contents from the OpenStack Installation Guide in the swift repo per [1]. A separate change will remove the swift contents from the OpenStack Installation Guide for Newton per [2]. The swift install-guide structure is based on the Install Guide Cookiecutter [3]. Also adds tox.ini environment for install-guide and adds openstackdocs-theme to test-requirements.txt. [1] http://specs.openstack.org/openstack/docs-specs/specs/newton/project-specific-installguides.html [2] http://specs.openstack.org/openstack/docs-specs/specs/newton/installguide.html [3] http://git.openstack.org/cgit/openstack/installguide-cookiecutter/ Change-Id: I59b92eebaf5acc657b97bcf10d9ff2cf2db05885 Partially-Implements: blueprint projectspecificinstallguides Depends-On: Ifebc65b188c4f2ba35b61c0deae5ec24401df7f9
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
Edit the ``/etc/swift/object-server.conf`` file and complete the
 | 
						|
following actions:
 | 
						|
 | 
						|
* In the ``[DEFAULT]`` section, configure the bind IP address, bind port,
 | 
						|
  user, configuration directory, and mount point directory:
 | 
						|
 | 
						|
  .. code-block:: none
 | 
						|
 | 
						|
     [DEFAULT]
 | 
						|
     ...
 | 
						|
     bind_ip = MANAGEMENT_INTERFACE_IP_ADDRESS
 | 
						|
     bind_port = 6000
 | 
						|
     user = swift
 | 
						|
     swift_dir = /etc/swift
 | 
						|
     devices = /srv/node
 | 
						|
     mount_check = True
 | 
						|
 | 
						|
  Replace ``MANAGEMENT_INTERFACE_IP_ADDRESS`` with the IP address of the
 | 
						|
  management network on the storage node.
 | 
						|
 | 
						|
* In the ``[pipeline:main]`` section, enable the appropriate modules:
 | 
						|
 | 
						|
  .. code-block:: none
 | 
						|
 | 
						|
     [pipeline:main]
 | 
						|
     pipeline = healthcheck recon object-server
 | 
						|
 | 
						|
  .. note::
 | 
						|
 | 
						|
     For more information on other modules that enable additional features,
 | 
						|
     see the `Deployment Guide <http://docs.openstack.org/developer/swift/deployment_guide.html>`__.
 | 
						|
 | 
						|
* In the ``[filter:recon]`` section, configure the recon (meters) cache
 | 
						|
  and lock directories:
 | 
						|
 | 
						|
  .. code-block:: none
 | 
						|
 | 
						|
     [filter:recon]
 | 
						|
     use = egg:swift#recon
 | 
						|
     ...
 | 
						|
     recon_cache_path = /var/cache/swift
 | 
						|
     recon_lock_path = /var/lock
 |