Difference between revisions of "OpenStack: Installing Sahara"

From Define Wiki
Jump to navigation Jump to search
Line 1: Line 1:
  
 +
Install RDO sahara package
 
<syntaxhighlight>
 
<syntaxhighlight>
 
# yum install openstack-sahara
 
# yum install openstack-sahara
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
Create Sahara database
 
<syntaxhighlight>
 
<syntaxhighlight>
mysql -u root -p
+
# mysql -u root -p
 
<mysql_password>
 
<mysql_password>
  
Line 15: Line 17:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
Update sahar config in file /etc/sahara/sahara.conf
 
<syntaxhighlight>
 
<syntaxhighlight>
 
[DEFAULT]
 
[DEFAULT]
Line 45: Line 48:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
Create user, service and endpoints for Sahara
 
<syntaxhighlight>
 
<syntaxhighlight>
 
# openstack user create --domain default --password-prompt sahara
 
# openstack user create --domain default --password-prompt sahara
Line 58: Line 62:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
Edit mysql config at /etc/my.cnf
 
<syntaxhighlight>
 
<syntaxhighlight>
 
max_allowed_packet = 256M
 
max_allowed_packet = 256M
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
Restart db, install extra python packages and update sahara db
 
<syntaxhighlight>
 
<syntaxhighlight>
#pip install debtcollector netaddr monotonic python-dateutil PyMySQL fasteners paste PasteDeploy Routes keystoneauth1 prettytable netifaces enum-compat pycrypto ecdsa functools32 cliff cryptography
+
# service restart mysql
 +
# pip install debtcollector netaddr monotonic python-dateutil PyMySQL fasteners paste PasteDeploy Routes keystoneauth1 prettytable netifaces enum-compat pycrypto ecdsa functools32 cliff cryptography
  
#sahara-db-manage --config-file /etc/sahara/sahara.conf upgrade head
+
# sahara-db-manage --config-file /etc/sahara/sahara.conf upgrade head
  
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
Enable sahara service and start it
 
<syntaxhighlight>
 
<syntaxhighlight>
  
# systemctl enable openstack-sahara-api
+
# systemctl enable openstack-sahara-all
# systemctl enable openstack-sahara-engine
+
# systemctl start openstack-sahara-all
 
 
# systemctl start openstack-sahara-api
 
# systemctl start openstack-sahara-engine
 
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 10:58, 14 July 2016

Install RDO sahara package

# yum install openstack-sahara

Create Sahara database

# mysql -u root -p
<mysql_password>

CREATE DATABASE sahara;
GRANT ALL PRIVILEGES ON sahara.* TO 'sahara'@'localhost' \
  IDENTIFIED BY 'SAHARA_DBPASS';
GRANT ALL PRIVILEGES ON sahara.* TO 'sahara'@'%' \
  IDENTIFIED BY 'SAHARA_DBPASS';

Update sahar config in file /etc/sahara/sahara.conf

[DEFAULT]
use_neutron=True
use_namespaces=True
rpc_backend = rabbit
infrastructure_engine=heat

[database]
connection=mysql://sahara:SAHARA_DBPASS@controller/sahara

[keystone_authtoken] 
auth_uri=http://controller:5000/v2.0/
identity_uri=http://controller:35357/

[oslo_messaging_rabbit]
rabbit_host=controller
rabbit_port=5672
rabbit_hosts=$rabbit_host:$rabbit_port
rabbit_userid=guest
rabbit_password=guest
rabbit_virtual_host=/

[oslo_messaging_notifications]
enable = true

[oslo_messaging_notifications]
driver = messaging

Create user, service and endpoints for Sahara

# openstack user create --domain default --password-prompt sahara
# openstack role add --project service --user sahara admin
# openstack service create --name sahara --description  "Sahara Data Processing" data-processing

# openstack endpoint create --region RegionOne data-processing  public http://controller:8386/v1.1/%\(tenant_id\)s

# openstack endpoint create --region RegionOne data-processing  admin http://controller:8386/v1.1/%\(tenant_id\)s

# openstack endpoint create --region RegionOne data-processing  internal http://controller:8386/v1.1/%\(tenant_id\)s

Edit mysql config at /etc/my.cnf

max_allowed_packet = 256M

Restart db, install extra python packages and update sahara db

# service restart mysql
# pip install debtcollector netaddr monotonic python-dateutil PyMySQL fasteners paste PasteDeploy Routes keystoneauth1 prettytable netifaces enum-compat pycrypto ecdsa functools32 cliff cryptography

# sahara-db-manage --config-file /etc/sahara/sahara.conf upgrade head

Enable sahara service and start it

# systemctl enable openstack-sahara-all
# systemctl start openstack-sahara-all