The next steps show how to install Ceilometer in our existing environment. We will first begin by configuring our controller node, cc01.packtpub:
- Install the core components described previously:
# yum install openstack-ceilometer-api openstack-ceilometer- collector openstack-ceilometer-central python-ceilometerclient
- Install MongoDB, which Ceilometer needs for the backend database:
# yum --enablerepo=epel -y install mongodb-server mongodb
- Start the MongoDB server and make it autostart on machine boot:
# service mongod start # chkonfig mongod on
- Ensure that MongoDB binds to the management IP address of our cloud controller in the /etc/mongodb.conf file:
bind_ip = 172.47.0.10
- By default, MongoDB ...