OpenStack HOWTO
From Funtoo Linux
Installation
This section contains a work-in-progress list of steps to get OpenStack up and running under Funtoo Linux:
# emerge rabbitmq-server # rc-update add rabbitmq default # rc
RabbitMQ is now running. Now let's create an openstack user with password foobar:
# rabbitmqctl add_user openstack foobar
Creating user "openstack" ...
...done.
Now, let's get Keystone up and running. Let's emerge it:
# emerge keystone # cd /etc/keystone # cp keystone.conf.sample keystone.conf
Note that admin_token is set to ADMIN by default. This is the master password for Keystone. You may want to change this to something harder to guess. We can disable admin_token later for enhanced security.
# rc-update add keystone default # rc