Tags:
, view all tags

Installazione e configurazione del servizio Image (Glance)


Installazione Glance

Server designato per l'installazione: hostname1.domain.

  • Installare Glance tramite il gestore di pacchetti yum :
    # yum install openstack-nova openstack-glance openstack-glance-doc openstack-nova-doc
    

Install the Image service, as root: # yum install openstack-nova openstack-glance openstack-glance-doc openstack-nova-doc After installing, you need to delete the sqlite database it creates, then change the configuration to point to the MySQL database. # rm /var/lib/glance/glance.sqlite


Configurazione keystone

  • Rimuovere, se esiste, il file /var/lib/glance/glance.db (cioè il DB sqlite). Verrà utilizzato MySQL.
    
    

Configuring the Image Service database backend

  • Start the MySQL command line client by running mysql -u root -p. Enter the MySQL root user's password when prompted.
  • To configure the MySQL database, create the glance database: mysql> CREATE DATABASE glance;
  • Create a MySQL user for the newly-created glance database that has full control of the database.
mysql> GRANT ALL ON glance.* TO 'glance'@'%' IDENTIFIED BY '[YOUR_GLANCEDB_PASSWORD]';
Enter quit at the mysql> prompt to exit MySQL.
mysql> quit

Edit the Glance configuration files and paste ini middleware files

  • Update /etc/glance/glance-api-paste.ini and configure the admin_* values under [filter:authtoken].
[filter:authtoken]
admin_tenant_name = service
admin_user = glance
admin_password = XXXXXXX

  • Add this to the end of /etc/glance/glance-api.conf and restart openstack-glance-api to pick up these changed settings.
[paste_deploy]
flavor = keystone


service openstack-glance-api restart

  • Add this to the end of /etc/glance/glance-registry.conf.
[paste_deploy]
flavor = keystone

  • Update /etc/glance/glance-registry-paste.ini, configure the admin_* values under [filter:authtoken]:
[filter:authtoken]
admin_tenant_name = service
admin_user = glance
admin_password = XXXXXXX

  • Ensure that the glance-registry pipeline section includes authtoken:
[pipeline:glance-registry]
#pipeline = context registryapp
# NOTE: use the following pipeline for keystone
pipeline = authtoken auth-context context registryapp

  • Ensure that /etc/glance/glance-registry.conf points to the MySQL database rather than sqlite.
sql_connection = mysql://glance:yourpassword@131.154.101.242/glance

  • Restart openstack-glance-registry and openstack-glance-api services, as root:
# service openstack-glance-registry restart
# service openstack-glance-api restart

  • Now you can populate or migrate the database # glance-manage db_sync

Troubleshooting

  • To begin troubleshooting, look at the logs in the /var/log/glance/registry.log or /var/log/glance/api.log
  • You can find the version of the installation by using the glance --version command. The version number 2012.1 corresponds with the Essex release.
  • Obtain a test image
# mkdir /tmp/images
# cd /tmp/images/
# wget http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-12.1_2.6.35-22_1.tar.gz
# tar -zxvf ttylinux-uec-amd64-12.1_2.6.35-22_1.tar.gz

# glance -v -d --os_username=$OS_USERNAME --os_password=$OS_PASSWORD --os_tenant=$OS_TENANT_NAME --os_auth_url=$KEYSTONE5000 add name="tty-linux-kernel" disk_format=aki container_format=aki < ttylinux-uec-amd64-12.1_2.6.35-22_1-vmlinuz
==============================================================================================[100%] 8.36M/s, ETA  0h  0m  0s
Added new image with ID: 8393828d-b226-434c-b0ea-179674fa4329
Returned the following metadata for the new image:
                       checksum => 3ed2965d3f8d877a3ee3e061fd648e9a
               container_format => aki
                     created_at => 2012-08-29T14:15:57
                        deleted => False
                     deleted_at => None
                    disk_format => aki
                             id => 8393828d-b226-434c-b0ea-179674fa4329
                      is_public => False
                       min_disk => 0
                        min_ram => 0
                           name => tty-linux-kernel
                          owner => c10d9c9f296b47f8a1212dd7a98357e0
                     properties => {}
                      protected => False
                           size => 4404752
                         status => active
                     updated_at => 2012-08-29T14:15:57
