Creating openstack zone archive
|
zonecfg -z openstack_install create # or for kernel zone zonecfg -z openstack_kz create -t SYSsolaris-kz zoneadm -z openstack_install install zoneadm -z openstack_install boot |
Prepare the zone for uploading to Glance by first creating SSH authentication credentials to enable root SSH for OpenStack root login access Enable root ssh with key
|
root@zone-name# sed /^PermitRootLogin/s/no$/without-password/ < /etc/ssh/sshd_config > /system/volatile/sed.$$ root@zone-name# cp /etc/ssh/sshd_config /etc/ssh/sshd_config.orig root@zone-name# cp /system/volatile/sed.$$ /etc/ssh/sshd_config archiveadm create -z openstack_install /zones/openstack-ngz.uar |
How to use cinder with ZFS appliance iSCSI Configure iSCSI to each compute node
|
svcadm enable nas1a Get the zfs appliance Initiator and ip address iscsiadm add static-config iqn.1986-03.com.sun:02:76f57f55-433a-e28e-baa0-9dba77d35bd4,10.10.10.50 # Add to zfs appliance, under AddInitiators # Get the host initiator iscsiadm list initiator-node |grep "Initiator node name" iscsiadm list initiator-node |
Add a volume type with the name […]
Read More