Nova uses RAD to communicate with the Oracle Solaris Zones framework.
compute1# svcadm restart rad:local
[DEFAULT] rabbit_host=$CONTROLLER_ADMIN_NODE my_ip=$COMPUTE_ADMIN_NODE_IP host=$COMPUTE_ADMIN_NODE_X firewall_driver=nova.virt.firewall.NoopFirewallDriver keystone_ec2_url=http:/$CONTROLLER_ADMIN_NODE:5000/v2.0/ec2tokens [database] connection = mysql://nova:service-password@$CONTROLLER_ADMIN_NODE/nova [glance] host=$CONTROLLER_ADMIN_NODE [keystone_authtoken] auth_uri=http://$CONTROLLER_ADMIN_NODE:5000/v2.0/ identity_uri=http://$CONTROLLER_ADMIN_NODE:35357/ admin_user=nova admin_password=service-password admin_tenant_name=service [neutron] url=http://$CONTROLLER_ADMIN_NODE:9696 admin_username=neutron admin_password=service-password admin_tenant_name=service admin_auth_url=http://$CONTROLLER_ADMIN_NODE:5000/v2.0
[filter:authtoken] admin_tenant_name = service admin_user = nova admin_password = service-password auth_uri = http://$CONTROLLER_ADMIN_NODE:5000/v2.0/ identity_uri = http://$CONTROLLER_ADMIN_NODE:35357
compute1# pkg info evs
compute1# evsadm set-prop -p controller=ssh://evsuser@$CONTROLLER_ADMIN_NODE
The distribution of the SSH keys that establishes communication between the nodes would resemble the following figure:
compute1# ssh-keygen -N '' -f /root/.ssh/id_rsa -t rsa
compute1# cat /root/.ssh/id_rsa.pub
controller# cat location/id_rsa.pub >> /var/user/evsuser/.ssh/authorized_keys
controller# cat /var/user/evsuser/.ssh/authorized_keys
The output should include the contents of /root/.ssh/id_rsa.pub that you generated on the Compute node.
Specify Yes at the prompt for confirmation.
compute1# ssh evsuser@$CONTROLLER_ADMIN_NODE true
controller# mysql -u root -p Enter password: MySQL-root-password mysql> grant all privileges on nova.* to 'nova'@'nova-compute' identified by 'service-password'; mysql> flush privileges mysql> quit
where nova-compute is the Compute node's system name or the fully qualified domain name.
compute1# svcadm enable nova-compute