Completed in 0.7154 sec.

# glance -v -d --os_username=$OS_USERNAME --os_password=$OS_PASSWORD --os_tenant=$OS_TENANT_NAME --os_auth_url=$KEYSTONE5000 add name="tty-linux-ramdisk" disk_format=ari container_format=ari < ttylinux-uec-amd64-12.1_2.6.35-22_1-loader
========================================================================================[100%] 934.475402K/s, ETA  0h  0m  0s
Added new image with ID: 3db3e2dc-9d2f-40ff-8519-af7d04f8146a
Returned the following metadata for the new image:
                       checksum => 644cf7d6d9e7b41d527e30e8e8c685a4
               container_format => ari
                     created_at => 2012-08-29T14:28:38
                        deleted => False
                     deleted_at => None
                    disk_format => ari
                             id => 3db3e2dc-9d2f-40ff-8519-af7d04f8146a
                      is_public => False
                       min_disk => 0
                        min_ram => 0
                           name => tty-linux-ramdisk
                          owner => c10d9c9f296b47f8a1212dd7a98357e0
                     properties => {}
                      protected => False
                           size => 96629
                         status => active
                     updated_at => 2012-08-29T14:28:39
Completed in 0.4333 sec.

# glance -v -d --os_username=$OS_USERNAME --os_password=$OS_PASSWORD --os_tenant=$OS_TENANT_NAME --os_auth_url=$KEYSTONE5000 add name="tty-linux" disk_format=ami container_format=ami kernel_id=8393828d-b226-434c-b0ea-179674fa4329 ramdisk_id=3db3e2dc-9d2f-40ff-8519-af7d04f8146a < ttylinux-uec-amd64-12.1_2.6.35-22_1.img
==============================================================================================[100%] 59.7M/s, ETA  0h  0m  0s
Added new image with ID: df3422c6-58f5-4d3d-8de2-b1b522ab4152
Returned the following metadata for the new image:
                       checksum => 10047a119149e08fb206eea89832eee0
               container_format => ami
                     created_at => 2012-08-29T14:32:05
                        deleted => False
                     deleted_at => None
                    disk_format => ami
                             id => df3422c6-58f5-4d3d-8de2-b1b522ab4152
                      is_public => False
                       min_disk => 0
                        min_ram => 0
                           name => tty-linux
                          owner => c10d9c9f296b47f8a1212dd7a98357e0
                     properties => {u'kernel_id': u'8393828d-b226-434c-b0ea-179674fa4329', u'ramdisk_id': u'3db3e2dc-9d2f-40ff-8519-af7d04f8146a'}
                      protected => False
                           size => 25165824
                         status => active
                     updated_at => 2012-08-29T14:32:05
Completed in 0.5622 sec.

# glance index
ID                                   Name                           Disk Format          Container Format     Size
------------------------------------ ------------------------------ -------------------- -------------------- --------------
df3422c6-58f5-4d3d-8de2-b1b522ab4152 tty-linux                      ami                  ami                        25165824
3db3e2dc-9d2f-40ff-8519-af7d04f8146a tty-linux-ramdisk              ari                  ari                           96629
8393828d-b226-434c-b0ea-179674fa4329 tty-linux-kernel               aki                  aki                         4404752

-- PaoloVeronesi - 2012-08-30

Edit | Attach | PDF | History: r6 | r4 < r3 < r2 < r1 | Backlinks | Raw View | More topic actions...
Topic revision: r2 - 2012-10-10 - EnricoFattibene
 
  • Edit
  • Attach
This site is powered by the TWiki collaboration platformCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback