Difference between revisions of "OpenStack: Installing Sahara"
Jump to navigation
Jump to search
(Basic installation and config) |
|||
| Line 2: | Line 2: | ||
<syntaxhighlight> | <syntaxhighlight> | ||
# yum install openstack-sahara | # yum install openstack-sahara | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | <syntaxhighlight> | ||
| + | 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'; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| Line 12: | Line 23: | ||
[database] | [database] | ||
| − | connection=mysql:// | + | connection=mysql://sahara:SAHARA_DBPASS@host/sahara |
[keystone_authtoken] | [keystone_authtoken] | ||
Revision as of 10:48, 14 July 2016
# yum install openstack-saharamysql -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';[DEFAULT]
use_neutron=True
use_namespaces=True
rpc_backend = rabbit
infrastructure_engine=heat
[database]
connection=mysql://sahara:SAHARA_DBPASS@host/sahara
[keystone_authtoken]
auth_uri=http://127.0.0.1:5000/v2.0/
identity_uri=http://127.0.0.1:35357/
[oslo_messaging_rabbit]
rabbit_host=localhost
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