Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Run puppet with the ocata modules/tags
  2. Run apt-get dist-upgrade
  3. Run puppet with the ocata modules/tags
  4. Restart neutron services

Nova

Create nova cells database on a mysql host:

Code Block
create database nova_cell0;
grant all privileges on nova_cell0.* TO 'nova'@'<mgmt-nett>' IDENTIFIED BY 'NOVA DB PASSORD';
grant all privileges on nova_cell0.* TO 'nova'@'localhost' IDENTIFIED BY 'NOVA DB PASSORD';

On the services-node:

Code Block
# nova-manage cell_v2 simple_cell_setup --transport-url rabbit://rabbit:<KANINPASSORD>@<KANIN-IP>/

 

On the API node:

  1. Run puppet with the ocata modules/tags
  2. Run apt-get dist-upgrade
  3. Run puppet again
  4. Perform the DB sync
    1. nova-manage db sync
    2. nova-manage api_db sync
  5. Restart nova services

...