Chinaunix首页 | 论坛 | 博客
  • 博客访问: 93670
  • 博文数量: 62
  • 博客积分: 125
  • 博客等级: 入伍新兵
  • 技术积分: 350
  • 用 户 组: 普通用户
  • 注册时间: 2012-01-18 15:16
文章分类

全部博文(62)

文章存档

2012年(62)

我的朋友

分类: IT业界

2012-01-18 15:23:00

尝试安装 OpenStack(Release Diablo),找来3台台式机来做实验,步骤按照以下链接:

第一次没有成功,而且,按照链接里的步骤,实在比较繁琐。试着把过程写成 shell 脚本,再试,就舒服多了。

准备工作:三台电脑,两台server,一台工作站。server安装 64位 Ubuntu Server 11.10,工作站按照要求,准备安装 64位 Ubuntu Desktop 11.10。

server1安装时用LVM配置主分区,留下约200G分区空着不用,记住设备编号,我的实验环境是 /dev/sda5(原文中给的例子是 /dev/sda6,编写脚本时没有改过来,但执行时系统自动选择了 /dev/sda5)。

脚本中每执行一步就需要敲一次回车键,为的是查看指令执行是否正确,


openstack_server1_package_install_1.sh

  1. #!/bin/bash  
  2. echo "Hello there. Perform apt-get update first."  
  3.   
  4. sudo apt-get update  
  5. echo  
  6. echo "apt-get update Done! Press ENTER to perform apt-get upgrade..."  
  7. read anykey  
  8.   
  9. sudo apt-get upgrade  
  10. echo  
  11. echo  
  12. echo  
  13. echo "apt-get upgrade Done! Press ENTER to install bridge-utils..."  
  14. read anykey  
  15.   
  16. sudo apt-get install -y bridge-utils  
  17. echo  
  18. echo  
  19. echo "bridge-utils installation Done! Press ENTER to install ntp..."  
  20. read anykey  
  21.   
  22. sudo apt-get install -y ntp  
  23. echo  
  24. echo  
  25. echo  
  26. echo "ntp installation Done! Press ENTER to install Mysql, root password for mysql is 'mygreatsecret'..."  
  27. read anykey  
  28.   
  29. sudo apt-get install -y mysql-server  
  30. echo  
  31. echo  
  32. echo  
  33. echo "mysql installation Done! Press ENTER to Configure mysql for glance & nova ..."  
  34. read anykey  
  35.   
  36. echo "Create a database named glance."  
  37. sudo mysql -uroot -pmygreatsecret -e 'CREATE DATABASE glance;'  
  38. echo   
  39. echo "Create a user named glancedbadmin"  
  40. sudo mysql -uroot -pmygreatsecret -e 'CREATE USER glancedbadmin;'  
  41. echo   
  42. echo "Grant all privileges for glancedbadmin on the Database glance"  
  43. sudo mysql -uroot -pmygreatsecret -e "GRANT ALL PRIVILEGES ON glance.* TO 'glancedbadmin'@'%' ;"  
  44. echo   
  45. echo "Create a password for the user glanceadmin"  
  46. sudo mysql -uroot -pmygreatsecret -e "SET PASSWORD FOR 'glancedbadmin'@'%' = PASSWORD('glancesecret');"  
  47. echo   
  48. echo "Create a database named nova."  
  49. sudo mysql -uroot -pmygreatsecret -e 'CREATE DATABASE nova;'  
  50. echo  
  51. echo "Create a user named novadbadmin which has access to nova related databases."  
  52. sudo mysql -uroot -pmygreatsecret -e 'CREATE USER novadbadmin;'  
  53. echo  
  54. echo "Grant all privileges for novadbadmin on the Database nova."  
  55. sudo mysql -uroot -pmygreatsecret -e "GRANT ALL PRIVILEGES ON nova.* TO 'novadbadmin'@'%' ;"  
  56. echo   
  57. echo "Set password for novadbadmin."  
  58. sudo mysql -uroot -pmygreatsecret -e "SET PASSWORD FOR 'novadbadmin'@'%' = PASSWORD('novasecret');"  
  59. echo   
  60. echo "mysql configuratioin Done! Press ENTER to install glance..."  
  61. read anykey  
  62.   
  63. sudo apt-get install -y glance  
  64. echo  
  65. echo  
  66. echo  
  67. echo "glance installation Done! Press ENTER to install messaging queue server..."  
  68. read anykey  
  69.   
  70. sudo apt-get install -y rabbitmq-server   
  71. echo  
  72. echo  
  73. echo  
  74. echo "rabbitmq-server installation Done! Press ENTER to install nova packages..."  
  75. read anykey  
  76.   
  77. sudo apt-get install nova-common nova-doc python-nova nova-api nova-network nova-volume nova-objectstore nova-scheduler nova-compute  
  78. echo  
  79. echo  
  80. echo  
  81. echo "nova packages installation Done! Press ENTER to install euca2ools..."  
  82. read anykey  
  83.   
  84. sudo apt-get install -y euca2ools  
  85. echo  
  86. echo  
  87. echo  
  88. echo "euca2ools installation Done! Press ENTER to install unzip..."  
  89. read anykey  
  90.   
  91. sudo apt-get install -y unzip  
  92. echo  
  93. echo  
  94. echo  
  95. echo "unzip installation Done! Press ENTER to install iscsitarget..."  
  96. read anykey  
  97.   
  98. sudo apt-get -y install iscsitarget iscsitarget-dkms  
  99. echo   
  100. echo   
  101. echo   
  102. echo "iscsitarget installation Done! Press ENTER to Enable iscsitarget ..."  
  103. read anykey  
  104.   
  105. sudo sed -i 's/false/true/g' /etc/default/iscsitarget  
  106. echo   
  107. echo   
  108. echo "Enabling iscsitarget Done! Press ENTER to Create a Physical Volume..."  
  109. read anykey  
  110.   
  111. sudo pvcreate /dev/sda6  
  112. echo   
  113. echo   
  114. echo   
  115. echo "Creating a Physical Volume servicet Done! "  
  116. echo "Press ENTER to Create a Volume Group named nova-volumes."  
  117. read anykey  
  118.   
  119. sudo vgcreate nova-volumes /dev/sda5  
  120. echo   
  121. echo "Creating a Volume Group named nova-volumes Done! "  
  122. echo "Press ENTER to Change the ownership of the /etc/nova folder and permissions for /etc/nova/nova.conf..."  
  123. read anykey  
  124.   
  125. sudo chown -R root:nova /etc/nova  
  126. sudo chmod 644 /etc/nova/nova.conf  
  127. echo  
  128. echo  
  129. echo  
  130. echo "Operation Done! "  
  131. echo "Now refer to openstack_server1_configuration1.txt file to configure system."  
  132. echo "Restart your server after the configuration is done." 

openstack_server1_configuration1.txt

  1. Openstack Server1 Configuration:  
  2.   
  3. 1. Edit /etc/ntp.conf  
  4. BELOW server ntp.ubuntu.com +   
  5. server 127.127.1.0  
  6. fudge 127.127.1.0 stratum 10  
  7.   
  8. 2. Edit /etc/mysql/my.cnf.   
  9. Replace 'bind-address = 127.0.0.1' with:  
  10. bind-address = 0.0.0.0  
  11.   
  12. 3. Edit the /etc/nova/nova.conf, add lines below:  
  13. --s3_host=10.10.10.2  
  14. --rabbit_host=10.10.10.2  
  15. --cc_host=10.10.10.2  
  16. --nova_url=
  17. --fixed_range=192.168.0.0/16  
  18. --network_size=8  
  19. --routing_source_ip=10.10.10.2  
  20. --sql_connection=mysql://novadbadmin:novasecret@10.10.10.2/nova  
  21. --glance_api_servers=192.168.3.2:9292  
  22. --image_service=nova.image.glance.GlanceImageService  
  23. --iscsi_ip_prefix=192.168.  
  24. --vlan_interface=br100  
  25. --public_interface=eth0  
  26.   
  27. 4. Restart your server  

openstack_server1_package_install_2.sh

  1. #!/bin/bash  
  2. echo   
  3. echo "Create nova schema in the MySQL Database."  
  4. sudo nova-manage db sync  
  5. echo   
  6. echo   
  7. echo   
  8. echo "Creating nova schema in the MySQL Database Done! "  
  9. echo "Press ENTER to Provide a range of IPs to be attached to the instances..."  
  10. read anykey  
  11.   
  12. sudo nova-manage network create private 192.168.4.0/24 1 256  
  13. echo   
  14. echo   
  15. echo   
  16. echo "Providing a range of IPs to be attached to the instances Done! "  
  17. echo "Press ENTER to Allocate 32 pubic IP addresses for use with the instances starting from 10.10.10.225..."  
  18. read anykey  
  19.   
  20. sudo nova-manage floating create --ip_range=10.10.10.224/27  
  21. echo   
  22. echo   
  23. echo   
  24. echo "Allocating 32 pubic IP addresses for use with the instances starting from 10.10.10.225 Done! "  
  25. echo "Press ENTER to Create a user with admin rights on nova..."  
  26. read anykey  
  27.   
  28. sudo nova-manage user admin novaadmin  
  29. echo   
  30. echo   
  31. echo   
  32. echo "Creating a user with admin rights on nova Done! "  
  33. echo "Press ENTER to Create a project named proj..."  
  34. read anykey  
  35.   
  36. sudo nova-manage project create proj novaadmin  
  37. echo   
  38. echo   
  39. echo   
  40. echo "Creating a project named proj Done! "  
  41. echo "Press ENTER to restart you server..."  
  42. read anykey  
  43.   
  44. sudo reboot  

openstack_server1_package_install_3.sh

  1. #!/bin/bash  
  2. echo "Create a directory to download nova credentials and download the zip file."  
  3. mkdir /home/localadmin/creds  
  4. echo   
  5. echo   
  6. echo   
  7. echo "Creating a directory to download nova credentials and download the zip file Done! "  
  8. echo "Press ENTER to Generate and save credentials for accessing/managing the nova cloud..."  
  9. read anykey  
  10.   
  11. sudo nova-manage project zipfile proj novaadmin /home/localadmin/creds/novacreds.zip  
  12. echo   
  13. echo   
  14. echo   
  15. echo "Generating and save credentials for accessing/managing the nova cloud Done! "  
  16. echo "Press ENTER to continue and follow the instructions..."  
  17. read anykey  
  18.   
  19. echo   
  20. echo "Contents of novacreds.zip are required to use euca2ools to manage the cloud infrastructure and you will need to transfer this zip file to any machine from where you want to run the commands from euca2ools. We will be using these credentials from client1 as well."  
  21. echo   
  22. echo "Navigate in to the folder created and extract the files and change their ownership."  
  23. cd /home/localadmin/creds  
  24. unzip novacreds.zip  
  25. sudo chown localadmin:localadmin /home/localadmin/creds/ -R  
  26. echo   
  27. echo "In Diablo, by default novarc file contains EC2_ACCESS_KEY in a format that is not usable by euca-* commands. To fix this:"  
  28. echo "Execute sudo nova-manage user exports novaadmin"  
  29. echo "The output will be something like:"  
  30. echo "export EC2_ACCESS_KEY="  
  31. echo "export EC2_SECRET_KEY="  
  32. echo "Now let's do it. Press ENTER..."  
  33. read anykey  
  34.   
  35. sudo nova-manage user exports novaadmin  
  36. echo   
  37. echo "You see the keys? Good!"  
  38. echo "Open the /home/localadmin/creds/novarc file and make sure the line below exsists:"  
  39. echo "'export EC2_ACCESS_KEY=":proj'"  
  40. echo   
  41. echo "Next, better reboot you server. And do the following..."  
  42. echo  
  43. echo  
  44. echo "$ source /home/localadmin/creds/novarc"  
  45. echo "$ euca-describe-availability-zones verbose"  
  46. echo "If you see something like the following with all components happy, it means that the set up is ready to be used."  
  47. echo   
  48. echo "AVAILABILITYZONE    nova available"  
  49. echo "AVAILABILITYZONE    |- server1"  
  50. echo "AVAILABILITYZONE    | |- nova-compute       enabled :-) 2011-09-29 07:26:04"  
  51. echo "AVAILABILITYZONE    | |- nova-scheduler     enabled :-) 2011-09-29 07:26:04"  
  52. echo "AVAILABILITYZONE    | |- nova-network       enabled :-) 2011-09-29 07:26:07"  
  53. echo "AVAILABILITYZONE    | |- nova-volume        enabled :-) 2011-09-29 07:26:06"  
  54. echo "Good luck!"  
  55. echo "Now, reboot your server."  
  56. echo  




安装详细过程:

  1. localadmin@server1:~$ sudo ./openstack_server1_package_install_1.sh   
  2. Hello there. Perform apt-get update first.  
  3. Ign http://security.ubuntu.com oneiric-security InRelease                                                     
  4. Ign 
  5. Ign 
  6. Ign 
  7. Hit http://security.ubuntu.com oneiric-security Release.gpg  
  8. Hit 
  9. Hit http://security.ubuntu.com oneiric-security Release  
  10. Hit 
  11. Hit http://security.ubuntu.com oneiric-security/main Sources  
  12. Hit 
  13. Hit http://security.ubuntu.com oneiric-security/restricted Sources  
  14. Hit http://security.ubuntu.com oneiric-security/universe Sources  
  15. Hit http://security.ubuntu.com oneiric-security/multiverse Sources  
  16. Hit 
  17. Hit 
  18. Hit http://security.ubuntu.com oneiric-security/main amd64 Packages     
  19. Hit http://security.ubuntu.com oneiric-security/restricted amd64 Packages  
  20. Hit http://security.ubuntu.com oneiric-security/universe amd64 Packages  
  21. Hit http://security.ubuntu.com oneiric-security/multiverse amd64 Packages  
  22. Hit http://security.ubuntu.com oneiric-security/main i386 Packages  
  23. Hit http://security.ubuntu.com oneiric-security/restricted i386 Packages  
  24. Hit http://security.ubuntu.com oneiric-security/universe i386 Packages  
  25. Hit http://security.ubuntu.com oneiric-security/multiverse i386 Packages  
  26. Hit http://security.ubuntu.com oneiric-security/main TranslationIndex  
  27. Hit 
  28. Hit 
  29. Hit 
  30. Hit 
  31. Hit 
  32. Hit 
  33. Hit http://security.ubuntu.com oneiric-security/multiverse TranslationIndex  
  34. Hit http://security.ubuntu.com oneiric-security/restricted TranslationIndex  
  35. Hit 
  36. Hit 
  37. Hit 
  38. Hit 
  39. Hit 
  40. Hit 
  41. Hit 
  42. Hit 
  43. Hit 
  44. Hit http://security.ubuntu.com oneiric-security/universe TranslationIndex  
  45. Hit http://security.ubuntu.com oneiric-security/main Translation-en  
  46. Hit 
  47. Hit 
  48. Hit 
  49. Hit 
  50. Hit 
  51. Hit 
  52. Hit http://security.ubuntu.com oneiric-security/multiverse Translation-en  
  53. Hit http://security.ubuntu.com oneiric-security/restricted Translation-en  
  54. Hit http://security.ubuntu.com oneiric-security/universe Translation-en  
  55. Hit 
  56. Hit 
  57. Hit 
  58. Hit 
  59. Hit 
  60. Hit 
  61. Hit 
  62. Hit 
  63. Hit 
  64. Hit 
  65. Hit 
  66. Hit 
  67. Hit 
  68. Hit 
  69. Hit 
  70. Hit 
  71. Hit 
  72. Hit 
  73. Hit 
  74. Hit 
  75. Hit 
  76. Hit 
  77. Hit 
  78. Hit 
  79. Hit 
  80. Hit 
  81. Hit 
  82. Hit 
  83. Hit 
  84. Hit 
  85. Hit 
  86. Hit 
  87. Hit 
  88. Hit 
  89. Hit 
  90. Hit 
  91. Hit 
  92. Hit 
  93. Hit 
  94. Hit 
  95. Reading package lists... Done  
  96.   
  97.   
  98.   
  99. apt-get update Done! Press ENTER to perform apt-get upgrade...  
  100.   
  101. Reading package lists... Done  
  102. Building dependency tree         
  103. Reading state information... Done  
  104. The following packages have been kept back:  
  105.   linux-headers-server linux-image-server linux-server  
  106. The following packages will be upgraded:  
  107.   accountsservice apport bind9-host bzip2 command-not-found command-not-found-data dnsutils initramfs-tools initramfs-tools-bin initscripts isc-dhcp-client  
  108.   isc-dhcp-common libaccountsservice0 libbind9-60 libbz2-1.0 libdns69 libfreetype6 libgssapi-krb5-2 libisc62 libisccc60 libisccfg62 libk5crypto3 libkrb5-3  
  109.   libkrb5support0 libldap-2.4-2 liblwres60 libpam-modules libpam-modules-bin libpam-runtime libpam0g python-apport python-gobject python-gobject-cairo  
  110.   python-problem-report sysv-rc sysvinit-utils tzdata update-manager-core upstart  
  111. 39 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.  
  112. Need to get 6,101 kB of archives.  
  113. After this operation, 8,192 B disk space will be freed.  
  114. Do you want to continue [Y/n]? y  
  115. Get:1 [56.7 kB]  
  116. Get:2 [38.5 kB]  
  117. Get:3 [274 kB]  
  118. Get:4 [84.3 kB]                                                      
  119. Get:5 [118 kB]                                                   
  120. Get:6 [351 kB]                                                          
  121. Get:7 [24.1 kB]                                                   
  122. Get:8 [184 kB]                                                        
  123. Get:9 [335 kB]                                                            
  124. Get:10 [37.8 kB]                                                           
  125. Get:11 [33.3 kB]                                                      
  126. Get:12 [45.0 kB]                                                        
  127. Get:13 [465 kB]                                                             
  128. Get:14 [287 kB]                                                   
  129. Get:15 [339 kB]                                                   
  130. Get:16 [51.7 kB]                                                              
  131. Get:17 [11.9 kB]                                                        
  132. Get:18 [63.9 kB]                                                  
  133. Get:19 [44.1 kB]                                                           
  134. Get:20 [27.5 kB]                                                     
  135. Get:21 [288 kB]                                                                   
  136. Get:22 [38.5 kB]                                                    
  137. Get:23 [29.4 kB]                                                
  138. Get:24 [147 kB]                                                        
  139. Get:25 [55.3 kB]                                                     
  140. Get:26 [160 kB]                                                        
  141. Get:27 [675 kB]                                                        
  142. Get:28 [17.5 kB]                                                     
  143. Get:29 [41.9 kB]                                                    
  144. Get:30 [37.9 kB]                                                     
  145. Get:31 [22.9 kB]                                                    
  146. Get:32 [971 kB]                                                  
  147. Get:33 [7,338 B]                                                        
  148. Get:34 [353 kB]                                                           
  149. Get:35 [7,976 B]                                                    
  150. Get:36 [15.9 kB]                                                      
  151. Get:37 [100 kB]                                                               
  152. Get:38 [81.3 kB]                                                                     
  153. Get:39 [179 kB]                                                        
  154. Fetched 6,101 kB in 60s (101 kB/s)                                                                                                                                      
  155. Extracting templates from packages: 100%  
  156. Preconfiguring packages ...  
  157. (Reading database ... 49307 files and directories currently installed.)  
  158. Preparing to replace libpam0g 1.1.3-2ubuntu1 (using .../libpam0g_1.1.3-2ubuntu2.1_amd64.deb) ...  
  159. Unpacking replacement libpam0g ...  
  160. Setting up libpam0g (1.1.3-2ubuntu2.1) ...  
  161. Processing triggers for libc-bin ...  
  162. ldconfig deferred processing now taking place  
  163. (Reading database ... 49307 files and directories currently installed.)  
  164. Preparing to replace libpam-modules-bin 1.1.3-2ubuntu1 (using .../libpam-modules-bin_1.1.3-2ubuntu2.1_amd64.deb) ...  
  165. Unpacking replacement libpam-modules-bin ...  
  166. Processing triggers for man-db ...  
  167. Setting up libpam-modules-bin (1.1.3-2ubuntu2.1) ...  
  168. (Reading database ... 49307 files and directories currently installed.)  
  169. Preparing to replace libpam-modules 1.1.3-2ubuntu1 (using .../libpam-modules_1.1.3-2ubuntu2.1_amd64.deb) ...  
  170. Unpacking replacement libpam-modules ...  
  171. Processing triggers for man-db ...  
  172. Setting up libpam-modules (1.1.3-2ubuntu2.1) ...  
  173. (Reading database ... 49307 files and directories currently installed.)  
  174. Preparing to replace libk5crypto3 1.9.1+dfsg-1ubuntu1 (using .../libk5crypto3_1.9.1+dfsg-1ubuntu2.2_amd64.deb) ...  
  175. Unpacking replacement libk5crypto3 ...  
  176. Preparing to replace libgssapi-krb5-2 1.9.1+dfsg-1ubuntu1 (using .../libgssapi-krb5-2_1.9.1+dfsg-1ubuntu2.2_amd64.deb) ...  
  177. Unpacking replacement libgssapi-krb5-2 ...  
  178. Preparing to replace libkrb5-3 1.9.1+dfsg-1ubuntu1 (using .../libkrb5-3_1.9.1+dfsg-1ubuntu2.2_amd64.deb) ...  
  179. Unpacking replacement libkrb5-3 ...  
  180. Preparing to replace libkrb5support0 1.9.1+dfsg-1ubuntu1 (using .../libkrb5support0_1.9.1+dfsg-1ubuntu2.2_amd64.deb) ...  
  181. Unpacking replacement libkrb5support0 ...  
  182. Preparing to replace libldap-2.4-2 2.4.25-1.1ubuntu4 (using .../libldap-2.4-2_2.4.25-1.1ubuntu4.1_amd64.deb) ...  
  183. Unpacking replacement libldap-2.4-2 ...  
  184. Preparing to replace libfreetype6 2.4.4-2ubuntu1 (using .../libfreetype6_2.4.4-2ubuntu1.1_amd64.deb) ...  
  185. Unpacking replacement libfreetype6 ...  
  186. Preparing to replace bzip2 1.0.5-6ubuntu1 (using .../bzip2_1.0.5-6ubuntu1.11.10.1_amd64.deb) ...  
  187. Unpacking replacement bzip2 ...  
  188. Preparing to replace libbz2-1.0 1.0.5-6ubuntu1 (using .../libbz2-1.0_1.0.5-6ubuntu1.11.10.1_amd64.deb) ...  
  189. Unpacking replacement libbz2-1.0 ...  
  190. Processing triggers for man-db ...  
  191. Setting up libbz2-1.0 (1.0.5-6ubuntu1.11.10.1) ...  
  192. Processing triggers for libc-bin ...  
  193. ldconfig deferred processing now taking place  
  194. (Reading database ... 49307 files and directories currently installed.)  
  195. Preparing to replace libpam-runtime 1.1.3-2ubuntu1 (using .../libpam-runtime_1.1.3-2ubuntu2.1_amd64.deb) ...  
  196. Unpacking replacement libpam-runtime ...  
  197. Processing triggers for man-db ...  
  198. Setting up libpam-runtime (1.1.3-2ubuntu2.1) ...  
  199. (Reading database ... 49307 files and directories currently installed.)  
  200. Preparing to replace tzdata 2011k-1 (using .../tzdata_2011n-0ubuntu0.11.10_amd64.deb) ...  
  201. Unpacking replacement tzdata ...  
  202. Setting up tzdata (2011n-0ubuntu0.11.10) ...  
  203.   
  204. Current default time zone: 'Asia/Harbin'  
  205. Local time is now:      Tue Jan  3 17:53:40 CST 2012.  
  206. Universal Time is now:  Tue Jan  3 09:53:40 UTC 2012.  
  207. Run 'dpkg-reconfigure tzdata' if you wish to change it.  
  208.   
  209. (Reading database ... 49307 files and directories currently installed.)  
  210. Preparing to replace isc-dhcp-client 4.1.1-P1-17ubuntu10 (using .../isc-dhcp-client_4.1.1-P1-17ubuntu10.1_amd64.deb) ...  
  211. Unpacking replacement isc-dhcp-client ...  
  212. Preparing to replace isc-dhcp-common 4.1.1-P1-17ubuntu10 (using .../isc-dhcp-common_4.1.1-P1-17ubuntu10.1_amd64.deb) ...  
  213. Unpacking replacement isc-dhcp-common ...  
  214. Preparing to replace initramfs-tools 0.99ubuntu7 (using .../initramfs-tools_0.99ubuntu8_all.deb) ...  
  215. Unpacking replacement initramfs-tools ...  
  216. Preparing to replace initramfs-tools-bin 0.99ubuntu7 (using .../initramfs-tools-bin_0.99ubuntu8_amd64.deb) ...  
  217. Unpacking replacement initramfs-tools-bin ...  
  218. Preparing to replace sysvinit-utils 2.88dsf-13.10ubuntu4 (using .../sysvinit-utils_2.88dsf-13.10ubuntu4.1_amd64.deb) ...  
  219. Unpacking replacement sysvinit-utils ...  
  220. Preparing to replace sysv-rc 2.88dsf-13.10ubuntu4 (using .../sysv-rc_2.88dsf-13.10ubuntu4.1_all.deb) ...  
  221. Unpacking replacement sysv-rc ...  
  222. Preparing to replace initscripts 2.88dsf-13.10ubuntu4 (using .../initscripts_2.88dsf-13.10ubuntu4.1_amd64.deb) ...  
  223. Unpacking replacement initscripts ...  
  224. Preparing to replace upstart 1.3-0ubuntu10 (using .../upstart_1.3-0ubuntu11_amd64.deb) ...  
  225. Unpacking replacement upstart ...  
  226. Preparing to replace accountsservice 0.6.14-1git1 (using .../accountsservice_0.6.14-1git1ubuntu1_amd64.deb) ...  
  227. Unpacking replacement accountsservice ...  
  228. Preparing to replace libaccountsservice0 0.6.14-1git1 (using .../libaccountsservice0_0.6.14-1git1ubuntu1_amd64.deb) ...  
  229. Unpacking replacement libaccountsservice0 ...  
  230. Preparing to replace dnsutils 1:9.7.3.dfsg-1ubuntu4 (using .../dnsutils_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...  
  231. Unpacking replacement dnsutils ...  
  232. Preparing to replace bind9-host 1:9.7.3.dfsg-1ubuntu4 (using .../bind9-host_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...  
  233. Unpacking replacement bind9-host ...  
  234. Preparing to replace libisc62 1:9.7.3.dfsg-1ubuntu4 (using .../libisc62_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...  
  235. Unpacking replacement libisc62 ...  
  236. Preparing to replace libdns69 1:9.7.3.dfsg-1ubuntu4 (using .../libdns69_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...  
  237. Unpacking replacement libdns69 ...  
  238. Preparing to replace libisccc60 1:9.7.3.dfsg-1ubuntu4 (using .../libisccc60_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...  
  239. Unpacking replacement libisccc60 ...  
  240. Preparing to replace libisccfg62 1:9.7.3.dfsg-1ubuntu4 (using .../libisccfg62_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...  
  241. Unpacking replacement libisccfg62 ...  
  242. Preparing to replace liblwres60 1:9.7.3.dfsg-1ubuntu4 (using .../liblwres60_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...  
  243. Unpacking replacement liblwres60 ...  
  244. Preparing to replace libbind9-60 1:9.7.3.dfsg-1ubuntu4 (using .../libbind9-60_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...  
  245. Unpacking replacement libbind9-60 ...  
  246. Preparing to replace command-not-found-data 0.2.44ubuntu1 (using .../command-not-found-data_0.2.44.1ubuntu1_amd64.deb) ...  
  247. Unpacking replacement command-not-found-data ...  
  248. Preparing to replace command-not-found 0.2.44ubuntu1 (using .../command-not-found_0.2.44.1ubuntu1_all.deb) ...  
  249. Unpacking replacement command-not-found ...  
  250. Preparing to replace python-gobject 3.0.0-0ubuntu2 (using .../python-gobject_3.0.0-0ubuntu4_amd64.deb) ...  
  251. Unpacking replacement python-gobject ...  
  252. Preparing to replace python-gobject-cairo 3.0.0-0ubuntu2 (using .../python-gobject-cairo_3.0.0-0ubuntu4_amd64.deb) ...  
  253. Unpacking replacement python-gobject-cairo ...  
  254. Preparing to replace python-problem-report 1.23-0ubuntu3 (using .../python-problem-report_1.23-0ubuntu4_all.deb) ...  
  255. Unpacking replacement python-problem-report ...  
  256. Preparing to replace python-apport 1.23-0ubuntu3 (using .../python-apport_1.23-0ubuntu4_all.deb) ...  
  257. Unpacking replacement python-apport ...  
  258. Preparing to replace apport 1.23-0ubuntu3 (using .../apport_1.23-0ubuntu4_all.deb) ...  
  259. Unpacking replacement apport ...  
  260. Preparing to replace update-manager-core 1:0.152.25 (using .../update-manager-core_1%3a0.152.25.5_amd64.deb) ...  
  261. Unpacking replacement update-manager-core ...  
  262. Processing triggers for man-db ...  
  263. Processing triggers for ureadahead ...  
  264. ureadahead will be reprofiled on next reboot  
  265. Setting up libkrb5support0 (1.9.1+dfsg-1ubuntu2.2) ...  
  266. Setting up libk5crypto3 (1.9.1+dfsg-1ubuntu2.2) ...  
  267. Setting up libkrb5-3 (1.9.1+dfsg-1ubuntu2.2) ...  
  268. Setting up libgssapi-krb5-2 (1.9.1+dfsg-1ubuntu2.2) ...  
  269. Setting up libldap-2.4-2 (2.4.25-1.1ubuntu4.1) ...  
  270. Setting up libfreetype6 (2.4.4-2ubuntu1.1) ...  
  271. Setting up bzip2 (1.0.5-6ubuntu1.11.10.1) ...  
  272. Setting up isc-dhcp-common (4.1.1-P1-17ubuntu10.1) ...  
  273. Setting up isc-dhcp-client (4.1.1-P1-17ubuntu10.1) ...  
  274. Setting up initramfs-tools-bin (0.99ubuntu8) ...  
  275. Setting up initramfs-tools (0.99ubuntu8) ...  
  276. update-initramfs: deferring update (trigger activated)  
  277. Setting up sysvinit-utils (2.88dsf-13.10ubuntu4.1) ...  
  278. Setting up sysv-rc (2.88dsf-13.10ubuntu4.1) ...  
  279. Setting up libaccountsservice0 (0.6.14-1git1ubuntu1) ...  
  280. Setting up accountsservice (0.6.14-1git1ubuntu1) ...  
  281. Setting up libisc62 (1:9.7.3.dfsg-1ubuntu4.1) ...  
  282. Setting up libdns69 (1:9.7.3.dfsg-1ubuntu4.1) ...  
  283. Setting up libisccc60 (1:9.7.3.dfsg-1ubuntu4.1) ...  
  284. Setting up libisccfg62 (1:9.7.3.dfsg-1ubuntu4.1) ...  
  285. Setting up libbind9-60 (1:9.7.3.dfsg-1ubuntu4.1) ...  
  286. Setting up liblwres60 (1:9.7.3.dfsg-1ubuntu4.1) ...  
  287. Setting up bind9-host (1:9.7.3.dfsg-1ubuntu4.1) ...  
  288. Setting up dnsutils (1:9.7.3.dfsg-1ubuntu4.1) ...  
  289. Setting up command-not-found-data (0.2.44.1ubuntu1) ...  
  290. Setting up command-not-found (0.2.44.1ubuntu1) ...  
  291. Setting up python-gobject (3.0.0-0ubuntu4) ...  
  292. Setting up python-gobject-cairo (3.0.0-0ubuntu4) ...  
  293. Setting up python-problem-report (1.23-0ubuntu4) ...  
  294. Setting up python-apport (1.23-0ubuntu4) ...  
  295. Setting up update-manager-core (1:0.152.25.5) ...  
  296. Setting up upstart (1.3-0ubuntu11) ...  
  297. Installing new version of config file /etc/init/failsafe.conf ...  
  298. Setting up initscripts (2.88dsf-13.10ubuntu4.1) ...  
  299. Installing new version of config file /etc/init.d/sendsigs ...  
  300. Installing new version of config file /etc/init.d/umountroot ...  
  301. Setting up apport (1.23-0ubuntu4) ...  
  302. start: Job failed to start  
  303. invoke-rc.d: initscript apport, action "start" failed.  
  304. Processing triggers for libc-bin ...  
  305. ldconfig deferred processing now taking place  
  306. Processing triggers for initramfs-tools ...  
  307. update-initramfs: Generating /boot/initrd.img-3.0.0-12-server  
  308.   
  309.   
  310.   
  311. apt-get upgrade Done! Press ENTER to install bridge-utils...  
  312.   
  313. Reading package lists... Done  
  314. Building dependency tree         
  315. Reading state information... Done  
  316. The following NEW packages will be installed:  
  317.   bridge-utils  
  318. 0 upgraded, 1 newly installed, 0 to remove and 3 not upgraded.  
  319. Need to get 31.3 kB of archives.  
  320. After this operation, 209 kB of additional disk space will be used.  
  321. Get:1 [31.3 kB]  
  322. Fetched 31.3 kB in 5s (5,451 B/s)         
  323. Selecting previously deselected package bridge-utils.  
  324. (Reading database ... 49307 files and directories currently installed.)  
  325. Unpacking bridge-utils (from .../bridge-utils_1.5-2ubuntu1_amd64.deb) ...  
  326. Processing triggers for man-db ...  
  327. Setting up bridge-utils (1.5-2ubuntu1) ...  
  328.   
  329.   
  330.   
  331. bridge-utils installation Done! Press ENTER to install ntp...  
  332.   
  333. Reading package lists... Done  
  334. Building dependency tree         
  335. Reading state information... Done  
  336. The following extra packages will be installed:  
  337.   libopts25  
  338. Suggested packages:  
  339.   ntp-doc  
  340. The following NEW packages will be installed:  
  341.   libopts25 ntp  
  342. 0 upgraded, 2 newly installed, 0 to remove and 3 not upgraded.  
  343. Need to get 565 kB of archives.  
  344. After this operation, 1,581 kB of additional disk space will be used.  
  345. Get:1 [59.9 kB]  
  346. Get:2 [505 kB]  
  347. Fetched 565 kB in 7s (77.4 kB/s)                                                                                                                                        
  348. Selecting previously deselected package libopts25.  
  349. (Reading database ... 49332 files and directories currently installed.)  
  350. Unpacking libopts25 (from .../libopts25_1%3a5.12-0.1ubuntu1_amd64.deb) ...  
  351. Selecting previously deselected package ntp.  
  352. Unpacking ntp (from .../ntp_1%3a4.2.6.p2+dfsg-1ubuntu12_amd64.deb) ...  
  353. Processing triggers for man-db ...  
  354. Processing triggers for ureadahead ...  
  355. Setting up libopts25 (1:5.12-0.1ubuntu1) ...  
  356. Setting up ntp (1:4.2.6.p2+dfsg-1ubuntu12) ...  
  357.  * Starting NTP server ntpd                                                                                                                                     [ OK ]   
  358. Processing triggers for libc-bin ...  
  359. ldconfig deferred processing now taking place  
  360.   
  361.   
  362.   
  363. ntp installation Done! Press ENTER to install Mysql, root password for mysql is 'mygreatsecret'...  
  364.   
  365. Reading package lists... Done  
  366. Building dependency tree         
  367. Reading state information... Done  
  368. The following extra packages will be installed:  
  369.   libdbd-mysql-perl libdbi-perl libhtml-template-perl libmysqlclient16 libnet-daemon-perl libplrpc-perl mysql-client-5.1 mysql-client-core-5.1 mysql-common  
  370.   mysql-server-5.1 mysql-server-core-5.1  
  371. Suggested packages:  
  372.   libipc-sharedcache-perl libterm-readkey-perl tinyca mailx  
  373. The following NEW packages will be installed:  
  374.   libdbd-mysql-perl libdbi-perl libhtml-template-perl libmysqlclient16 libnet-daemon-perl libplrpc-perl mysql-client-5.1 mysql-client-core-5.1 mysql-common  
  375.   mysql-server mysql-server-5.1 mysql-server-core-5.1  
  376. 0 upgraded, 12 newly installed, 0 to remove and 3 not upgraded.  
  377. Need to get 23.8 MB of archives.  
  378. After this operation, 61.2 MB of additional disk space will be used.  
  379. Get:1 [11.6 kB]  
  380. Get:2 [43.1 kB]  
  381. Get:3 [36.0 kB]                                                                            
  382. Get:4 [853 kB]                                                                        
  383. Get:5 [1,869 kB]                                                               
  384. Get:6 [110 kB]                                                                        
  385. Get:7 [99.7 kB]                                                           
  386. Get:8 [9,354 kB]                                                               
  387. Get:9 [4,976 kB]                                                          
  388. Get:10 [6,387 kB]                                                              
  389. Get:11 [65.0 kB]                                                                     
  390. Get:12 [6,302 B]                                                                     
  391. Fetched 23.8 MB in 3min 39s (109 kB/s)                                                                                                                                  
  392. Preconfiguring packages ...  
  393. Selecting previously deselected package mysql-common.  
  394. (Reading database ... 49375 files and directories currently installed.)  
  395. Unpacking mysql-common (from .../mysql-common_5.1.58-1ubuntu1_all.deb) ...  
  396. Selecting previously deselected package libnet-daemon-perl.  
  397. Unpacking libnet-daemon-perl (from .../libnet-daemon-perl_0.48-1_all.deb) ...  
  398. Selecting previously deselected package libplrpc-perl.  
  399. Unpacking libplrpc-perl (from .../libplrpc-perl_0.2020-2_all.deb) ...  
  400. Selecting previously deselected package libdbi-perl.  
  401. Unpacking libdbi-perl (from .../libdbi-perl_1.616-1build1_amd64.deb) ...  
  402. Selecting previously deselected package libmysqlclient16.  
  403. Unpacking libmysqlclient16 (from .../libmysqlclient16_5.1.58-1ubuntu1_amd64.deb) ...  
  404. Selecting previously deselected package libdbd-mysql-perl.  
  405. Unpacking libdbd-mysql-perl (from .../libdbd-mysql-perl_4.019-1_amd64.deb) ...  
  406. Selecting previously deselected package mysql-client-core-5.1.  
  407. Unpacking mysql-client-core-5.1 (from .../mysql-client-core-5.1_5.1.58-1ubuntu1_amd64.deb) ...  
  408. Selecting previously deselected package mysql-client-5.1.  
  409. Unpacking mysql-client-5.1 (from .../mysql-client-5.1_5.1.58-1ubuntu1_amd64.deb) ...  
  410. Selecting previously deselected package mysql-server-core-5.1.  
  411. Unpacking mysql-server-core-5.1 (from .../mysql-server-core-5.1_5.1.58-1ubuntu1_amd64.deb) ...  
  412. Processing triggers for man-db ...  
  413. Setting up mysql-common (5.1.58-1ubuntu1) ...  
  414. Selecting previously deselected package mysql-server-5.1.  
  415. (Reading database ... 49752 files and directories currently installed.)  
  416. Unpacking mysql-server-5.1 (from .../mysql-server-5.1_5.1.58-1ubuntu1_amd64.deb) ...  
  417. Selecting previously deselected package libhtml-template-perl.  
  418. Unpacking libhtml-template-perl (from .../libhtml-template-perl_2.10-1_all.deb) ...  
  419. Selecting previously deselected package mysql-server.  
  420. Unpacking mysql-server (from .../mysql-server_5.1.58-1ubuntu1_all.deb) ...  
  421. Processing triggers for ureadahead ...  
  422. Processing triggers for man-db ...  
  423. Setting up libnet-daemon-perl (0.48-1) ...  
  424. Setting up libplrpc-perl (0.2020-2) ...  
  425. Setting up libdbi-perl (1.616-1build1) ...  
  426. Setting up libmysqlclient16 (5.1.58-1ubuntu1) ...  
  427. Setting up libdbd-mysql-perl (4.019-1) ...  
  428. Setting up mysql-client-core-5.1 (5.1.58-1ubuntu1) ...  
  429. Setting up mysql-client-5.1 (5.1.58-1ubuntu1) ...  
  430. Setting up mysql-server-core-5.1 (5.1.58-1ubuntu1) ...  
  431. Setting up mysql-server-5.1 (5.1.58-1ubuntu1) ...  
  432. mysql start/running, process 11451  
  433. Setting up libhtml-template-perl (2.10-1) ...  
  434. Setting up mysql-server (5.1.58-1ubuntu1) ...  
  435. Processing triggers for libc-bin ...  
  436. ldconfig deferred processing now taking place  
  437.   
  438.   
  439.   
  440. mysql installation Done! Press ENTER to Configure mysql for glance & nova ...  
  441.   
  442. Create a database named glance.  
  443.   
  444. Create a user named glancedbadmin  
  445.   
  446. Grant all privileges for glancedbadmin on the Database glance  
  447.   
  448. Create a password for the user glanceadmin  
  449.   
  450. Create a database named nova.  
  451.   
  452. Create a user named novadbadmin which has access to nova related databases.  
  453.   
  454. Grant all privileges for novadbadmin on the Database nova.  
  455.   
  456. Set password for novadbadmin.  
  457.   
  458.   
  459.   
  460.   
  461. mysql configuratioin Done! Press ENTER to install glance...  
  462.   
  463. Reading package lists... Done  
  464. Building dependency tree         
  465. Reading state information... Done  
  466. The following extra packages will be installed:  
  467.   libyaml-0-2 python-amqplib python-anyjson python-argparse python-decorator python-eventlet python-formencode python-glance python-greenlet python-kombu  
  468.   python-migrate python-openid python-paste python-pastedeploy python-pastescript python-routes python-scgi python-setuptools python-sqlalchemy python-sqlalchemy-ext  
  469.   python-support python-tempita python-webob python-xattr python-yaml python2.6 python2.6-minimal  
  470. Suggested packages:  
  471.   python-argparse-doc python-egenix-mxdatetime python-dns python-greenlet-doc python-greenlet-dev python-greenlet-dbg python-kombu-doc python-pymongo  
  472.   python-pastewebkit libapache2-mod-wsgi libapache2-mod-python libapache2-mod-scgi python-pgsql libjs-sphinxdoc libjs-mochikit python-cherrypy3 python-cherrypy  
  473.   python-flup python-cheetah python-sqlalchemy-doc python-psycopg2 python-mysqldb python-kinterbasdb python-pymssql python2.6-doc binutils binfmt-support  
  474. The following NEW packages will be installed:  
  475.   glance libyaml-0-2 python-amqplib python-anyjson python-argparse python-decorator python-eventlet python-formencode python-glance python-greenlet python-kombu  
  476.   python-migrate python-openid python-paste python-pastedeploy python-pastescript python-routes python-scgi python-setuptools python-sqlalchemy python-sqlalchemy-ext  
  477.   python-support python-tempita python-webob python-xattr python-yaml python2.6 python2.6-minimal  
  478. 0 upgraded, 28 newly installed, 0 to remove and 3 not upgraded.  
  479. Need to get 6,809 kB of archives.  
  480. After this operation, 37.2 MB of additional disk space will be used.  
  481. Get:1 [56.2 kB]  
  482. Get:2 [1,475 kB]  
  483. Get:3 [2,439 kB]                                                                       
  484. Get:4 [35.0 kB]                                                                     
  485. Get:5 [7,316 B]                                                                            
  486. Get:6 [43.9 kB]                                                                      
  487. Get:7 [45.9 kB]                                                                   
  488. Get:8 [25.0 kB]                                                                  
  489. Get:9 [267 kB]                                                                    
  490. Get:10 [111 kB]                                                                  
  491. Get:11 [79.5 kB]                                                                             
  492. Get:12 [414 kB]                                                                         
  493. Get:13 [15.2 kB]                                                                           
  494. Get:14 [159 kB]                                                                            
  495. Get:15 [26.6 kB]                                                                     
  496. Get:16 [118 kB]                                                                             
  497. Get:17 [395 kB]                                                                     
  498. Get:18 [28.2 kB]                                                                       
  499. Get:19 [212 kB]                                                                        
  500. Get:20 [147 kB]                                                                        
  501. Get:21 [36.6 kB]                                                                           
  502. Get:22 [20.2 kB]                                                                       
  503. Get:23 [16.1 kB]                                                                  
  504. Get:24 [14.6 kB]                                                                      
  505. Get:25 [193 kB]                                                                              
  506. Get:26 [273 kB]                                                                              
  507. Get:27 [136 kB]                                                           
  508. Get:28 [20.5 kB]                                                                 
  509. Fetched 6,809 kB in 57s (119 kB/s)                                                                                                                                      
  510. Selecting previously deselected package libyaml-0-2.  
  511. (Reading database ... 49846 files and directories currently installed.)  
  512. Unpacking libyaml-0-2 (from .../libyaml-0-2_0.1.4-1_amd64.deb) ...  
  513. Selecting previously deselected package python2.6-minimal.  
  514. Unpacking python2.6-minimal (from .../python2.6-minimal_2.6.7-4ubuntu1_amd64.deb) ...  
  515. Selecting previously deselected package python2.6.  
  516. Unpacking python2.6 (from .../python2.6_2.6.7-4ubuntu1_amd64.deb) ...  
  517. Selecting previously deselected package python-amqplib.  
  518. Unpacking python-amqplib (from .../python-amqplib_1.0.0-0ubuntu1_all.deb) ...  
  519. Selecting previously deselected package python-anyjson.  
  520. Unpacking python-anyjson (from .../python-anyjson_0.3.1-1_all.deb) ...  
  521. Selecting previously deselected package python-argparse.  
  522. Unpacking python-argparse (from .../python-argparse_1.1-1ubuntu1_all.deb) ...  
  523. Selecting previously deselected package python-decorator.  
  524. Unpacking python-decorator (from .../python-decorator_3.2.0-1ubuntu1_all.deb) ...  
  525. Selecting previously deselected package python-greenlet.  
  526. Unpacking python-greenlet (from .../python-greenlet_0.3.1-1ubuntu4_amd64.deb) ...  
  527. Selecting previously deselected package python-eventlet.  
  528. Unpacking python-eventlet (from .../python-eventlet_0.9.15-0ubuntu4_all.deb) ...  
  529. Selecting previously deselected package python-formencode.  
  530. Unpacking python-formencode (from .../python-formencode_1.2.4-2ubuntu1_all.deb) ...  
  531. Selecting previously deselected package python-kombu.  
  532. Unpacking python-kombu (from .../python-kombu_1.0.4-2_all.deb) ...  
  533. Selecting previously deselected package python-sqlalchemy.  
  534. Unpacking python-sqlalchemy (from .../python-sqlalchemy_0.6.8-1_all.deb) ...  
  535. Selecting previously deselected package python-tempita.  
  536. Unpacking python-tempita (from .../python-tempita_0.5.1-1_all.deb) ...  
  537. Selecting previously deselected package python-migrate.  
  538. Unpacking python-migrate (from .../python-migrate_0.7.1-1_all.deb) ...  
  539. Selecting previously deselected package python-support.  
  540. Unpacking python-support (from .../python-support_1.0.13ubuntu1_all.deb) ...  
  541. Selecting previously deselected package python-openid.  
  542. Unpacking python-openid (from .../python-openid_2.2.5-3_all.deb) ...  
  543. Selecting previously deselected package python-paste.  
  544. Unpacking python-paste (from .../python-paste_1.7.5.1-4ubuntu1_all.deb) ...  
  545. Selecting previously deselected package python-pastedeploy.  
  546. Unpacking python-pastedeploy (from .../python-pastedeploy_1.5.0-2_all.deb) ...  
  547. Selecting previously deselected package python-setuptools.  
  548. Unpacking python-setuptools (from .../python-setuptools_0.6.16-1_all.deb) ...  
  549. Selecting previously deselected package python-pastescript.  
  550. Unpacking python-pastescript (from .../python-pastescript_1.7.3-7_all.deb) ...  
  551. Selecting previously deselected package python-routes.  
  552. Unpacking python-routes (from .../python-routes_1.12.3-1_all.deb) ...  
  553. Selecting previously deselected package python-scgi.  
  554. Unpacking python-scgi (from .../python-scgi_1.13-1build1_amd64.deb) ...  
  555. Selecting previously deselected package python-sqlalchemy-ext.  
  556. Unpacking python-sqlalchemy-ext (from .../python-sqlalchemy-ext_0.6.8-1_amd64.deb) ...  
  557. Selecting previously deselected package python-xattr.  
  558. Unpacking python-xattr (from .../python-xattr_0.6-1ubuntu2_amd64.deb) ...  
  559. Selecting previously deselected package python-yaml.  
  560. Unpacking python-yaml (from .../python-yaml_3.10-1_amd64.deb) ...  
  561. Selecting previously deselected package python-webob.  
  562. Unpacking python-webob (from .../python-webob_1.0.8-1_all.deb) ...  
  563. Selecting previously deselected package python-glance.  
  564. Unpacking python-glance (from .../python-glance_2011.3-0ubuntu4.1_all.deb) ...  
  565. Selecting previously deselected package glance.  
  566. Unpacking glance (from .../glance_2011.3-0ubuntu4.1_all.deb) ...  
  567. Processing triggers for man-db ...  
  568. Processing triggers for ureadahead ...  
  569. Setting up libyaml-0-2 (0.1.4-1) ...  
  570. Setting up python2.6-minimal (2.6.7-4ubuntu1) ...  
  571. Linking and byte-compiling packages for runtime python2.6...  
  572. Setting up python2.6 (2.6.7-4ubuntu1) ...  
  573. Setting up python-amqplib (1.0.0-0ubuntu1) ...  
  574. Setting up python-anyjson (0.3.1-1) ...  
  575. Setting up python-argparse (1.1-1ubuntu1) ...  
  576. Setting up python-decorator (3.2.0-1ubuntu1) ...  
  577. Setting up python-greenlet (0.3.1-1ubuntu4) ...  
  578. Setting up python-eventlet (0.9.15-0ubuntu4) ...  
  579. Setting up python-formencode (1.2.4-2ubuntu1) ...  
  580. Setting up python-kombu (1.0.4-2) ...  
  581. Setting up python-sqlalchemy (0.6.8-1) ...  
  582. Setting up python-tempita (0.5.1-1) ...  
  583. Setting up python-migrate (0.7.1-1) ...  
  584. Setting up python-support (1.0.13ubuntu1) ...  
  585. Setting up python-openid (2.2.5-3) ...  
  586. Setting up python-paste (1.7.5.1-4ubuntu1) ...  
  587. Setting up python-pastedeploy (1.5.0-2) ...  
  588. Setting up python-setuptools (0.6.16-1) ...  
  589. Setting up python-pastescript (1.7.3-7) ...  
  590. Setting up python-routes (1.12.3-1) ...  
  591. Setting up python-scgi (1.13-1build1) ...  
  592. Setting up python-sqlalchemy-ext (0.6.8-1) ...  
  593. Setting up python-xattr (0.6-1ubuntu2) ...  
  594. Setting up python-yaml (3.10-1) ...  
  595. Setting up python-webob (1.0.8-1) ...  
  596. Setting up python-glance (2011.3-0ubuntu4.1) ...  
  597. Setting up glance (2011.3-0ubuntu4.1) ...  
  598. Adding system user `glance' (UID 107) ...  
  599. Adding new user `glance' (UID 107) with group `glance' ...  
  600. Not creating home directory `/var/lib/glance'.  
  601. glance-api start/running, process 12453  
  602. glance-registry start/running, process 12477  
  603. Processing triggers for libc-bin ...  
  604. ldconfig deferred processing now taking place  
  605. Processing triggers for python-support ...  
  606.   
  607.   
  608.   
  609. glance installation Done! Press ENTER to install messaging queue server...  
  610.   
  611. Reading package lists... Done  
  612. Building dependency tree         
  613. Reading state information... Done  
  614. The following extra packages will be installed:  
  615.   erlang-asn1 erlang-base erlang-corba erlang-crypto erlang-dev erlang-docbuilder erlang-edoc erlang-erl-docgen erlang-eunit erlang-ic erlang-inets erlang-inviso  
  616.   erlang-mnesia erlang-nox erlang-odbc erlang-os-mon erlang-parsetools erlang-percept erlang-public-key erlang-runtime-tools erlang-snmp erlang-ssh erlang-ssl  
  617.   erlang-syntax-tools erlang-tools erlang-webtool erlang-xmerl libltdl7 libsctp1 lksctp-tools odbcinst odbcinst1debian2 unixodbc  
  618. Suggested packages:  
  619.   erlang erlang-manpages erlang-doc xsltproc fop erlang-ic-java erlang-observer libmyodbc odbc-postgresql tdsodbc unixodbc-bin  
  620. The following NEW packages will be installed:  
  621.   erlang-asn1 erlang-base erlang-corba erlang-crypto erlang-dev erlang-docbuilder erlang-edoc erlang-erl-docgen erlang-eunit erlang-ic erlang-inets erlang-inviso  
  622.   erlang-mnesia erlang-nox erlang-odbc erlang-os-mon erlang-parsetools erlang-percept erlang-public-key erlang-runtime-tools erlang-snmp erlang-ssh erlang-ssl  
  623.   erlang-syntax-tools erlang-tools erlang-webtool erlang-xmerl libltdl7 libsctp1 lksctp-tools odbcinst odbcinst1debian2 rabbitmq-server unixodbc  
  624. 0 upgraded, 34 newly installed, 0 to remove and 3 not upgraded.  
  625. Need to get 21.5 MB of archives.  
  626. After this operation, 42.3 MB of additional disk space will be used.  
  627. Get:1 [7,509 kB]  
  628. Get:2 [303 kB]                                                       
  629. Get:3 [1,086 kB]                                                             
  630. Get:4 [682 kB]                                                             
  631. Get:5 [209 kB]                                                      
  632. Get:6 [40.8 kB]                                                            
  633. Get:7 [343 kB]                                                         
  634. Get:8 [381 kB]                                                                
  635. Get:9 [776 kB]                                                              
  636. Get:10 [2,420 kB]                                                           
  637. Get:11 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main erlang-dev amd64 1:14.b.2-dfsg-3ubuntu2 [492 kB]                                                               
  638. Get:12 [1,106 kB]                                                           
  639. Get:13 [315 kB]                                                              
  640. Get:14 [199 kB]                                                        
  641. Get:15 [115 kB]                                                        
  642. Get:16 [136 kB]                                                             
  643. Get:17 [865 kB]                                                                
  644. Get:18 [147 kB]                                                            
  645. Get:19 [38.2 kB]                                                                          
  646. Get:20 [13.3 kB]                                                                     
  647. Get:21 [52.1 kB]                                                             
  648. Get:22 [244 kB]                                                                      
  649. Get:23 [52.6 kB]                                                             
  650. Get:24 [1,517 kB]                                                            
  651. Get:25 [100 kB]                                                            
  652. Get:26 [160 kB]                                                        
  653. Get:27 [143 kB]                                                           
  654. Get:28 [369 kB]                                                               
  655. Get:29 [42.3 kB]                                                          
  656. Get:30 [542 kB]                                                             
  657. Get:31 [19.5 kB]                                                                
  658. Get:32 [8,102 B]                                                                         
  659. Get:33 [48.3 kB]                                                                     
  660. Get:34 [1,036 kB]                                                                  
  661. Fetched 21.5 MB in 4min 4s (88.1 kB/s)                                                                                                                                  
  662. Extracting templates from packages: 100%  
  663. Selecting previously deselected package erlang-base.  
  664. (Reading database ... 53813 files and directories currently installed.)  
  665. Unpacking erlang-base (from .../erlang-base_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  666. Selecting previously deselected package erlang-syntax-tools.  
  667. Unpacking erlang-syntax-tools (from .../erlang-syntax-tools_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  668. Selecting previously deselected package erlang-asn1.  
  669. Unpacking erlang-asn1 (from .../erlang-asn1_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  670. Selecting previously deselected package erlang-mnesia.  
  671. Unpacking erlang-mnesia (from .../erlang-mnesia_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  672. Selecting previously deselected package erlang-runtime-tools.  
  673. Unpacking erlang-runtime-tools (from .../erlang-runtime-tools_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  674. Selecting previously deselected package erlang-crypto.  
  675. Unpacking erlang-crypto (from .../erlang-crypto_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  676. Selecting previously deselected package erlang-public-key.  
  677. Unpacking erlang-public-key (from .../erlang-public-key_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  678. Selecting previously deselected package erlang-ssl.  
  679. Unpacking erlang-ssl (from .../erlang-ssl_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  680. Selecting previously deselected package erlang-inets.  
  681. Unpacking erlang-inets (from .../erlang-inets_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  682. Selecting previously deselected package erlang-corba.  
  683. Unpacking erlang-corba (from .../erlang-corba_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  684. Selecting previously deselected package erlang-dev.  
  685. Unpacking erlang-dev (from .../erlang-dev_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  686. Selecting previously deselected package erlang-xmerl.  
  687. Unpacking erlang-xmerl (from .../erlang-xmerl_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  688. Selecting previously deselected package erlang-edoc.  
  689. Unpacking erlang-edoc (from .../erlang-edoc_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  690. Selecting previously deselected package erlang-docbuilder.  
  691. Unpacking erlang-docbuilder (from .../erlang-docbuilder_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  692. Selecting previously deselected package erlang-erl-docgen.  
  693. Unpacking erlang-erl-docgen (from .../erlang-erl-docgen_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  694. Selecting previously deselected package erlang-eunit.  
  695. Unpacking erlang-eunit (from .../erlang-eunit_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  696. Selecting previously deselected package erlang-ic.  
  697. Unpacking erlang-ic (from .../erlang-ic_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  698. Selecting previously deselected package erlang-inviso.  
  699. Unpacking erlang-inviso (from .../erlang-inviso_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  700. Selecting previously deselected package libltdl7.  
  701. Unpacking libltdl7 (from .../libltdl7_2.4-2ubuntu1_amd64.deb) ...  
  702. Selecting previously deselected package odbcinst.  
  703. Unpacking odbcinst (from .../odbcinst_2.2.14p2-2ubuntu1_amd64.deb) ...  
  704. Selecting previously deselected package odbcinst1debian2.  
  705. Unpacking odbcinst1debian2 (from .../odbcinst1debian2_2.2.14p2-2ubuntu1_amd64.deb) ...  
  706. Selecting previously deselected package unixodbc.  
  707. Unpacking unixodbc (from .../unixodbc_2.2.14p2-2ubuntu1_amd64.deb) ...  
  708. Selecting previously deselected package erlang-odbc.  
  709. Unpacking erlang-odbc (from .../erlang-odbc_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  710. Selecting previously deselected package erlang-snmp.  
  711. Unpacking erlang-snmp (from .../erlang-snmp_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  712. Selecting previously deselected package erlang-os-mon.  
  713. Unpacking erlang-os-mon (from .../erlang-os-mon_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  714. Selecting previously deselected package erlang-parsetools.  
  715. Unpacking erlang-parsetools (from .../erlang-parsetools_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  716. Selecting previously deselected package erlang-percept.  
  717. Unpacking erlang-percept (from .../erlang-percept_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  718. Selecting previously deselected package erlang-ssh.  
  719. Unpacking erlang-ssh (from .../erlang-ssh_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  720. Selecting previously deselected package erlang-webtool.  
  721. Unpacking erlang-webtool (from .../erlang-webtool_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  722. Selecting previously deselected package erlang-tools.  
  723. Unpacking erlang-tools (from .../erlang-tools_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...  
  724. Selecting previously deselected package erlang-nox.  
  725. Unpacking erlang-nox (from .../erlang-nox_1%3a14.b.2-dfsg-3ubuntu2_all.deb) ...  
  726. Selecting previously deselected package libsctp1.  
  727. Unpacking libsctp1 (from .../libsctp1_1.0.11+dfsg-2_amd64.deb) ...  
  728. Selecting previously deselected package lksctp-tools.  
  729. Unpacking lksctp-tools (from .../lksctp-tools_1.0.11+dfsg-2_amd64.deb) ...  
  730. Selecting previously deselected package rabbitmq-server.  
  731. Unpacking rabbitmq-server (from .../rabbitmq-server_2.5.0-1ubuntu2_all.deb) ...  
  732. Processing triggers for man-db ...  
  733. Processing triggers for ureadahead ...  
  734. Setting up erlang-base (1:14.b.2-dfsg-3ubuntu2) ...  
  735. Searching for services which depend on erlang and should be started...none found.  
  736. Setting up erlang-syntax-tools (1:14.b.2-dfsg-3ubuntu2) ...  
  737. Setting up erlang-asn1 (1:14.b.2-dfsg-3ubuntu2) ...  
  738. Setting up erlang-mnesia (1:14.b.2-dfsg-3ubuntu2) ...  
  739. Setting up erlang-runtime-tools (1:14.b.2-dfsg-3ubuntu2) ...  
  740. Setting up erlang-crypto (1:14.b.2-dfsg-3ubuntu2) ...  
  741. Setting up erlang-public-key (1:14.b.2-dfsg-3ubuntu2) ...  
  742. Setting up erlang-ssl (1:14.b.2-dfsg-3ubuntu2) ...  
  743. Setting up erlang-inets (1:14.b.2-dfsg-3ubuntu2) ...  
  744. Setting up erlang-corba (1:14.b.2-dfsg-3ubuntu2) ...  
  745. Setting up erlang-dev (1:14.b.2-dfsg-3ubuntu2) ...  
  746. Setting up erlang-xmerl (1:14.b.2-dfsg-3ubuntu2) ...  
  747. Setting up erlang-edoc (1:14.b.2-dfsg-3ubuntu2) ...  
  748. Setting up erlang-docbuilder (1:14.b.2-dfsg-3ubuntu2) ...  
  749. Setting up erlang-erl-docgen (1:14.b.2-dfsg-3ubuntu2) ...  
  750. Setting up erlang-eunit (1:14.b.2-dfsg-3ubuntu2) ...  
  751. Setting up erlang-ic (1:14.b.2-dfsg-3ubuntu2) ...  
  752. Setting up erlang-inviso (1:14.b.2-dfsg-3ubuntu2) ...  
  753. Setting up libltdl7 (2.4-2ubuntu1) ...  
  754. Setting up erlang-snmp (1:14.b.2-dfsg-3ubuntu2) ...  
  755. Setting up erlang-os-mon (1:14.b.2-dfsg-3ubuntu2) ...  
  756. Setting up erlang-parsetools (1:14.b.2-dfsg-3ubuntu2) ...  
  757. Setting up erlang-percept (1:14.b.2-dfsg-3ubuntu2) ...  
  758. Setting up erlang-ssh (1:14.b.2-dfsg-3ubuntu2) ...  
  759. Setting up erlang-webtool (1:14.b.2-dfsg-3ubuntu2) ...  
  760. Setting up erlang-tools (1:14.b.2-dfsg-3ubuntu2) ...  
  761. Setting up libsctp1 (1.0.11+dfsg-2) ...  
  762. Setting up lksctp-tools (1.0.11+dfsg-2) ...  
  763. Setting up odbcinst (2.2.14p2-2ubuntu1) ...  
  764. Setting up odbcinst1debian2 (2.2.14p2-2ubuntu1) ...  
  765. Setting up unixodbc (2.2.14p2-2ubuntu1) ...  
  766. Setting up erlang-odbc (1:14.b.2-dfsg-3ubuntu2) ...  
  767. Setting up erlang-nox (1:14.b.2-dfsg-3ubuntu2) ...  
  768. Setting up rabbitmq-server (2.5.0-1ubuntu2) ...  
  769. Adding group `rabbitmq' (GID 116) ...  
  770. Done.  
  771. Adding system user `rabbitmq' (UID 108) ...  
  772. Adding new user `rabbitmq' (UID 108) with group `rabbitmq' ...  
  773. Not creating home directory `/var/lib/rabbitmq'.  
  774. Starting rabbitmq-server: SUCCESS  
  775. rabbitmq-server.  
  776. Processing triggers for libc-bin ...  
  777. ldconfig deferred processing now taking place  
  778.   
  779.   
  780.   
  781. rabbitmq-server installation Done! Press ENTER to install nova packages...  
  782.   
  783. Reading package lists... Done  
  784. Building dependency tree         
  785. Reading state information... Done  
  786. The following extra packages will be installed:  
  787.   ajaxterm apache2 apache2-mpm-worker apache2-utils apache2.2-bin apache2.2-common cpu-checker curl dnsmasq-base dnsmasq-utils ebtables gawk iputils-arping kpartx  
  788.   libaio1 libapparmor1 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap libasound2 libasyncns0 libavahi-client3 libavahi-common-data libavahi-common3  
  789.   libconfig-general-perl libcurl3 libflac8 libibverbs1 libjson0 libogg0 libpulse0 librdmacm1 libsdl1.2debian libsdl1.2debian-alsa libsgutils2-2 libsigsegv2  
  790.   libsndfile1 libsysfs2 libvirt-bin libvirt0 libvorbis0a libvorbisenc2 libxenstore3.0 libxml2-utils libxslt1.1 msr-tools nova-compute-kvm open-iscsi open-iscsi-utils  
  791.   python-boto python-carrot python-cheetah python-daemon python-dingus python-gflags python-ldap python-libvirt python-libxml2 python-lockfile python-lxml  
  792.   python-m2crypto python-mysqldb python-netaddr python-nose python-novaclient python-prettytable python-stompy qemu-common qemu-kvm seabios sg3-utils ssl-cert tgt  
  793.   vgabios vlan  
  794. Suggested packages:  
  795.   python-psyco apache2-doc apache2-suexec apache2-suexec-custom libasound2-plugins libasound2-python pulseaudio policykit-1 radvd sheepdog python-markdown  
  796.   python-pygments python-memcache python-ldap-doc python-lxml-dbg python-egenix-mxdatetime python-mysqldb-dbg ipython python-coverage python-suds ipxe  
  797.   mol-drivers-macosx openbios-sparc ubuntu-vm-builder uml-utilities openssl-blacklist  
  798. The following NEW packages will be installed:  
  799.   ajaxterm apache2 apache2-mpm-worker apache2-utils apache2.2-bin apache2.2-common cpu-checker curl dnsmasq-base dnsmasq-utils ebtables gawk iputils-arping kpartx  
  800.   libaio1 libapparmor1 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap libasound2 libasyncns0 libavahi-client3 libavahi-common-data libavahi-common3  
  801.   libconfig-general-perl libcurl3 libflac8 libibverbs1 libjson0 libogg0 libpulse0 librdmacm1 libsdl1.2debian libsdl1.2debian-alsa libsgutils2-2 libsigsegv2  
  802.   libsndfile1 libsysfs2 libvirt-bin libvirt0 libvorbis0a libvorbisenc2 libxenstore3.0 libxml2-utils libxslt1.1 msr-tools nova-api nova-common nova-compute  
  803.   nova-compute-kvm nova-doc nova-network nova-objectstore nova-scheduler nova-volume open-iscsi open-iscsi-utils python-boto python-carrot python-cheetah  
  804.   python-daemon python-dingus python-gflags python-ldap python-libvirt python-libxml2 python-lockfile python-lxml python-m2crypto python-mysqldb python-netaddr  
  805.   python-nose python-nova python-novaclient python-prettytable python-stompy qemu-common qemu-kvm seabios sg3-utils ssl-cert tgt vgabios vlan  
  806. 0 upgraded, 85 newly installed, 0 to remove and 3 not upgraded.  
  807. Need to get 20.6 MB of archives.  
  808. After this operation, 94.1 MB of additional disk space will be used.  
  809. Do you want to continue [Y/n]? y  
  810. Get:1 [14.6 kB]  
  811. Get:2 [465 kB]  
  812. Get:3 [417 kB]                                                                    
  813. Get:4 [13.2 kB]                                                                               
  814. Get:5 [22.4 kB]                                                            
  815. Get:6 [25.0 kB]                                                                
  816. Get:7 [43.2 kB]                                                                
  817. Get:8 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main libcurl3 amd64 7.21.6-3ubuntu3 [230 kB]                                                                         
  818. Get:9 ~dfsg-1ubuntu1 [17.2 kB]                                                                     
  819. Get:10 [144 kB]                                                                         
  820. Get:11 [16.3 kB]                                                                          
  821. Get:12 [103 kB]                                                                      
  822. Get:13 [136 kB]                                                                    
  823. Get:14 [163 kB]                                                                     
  824. Get:15 [291 kB]                                                              
  825. Get:16 [67.3 kB]                                                                           
  826. Get:17 [164 kB]                                                                             
  827. Get:18 [23.0 kB]                                                               
  828. Get:19 [6,370 B]                                                                       
  829. Get:20 [191 kB]                                                          
  830. Get:21 [1,922 B]                                                              
  831. Get:22 [3,632 kB]                                                               
  832. Get:23 [44.6 kB]                                                                          
  833. Get:24 [88.8 kB]                                                                                
  834. Get:25 [74.7 kB]                                                                      
  835. Get:26 [10.4 kB]                                                          
  836. Get:27 [8,050 B]                                                                 
  837. Get:28 [2,735 kB]                                                       
  838. Get:29 [86.0 kB]                                                        
  839. Get:30 [229 kB]                                                      
  840. Get:31 [2,292 B]                                                   
  841. Get:32 [1,478 B]                                                              
  842. Get:33 [9,052 B]                                                                                
  843. Get:34 [6,374 B]                                                                         
  844. Get:35 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main curl amd64 7.21.6-3ubuntu3 [134 kB]                                                                            
  845. Get:36 [208 kB]                                                                      
  846. Get:37 [9,956 B]                                                                    
  847. Get:38 [90.1 kB]                                                                             
  848. Get:39 [23.9 kB]                                                                       
  849. Get:40 [22.0 kB]                                                                    
  850. Get:41 ~beta1+bzr1774-1ubuntu2 [36.8 kB]                                                      
  851. Get:42 [55.1 kB]                                                                    
  852. Get:43 [63.6 kB]                                                                           
  853. Get:44 [18.1 kB]                                                        
  854. Get:45 [726 kB]                                                              
  855. Get:46 [1,013 kB]                                                         
  856. Get:47 [39.8 kB]                                                                     
  857. Get:48 [166 kB]                                                                             
  858. Get:49 [105 kB]                                                       
  859. Get:50 [590 kB]                                                             
  860. Get:51 [299 kB]                                                                          
  861. Get:52 [92.5 kB]                                                                    
  862. Get:53 [171 kB]                                                                   
  863. Get:54 [8,992 B]                                                                          
  864. Get:55 [19.8 kB]                                                                            
  865. Get:56 [9,246 B]                                                                       
  866. Get:57 [39.8 kB]                                                                            
  867. Get:58 [87.7 kB]                                                                           
  868. Get:59 [75.5 kB]                                                       
  869. Get:60 [285 kB]                                                                     
  870. Get:61 [1,307 kB]                                                                     
  871. Get:62 [327 kB]                                                         
  872. Get:63 [82.5 kB]                                                                  
  873. Get:64 [1,182 kB]                                                                          
  874. Get:65 [356 kB]                                                                        
  875. Get:66 [8,746 B]                                                                  
  876. Get:67 ~bzr112-0ubuntu1 [44.0 kB]                                                          
  877. Get:68 [11.1 kB]                                                                     
  878. Get:69 [575 kB]                                                                                
  879. Get:70 [12.2 kB]                                                                                  
  880. Get:71 [34.1 kB]                                                                     
  881. Get:72 [18.4 kB]                                                                          
  882. Get:73 [239 kB]                                                                           
  883. Get:74 [25.4 kB]                                                                          
  884. Get:75 [745 kB]                                                             
  885. Get:76 [26.5 kB]                                                            
  886. Get:77 [7,314 B]                                                               
  887. Get:78 [40.7 kB]                                                                              
  888. Get:79 [4,946 B]                                                       
  889. Get:80 [4,676 B]                                                           
  890. Get:81 [1,694 kB]                                                              
  891. Get:82 [8,120 B]                                                           
  892. Get:83 [6,838 B]                                                       
  893. Get:84 [6,604 B]                                                         
  894. Get:85 [6,852 B]                                                            
  895. Fetched 20.6 MB in 4min 13s (81.6 kB/s)                                                                                                                                 
  896. Extracting templates from packages: 100%  
  897. Preconfiguring packages ...  
  898. Selecting previously deselected package libsigsegv2.  
  899. (Reading database ... 56079 files and directories currently installed.)  
  900. Unpacking libsigsegv2 (from .../libsigsegv2_2.9-4ubuntu2_amd64.deb) ...  
  901. Setting up libsigsegv2 (2.9-4ubuntu2) ...  
  902. Processing triggers for libc-bin ...  
  903. ldconfig deferred processing now taking place  
  904. Selecting previously deselected package gawk.  
  905. (Reading database ... 56087 files and directories currently installed.)  
  906. Unpacking gawk (from .../gawk_1%3a3.1.8+dfsg-0.1build1_amd64.deb) ...  
  907. Selecting previously deselected package libasound2.  
  908. Unpacking libasound2 (from .../libasound2_1.0.24.1-0ubuntu10_amd64.deb) ...  
  909. Selecting previously deselected package libasyncns0.  
  910. Unpacking libasyncns0 (from .../libasyncns0_0.8-4_amd64.deb) ...  
  911. Selecting previously deselected package libavahi-common-data.  
  912. Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.30-4ubuntu1_amd64.deb) ...  
  913. Selecting previously deselected package libavahi-common3.  
  914. Unpacking libavahi-common3 (from .../libavahi-common3_0.6.30-4ubuntu1_amd64.deb) ...  
  915. Selecting previously deselected package libavahi-client3.  
  916. Unpacking libavahi-client3 (from .../libavahi-client3_0.6.30-4ubuntu1_amd64.deb) ...  
  917. Selecting previously deselected package libcurl3.  
  918. Unpacking libcurl3 (from .../libcurl3_7.21.6-3ubuntu3_amd64.deb) ...  
  919. Selecting previously deselected package libogg0.  
  920. Unpacking libogg0 (from .../libogg0_1.2.2~dfsg-1ubuntu1_amd64.deb) ...  
  921. Selecting previously deselected package libflac8.  
  922. Unpacking libflac8 (from .../libflac8_1.2.1-4ubuntu1_amd64.deb) ...  
  923. Selecting previously deselected package libjson0.  
  924. Unpacking libjson0 (from .../libjson0_0.9-1ubuntu1_amd64.deb) ...  
  925. Selecting previously deselected package libvorbis0a.  
  926. Unpacking libvorbis0a (from .../libvorbis0a_1.3.2-1ubuntu2_amd64.deb) ...  
  927. Selecting previously deselected package libvorbisenc2.  
  928. Unpacking libvorbisenc2 (from .../libvorbisenc2_1.3.2-1ubuntu2_amd64.deb) ...  
  929. Selecting previously deselected package libsndfile1.  
  930. Unpacking libsndfile1 (from .../libsndfile1_1.0.24-1ubuntu2_amd64.deb) ...  
  931. Selecting previously deselected package libpulse0.  
  932. Unpacking libpulse0 (from .../libpulse0_1%3a1.0-0ubuntu3.1_amd64.deb) ...  
  933. Selecting previously deselected package seabios.  
  934. Unpacking seabios (from .../seabios_0.6.2-0ubuntu1_all.deb) ...  
  935. Selecting previously deselected package vgabios.  
  936. Unpacking vgabios (from .../vgabios_0.6c-2ubuntu3_all.deb) ...  
  937. Selecting previously deselected package qemu-common.  
  938. Unpacking qemu-common (from .../qemu-common_0.14.1+noroms-0ubuntu6_all.deb) ...  
  939. Selecting previously deselected package libaio1.  
  940. Unpacking libaio1 (from .../libaio1_0.3.109-1ubuntu2_amd64.deb) ...  
  941. Selecting previously deselected package libsdl1.2debian-alsa.  
  942. Unpacking libsdl1.2debian-alsa (from .../libsdl1.2debian-alsa_1.2.14-6.1ubuntu4_amd64.deb) ...  
  943. Selecting previously deselected package libsdl1.2debian.  
  944. Unpacking libsdl1.2debian (from .../libsdl1.2debian_1.2.14-6.1ubuntu4_amd64.deb) ...  
  945. Selecting previously deselected package qemu-kvm.  
  946. Unpacking qemu-kvm (from .../qemu-kvm_0.14.1+noroms-0ubuntu6_amd64.deb) ...  
  947. Selecting previously deselected package ajaxterm.  
  948. Unpacking ajaxterm (from .../ajaxterm_0.10-11ubuntu2_all.deb) ...  
  949. Selecting previously deselected package libapr1.  
  950. Unpacking libapr1 (from .../libapr1_1.4.5-1_amd64.deb) ...  
  951. Selecting previously deselected package libaprutil1.  
  952. Unpacking libaprutil1 (from .../libaprutil1_1.3.12+dfsg-2_amd64.deb) ...  
  953. Selecting previously deselected package libaprutil1-dbd-sqlite3.  
  954. Unpacking libaprutil1-dbd-sqlite3 (from .../libaprutil1-dbd-sqlite3_1.3.12+dfsg-2_amd64.deb) ...  
  955. Selecting previously deselected package libaprutil1-ldap.  
  956. Unpacking libaprutil1-ldap (from .../libaprutil1-ldap_1.3.12+dfsg-2_amd64.deb) ...  
  957. Selecting previously deselected package apache2.2-bin.  
  958. Unpacking apache2.2-bin (from .../apache2.2-bin_2.2.20-1ubuntu1.1_amd64.deb) ...  
  959. Selecting previously deselected package apache2-utils.  
  960. Unpacking apache2-utils (from .../apache2-utils_2.2.20-1ubuntu1.1_amd64.deb) ...  
  961. Selecting previously deselected package apache2.2-common.  
  962. Unpacking apache2.2-common (from .../apache2.2-common_2.2.20-1ubuntu1.1_amd64.deb) ...  
  963. Selecting previously deselected package apache2-mpm-worker.  
  964. Unpacking apache2-mpm-worker (from .../apache2-mpm-worker_2.2.20-1ubuntu1.1_amd64.deb) ...  
  965. Selecting previously deselected package apache2.  
  966. Unpacking apache2 (from .../apache2_2.2.20-1ubuntu1.1_amd64.deb) ...  
  967. Selecting previously deselected package msr-tools.  
  968. Unpacking msr-tools (from .../msr-tools_1.2-3_amd64.deb) ...  
  969. Selecting previously deselected package cpu-checker.  
  970. Unpacking cpu-checker (from .../cpu-checker_0.6-0ubuntu1_all.deb) ...  
  971. Selecting previously deselected package curl.  
  972. Unpacking curl (from .../curl_7.21.6-3ubuntu3_amd64.deb) ...  
  973. Selecting previously deselected package dnsmasq-base.  
  974. Unpacking dnsmasq-base (from .../dnsmasq-base_2.57-1ubuntu1_amd64.deb) ...  
  975. Selecting previously deselected package dnsmasq-utils.  
  976. Unpacking dnsmasq-utils (from .../dnsmasq-utils_2.57-1ubuntu1_amd64.deb) ...  
  977. Selecting previously deselected package ebtables.  
  978. Unpacking ebtables (from .../ebtables_2.0.9.2-2_amd64.deb) ...  
  979. Selecting previously deselected package libsysfs2.  
  980. Unpacking libsysfs2 (from .../libsysfs2_2.1.0+repack-1_amd64.deb) ...  
  981. Selecting previously deselected package iputils-arping.  
  982. Unpacking iputils-arping (from .../iputils-arping_3%3a20101006-1_amd64.deb) ...  
  983. Selecting previously deselected package libapparmor1.  
  984. Unpacking libapparmor1 (from .../libapparmor1_2.7.0~beta1+bzr1774-1ubuntu2_amd64.deb) ...  
  985. Selecting previously deselected package libconfig-general-perl.  
  986. Unpacking libconfig-general-perl (from .../libconfig-general-perl_2.50-1_all.deb) ...  
  987. Selecting previously deselected package libsgutils2-2.  
  988. Unpacking libsgutils2-2 (from .../libsgutils2-2_1.31-1_amd64.deb) ...  
  989. Selecting previously deselected package libxenstore3.0.  
  990. Unpacking libxenstore3.0 (from .../libxenstore3.0_4.1.1-2ubuntu4.1_amd64.deb) ...  
  991. Selecting previously deselected package libvirt0.  
  992. Unpacking libvirt0 (from .../libvirt0_0.9.2-4ubuntu15.1_amd64.deb) ...  
  993. Selecting previously deselected package libvirt-bin.  
  994. Unpacking libvirt-bin (from .../libvirt-bin_0.9.2-4ubuntu15.1_amd64.deb) ...  
  995. Selecting previously deselected package libxml2-utils.  
  996. Unpacking libxml2-utils (from .../libxml2-utils_2.7.8.dfsg-4_amd64.deb) ...  
  997. Selecting previously deselected package libxslt1.1.  
  998. Unpacking libxslt1.1 (from .../libxslt1.1_1.1.26-7_amd64.deb) ...  
  999. Selecting previously deselected package open-iscsi-utils.  
  1000. Unpacking open-iscsi-utils (from .../open-iscsi-utils_2.0.871-0ubuntu9_amd64.deb) ...  
  1001. Selecting previously deselected package open-iscsi.  
  1002. Unpacking open-iscsi (from .../open-iscsi_2.0.871-0ubuntu9_amd64.deb) ...  
  1003. Selecting previously deselected package python-boto.  
  1004. Unpacking python-boto (from .../python-boto_2.0-0ubuntu1_all.deb) ...  
  1005. Selecting previously deselected package python-carrot.  
  1006. Unpacking python-carrot (from .../python-carrot_0.10.7-0ubuntu1_all.deb) ...  
  1007. Selecting previously deselected package python-cheetah.  
  1008. Unpacking python-cheetah (from .../python-cheetah_2.4.4-2ubuntu1_amd64.deb) ...  
  1009. Selecting previously deselected package python-lockfile.  
  1010. Unpacking python-lockfile (from .../python-lockfile_1%3a0.8-2_all.deb) ...  
  1011. Selecting previously deselected package python-daemon.  
  1012. Unpacking python-daemon (from .../python-daemon_1.5.5-1_all.deb) ...  
  1013. Selecting previously deselected package python-dingus.  
  1014. Unpacking python-dingus (from .../python-dingus_0.1-2ubuntu1_all.deb) ...  
  1015. Selecting previously deselected package python-gflags.  
  1016. Unpacking python-gflags (from .../python-gflags_1.5.1-1_all.deb) ...  
  1017. Selecting previously deselected package python-ldap.  
  1018. Unpacking python-ldap (from .../python-ldap_2.3.13-1_amd64.deb) ...  
  1019. Selecting previously deselected package python-libvirt.  
  1020. Unpacking python-libvirt (from .../python-libvirt_0.9.2-4ubuntu15.1_amd64.deb) ...  
  1021. Selecting previously deselected package python-libxml2.  
  1022. Unpacking python-libxml2 (from .../python-libxml2_2.7.8.dfsg-4_amd64.deb) ...  
  1023. Selecting previously deselected package python-lxml.  
  1024. Unpacking python-lxml (from .../python-lxml_2.3-0.1build1_amd64.deb) ...  
  1025. Selecting previously deselected package python-m2crypto.  
  1026. Unpacking python-m2crypto (from .../python-m2crypto_0.20.1+dfsg1-1.1ubuntu1_amd64.deb) ...  
  1027. Selecting previously deselected package python-mysqldb.  
  1028. Unpacking python-mysqldb (from .../python-mysqldb_1.2.3-0ubuntu1_amd64.deb) ...  
  1029. Selecting previously deselected package python-netaddr.  
  1030. Unpacking python-netaddr (from .../python-netaddr_0.7.5-4_all.deb) ...  
  1031. Selecting previously deselected package python-nose.  
  1032. Unpacking python-nose (from .../python-nose_1.0.0-1ubuntu1_all.deb) ...  
  1033. Selecting previously deselected package python-prettytable.  
  1034. Unpacking python-prettytable (from .../python-prettytable_0.5-1ubuntu1_all.deb) ...  
  1035. Selecting previously deselected package python-novaclient.  
  1036. Unpacking python-novaclient (from .../python-novaclient_2.6.4~bzr112-0ubuntu1_all.deb) ...  
  1037. Selecting previously deselected package python-stompy.  
  1038. Unpacking python-stompy (from .../python-stompy_0.2.5-1ubuntu1_all.deb) ...  
  1039. Selecting previously deselected package sg3-utils.  
  1040. Unpacking sg3-utils (from .../sg3-utils_1.31-1_amd64.deb) ...  
  1041. Selecting previously deselected package ssl-cert.  
  1042. Unpacking ssl-cert (from .../ssl-cert_1.0.28_all.deb) ...  
  1043. Selecting previously deselected package libibverbs1.  
  1044. Unpacking libibverbs1 (from .../libibverbs1_1.1.3-2ubuntu1_amd64.deb) ...  
  1045. Selecting previously deselected package librdmacm1.  
  1046. Unpacking librdmacm1 (from .../librdmacm1_1.0.14.1-2_amd64.deb) ...  
  1047. Selecting previously deselected package tgt.  
  1048. Unpacking tgt (from .../tgt_1%3a1.0.17-1ubuntu1_amd64.deb) ...  
  1049. Selecting previously deselected package kpartx.  
  1050. Unpacking kpartx (from .../kpartx_0.4.9-2ubuntu1_amd64.deb) ...  
  1051. Selecting previously deselected package python-nova.  
  1052. Unpacking python-nova (from .../python-nova_2011.3-0ubuntu6.3_all.deb) ...  
  1053. Selecting previously deselected package nova-common.  
  1054. Unpacking nova-common (from .../nova-common_2011.3-0ubuntu6.3_all.deb) ...  
  1055. Selecting previously deselected package nova-api.  
  1056. Unpacking nova-api (from .../nova-api_2011.3-0ubuntu6.3_all.deb) ...  
  1057. Selecting previously deselected package vlan.  
  1058. Unpacking vlan (from .../vlan_1.9-3ubuntu3_amd64.deb) ...  
  1059. Selecting previously deselected package nova-compute-kvm.  
  1060. Unpacking nova-compute-kvm (from .../nova-compute-kvm_2011.3-0ubuntu6.3_all.deb) ...  
  1061. Selecting previously deselected package nova-compute.  
  1062. Unpacking nova-compute (from .../nova-compute_2011.3-0ubuntu6.3_all.deb) ...  
  1063. Selecting previously deselected package nova-doc.  
  1064. Unpacking nova-doc (from .../nova-doc_2011.3-0ubuntu6.3_all.deb) ...  
  1065. Selecting previously deselected package nova-network.  
  1066. Unpacking nova-network (from .../nova-network_2011.3-0ubuntu6.3_all.deb) ...  
  1067. Selecting previously deselected package nova-objectstore.  
  1068. Unpacking nova-objectstore (from .../nova-objectstore_2011.3-0ubuntu6.3_all.deb) ...  
  1069. Selecting previously deselected package nova-scheduler.  
  1070. Unpacking nova-scheduler (from .../nova-scheduler_2011.3-0ubuntu6.3_all.deb) ...  
  1071. Selecting previously deselected package nova-volume.  
  1072. Unpacking nova-volume (from .../nova-volume_2011.3-0ubuntu6.3_all.deb) ...  
  1073. Processing triggers for man-db ...  
  1074. Processing triggers for ureadahead ...  
  1075. Processing triggers for ufw ...  
  1076. Setting up gawk (1:3.1.8+dfsg-0.1build1) ...  
  1077. Setting up libasound2 (1.0.24.1-0ubuntu10) ...  
  1078. Setting up libasyncns0 (0.8-4) ...  
  1079. Setting up libavahi-common-data (0.6.30-4ubuntu1) ...  
  1080. Setting up libavahi-common3 (0.6.30-4ubuntu1) ...  
  1081. Setting up libavahi-client3 (0.6.30-4ubuntu1) ...  
  1082. Setting up libcurl3 (7.21.6-3ubuntu3) ...  
  1083. Setting up libogg0 (1.2.2~dfsg-1ubuntu1) ...  
  1084. Setting up libflac8 (1.2.1-4ubuntu1) ...  
  1085. Setting up libjson0 (0.9-1ubuntu1) ...  
  1086. Setting up libvorbis0a (1.3.2-1ubuntu2) ...  
  1087. Setting up libvorbisenc2 (1.3.2-1ubuntu2) ...  
  1088. Setting up libsndfile1 (1.0.24-1ubuntu2) ...  
  1089. Setting up libpulse0 (1:1.0-0ubuntu3.1) ...  
  1090. Setting up seabios (0.6.2-0ubuntu1) ...  
  1091. Setting up vgabios (0.6c-2ubuntu3) ...  
  1092. Setting up qemu-common (0.14.1+noroms-0ubuntu6) ...  
  1093. Setting up libaio1 (0.3.109-1ubuntu2) ...  
  1094. Setting up libsdl1.2debian-alsa (1.2.14-6.1ubuntu4) ...  
  1095. Setting up libsdl1.2debian (1.2.14-6.1ubuntu4) ...  
  1096. Setting up qemu-kvm (0.14.1+noroms-0ubuntu6) ...  
  1097. qemu-kvm start/running  
  1098. Setting up ajaxterm (0.10-11ubuntu2) ...  
  1099.  * Starting web based terminal:                                                                                                                                 [ OK ]   
  1100. Setting up libapr1 (1.4.5-1) ...  
  1101. Setting up libaprutil1 (1.3.12+dfsg-2) ...  
  1102. Setting up libaprutil1-dbd-sqlite3 (1.3.12+dfsg-2) ...  
  1103. Setting up libaprutil1-ldap (1.3.12+dfsg-2) ...  
  1104. Setting up apache2.2-bin (2.2.20-1ubuntu1.1) ...  
  1105. Setting up apache2-utils (2.2.20-1ubuntu1.1) ...  
  1106. Setting up apache2.2-common (2.2.20-1ubuntu1.1) ...  
  1107. Enabling site default.  
  1108. Enabling module alias.  
  1109. Enabling module autoindex.  
  1110. Enabling module dir.  
  1111. Enabling module env.  
  1112. Enabling module mime.  
  1113. Enabling module negotiation.  
  1114. Enabling module setenvif.  
  1115. Enabling module status.  
  1116. Enabling module auth_basic.  
  1117. Enabling module deflate.  
  1118. Enabling module authz_default.  
  1119. Enabling module authz_user.  
  1120. Enabling module authz_groupfile.  
  1121. Enabling module authn_file.  
  1122. Enabling module authz_host.  
  1123. Enabling module reqtimeout.  
  1124. Setting up apache2-mpm-worker (2.2.20-1ubuntu1.1) ...  
  1125.  * Starting web server apache2                                                                                                                                  [ OK ]   
  1126. Setting up apache2 (2.2.20-1ubuntu1.1) ...  
  1127. Setting up msr-tools (1.2-3) ...  
  1128. Setting up cpu-checker (0.6-0ubuntu1) ...  
  1129. Setting up curl (7.21.6-3ubuntu3) ...  
  1130. Setting up dnsmasq-base (2.57-1ubuntu1) ...  
  1131. Setting up dnsmasq-utils (2.57-1ubuntu1) ...  
  1132. Setting up ebtables (2.0.9.2-2) ...  
  1133. Setting up libsysfs2 (2.1.0+repack-1) ...  
  1134. Setting up iputils-arping (3:20101006-1) ...  
  1135. Setting up libapparmor1 (2.7.0~beta1+bzr1774-1ubuntu2) ...  
  1136. Setting up libconfig-general-perl (2.50-1) ...  
  1137. Setting up libsgutils2-2 (1.31-1) ...  
  1138. Setting up libxenstore3.0 (4.1.1-2ubuntu4.1) ...  
  1139. Setting up libvirt0 (0.9.2-4ubuntu15.1) ...  
  1140. Setting up libvirt-bin (0.9.2-4ubuntu15.1) ...  
  1141. Adding group `libvirtd' (GID 119) ...  
  1142. Done.  
  1143. libvirt-bin start/running, process 15680  
  1144. Setting up libxml2-utils (2.7.8.dfsg-4) ...  
  1145. Setting up libxslt1.1 (1.1.26-7) ...  
  1146. Setting up open-iscsi-utils (2.0.871-0ubuntu9) ...  
  1147. Setting up open-iscsi (2.0.871-0ubuntu9) ...  
  1148. update-rc.d: warning: open-iscsi stop runlevel arguments (0 1 6) do not match LSB Default-Stop values (0 6)  
  1149.  * Starting iSCSI initiator service iscsid                                                                                                                      [ OK ]   
  1150.  * Setting up iSCSI targets                                                                                                                                     [ OK ]   
  1151. Setting up python-boto (2.0-0ubuntu1) ...  
  1152. Setting up python-carrot (0.10.7-0ubuntu1) ...  
  1153. Setting up python-cheetah (2.4.4-2ubuntu1) ...  
  1154. Setting up python-lockfile (1:0.8-2) ...  
  1155. Setting up python-daemon (1.5.5-1) ...  
  1156. Setting up python-dingus (0.1-2ubuntu1) ...  
  1157. Setting up python-gflags (1.5.1-1) ...  
  1158. Setting up python-ldap (2.3.13-1) ...  
  1159. Setting up python-libvirt (0.9.2-4ubuntu15.1) ...  
  1160. Setting up python-libxml2 (2.7.8.dfsg-4) ...  
  1161. Setting up python-lxml (2.3-0.1build1) ...  
  1162. Setting up python-m2crypto (0.20.1+dfsg1-1.1ubuntu1) ...  
  1163. Setting up python-mysqldb (1.2.3-0ubuntu1) ...  
  1164. Setting up python-netaddr (0.7.5-4) ...  
  1165. Setting up python-nose (1.0.0-1ubuntu1) ...  
  1166. Setting up python-prettytable (0.5-1ubuntu1) ...  
  1167. Setting up python-novaclient (2.6.4~bzr112-0ubuntu1) ...  
  1168. Setting up python-stompy (0.2.5-1ubuntu1) ...  
  1169. Setting up sg3-utils (1.31-1) ...  
  1170. Setting up ssl-cert (1.0.28) ...  
  1171. Setting up libibverbs1 (1.1.3-2ubuntu1) ...  
  1172. Setting up librdmacm1 (1.0.14.1-2) ...  
  1173. Setting up tgt (1:1.0.17-1ubuntu1) ...  
  1174. Setting up kpartx (0.4.9-2ubuntu1) ...  
  1175. Setting up python-nova (2011.3-0ubuntu6.3) ...  
  1176. Setting up nova-common (2011.3-0ubuntu6.3) ...  
  1177. Adding system user `nova' (UID 111) ...  
  1178. Adding new user `nova' (UID 111) with group `nova' ...  
  1179. Not creating home directory `/var/lib/nova'.  
  1180. /usr/lib/python2.7/dist-packages/migrate/changeset/schema.py:124: MigrateDeprecationWarning: Passing a Column object to alter_column is deprecated. Just pass in keyword parameters instead.  
  1181.   MigrateDeprecationWarning  
  1182. Setting up nova-api (2011.3-0ubuntu6.3) ...  
  1183. nova-api start/running, process 16089  
  1184. Setting up vlan (1.9-3ubuntu3) ...  
  1185. Setting up nova-doc (2011.3-0ubuntu6.3) ...  
  1186. Setting up nova-network (2011.3-0ubuntu6.3) ...  
  1187. nova-network start/running, process 16131  
  1188. Setting up nova-objectstore (2011.3-0ubuntu6.3) ...  
  1189. nova-objectstore start/running, process 16165  
  1190. Setting up nova-scheduler (2011.3-0ubuntu6.3) ...  
  1191. nova-scheduler start/running, process 16209  
  1192. Setting up nova-volume (2011.3-0ubuntu6.3) ...  
  1193. nova-volume start/running, process 16249  
  1194. Setting up nova-compute-kvm (2011.3-0ubuntu6.3) ...  
  1195. Setting up nova-compute (2011.3-0ubuntu6.3) ...  
  1196. Adding user `nova' to group `libvirtd' ...  
  1197. Adding user nova to group libvirtd  
  1198. Done.  
  1199. nova-compute start/running, process 16325  
  1200. Processing triggers for libc-bin ...  
  1201. ldconfig deferred processing now taking place  
  1202. Processing triggers for python-support ...  
  1203.   
  1204.   
  1205.   
  1206. nova packages installation Done! Press ENTER to install euca2ools...  
  1207.   
  1208. Reading package lists... Done  
  1209. Building dependency tree         
  1210. Reading state information... Done  
  1211. The following extra packages will be installed:  
  1212.   cloud-utils python-paramiko  
  1213. The following NEW packages will be installed:  
  1214.   cloud-utils euca2ools python-paramiko  
  1215. 0 upgraded, 3 newly installed, 0 to remove and 3 not upgraded.  
  1216. Need to get 1,012 kB of archives.  
  1217. After this operation, 10.9 MB of additional disk space will be used.  
  1218. Get:1 ~bzr464-0ubuntu2 [182 kB]  
  1219. Get:2 [797 kB]  
  1220. Get:3 [33.0 kB]                                                                         
  1221. Fetched 1,012 kB in 15s (63.5 kB/s)                                                                                                                                     
  1222. Selecting previously deselected package euca2ools.  
  1223. (Reading database ... 62407 files and directories currently installed.)  
  1224. Unpacking euca2ools (from .../euca2ools_2.0.0~bzr464-0ubuntu2_all.deb) ...  
  1225. Selecting previously deselected package python-paramiko.  
  1226. Unpacking python-paramiko (from .../python-paramiko_1.7.7.1-1ubuntu1_all.deb) ...  
  1227. Selecting previously deselected package cloud-utils.  
  1228. Unpacking cloud-utils (from .../cloud-utils_0.23-0ubuntu7_all.deb) ...  
  1229. Processing triggers for man-db ...  
  1230. Setting up euca2ools (2.0.0~bzr464-0ubuntu2) ...  
  1231. Setting up python-paramiko (1.7.7.1-1ubuntu1) ...  
  1232. Setting up cloud-utils (0.23-0ubuntu7) ...  
  1233.   
  1234.   
  1235.   
  1236. euca2ools installation Done! Press ENTER to install unzip...  
  1237.   
  1238. Reading package lists... Done  
  1239. Building dependency tree         
  1240. Reading state information... Done  
  1241. Suggested packages:  
  1242.   zip  
  1243. The following NEW packages will be installed:  
  1244.   unzip  
  1245. 0 upgraded, 1 newly installed, 0 to remove and 3 not upgraded.  
  1246. Need to get 192 kB of archives.  
  1247. After this operation, 434 kB of additional disk space will be used.  
  1248. Get:1 [192 kB]  
  1249. Fetched 192 kB in 9s (20.3 kB/s)                                                                                                                                        
  1250. Selecting previously deselected package unzip.  
  1251. (Reading database ... 63388 files and directories currently installed.)  
  1252. Unpacking unzip (from .../unzip_6.0-4ubuntu1_amd64.deb) ...  
  1253. Processing triggers for man-db ...  
  1254. Setting up unzip (6.0-4ubuntu1) ...  
  1255.   
  1256.   
  1257.   
  1258. unzip installation Done! Press ENTER to install iscsitarget...  
  1259.   
  1260. Reading package lists... Done  
  1261. Building dependency tree         
  1262. Reading state information... Done  
  1263. The following extra packages will be installed:  
  1264.   binutils cpp cpp-4.6 dkms fakeroot gcc gcc-4.6 libc-dev-bin libc6-dev libgomp1 libmpc2 libmpfr4 libquadmath0 linux-libc-dev make manpages-dev  
  1265. Suggested packages:  
  1266.   binutils-doc cpp-doc gcc-4.6-locales gcc-multilib autoconf automake1.9 libtool flex bison gdb gcc-doc gcc-4.6-multilib libmudflap0-4.6-dev gcc-4.6-doc libgcc1-dbg  
  1267.   libgomp1-dbg libquadmath0-dbg libmudflap0-dbg binutils-gold iscsitarget-source glibc-doc make-doc  
  1268. Recommended packages:  
  1269.   iscsitarget-module linux-headers-2.6  
  1270. The following NEW packages will be installed:  
  1271.   binutils cpp cpp-4.6 dkms fakeroot gcc gcc-4.6 iscsitarget iscsitarget-dkms libc-dev-bin libc6-dev libgomp1 libmpc2 libmpfr4 libquadmath0 linux-libc-dev make  
  1272.   manpages-dev  
  1273. 0 upgraded, 18 newly installed, 0 to remove and 3 not upgraded.  
  1274. Need to get 20.9 MB of archives.  
  1275. After this operation, 60.8 MB of additional disk space will be used.  
  1276. Get:1 [25.4 kB]  
  1277. Get:2 [126 kB]  
  1278. Get:3 [2,637 kB]  
  1279. Get:4 [188 kB]                                                                                 
  1280. Get:5 [39.5 kB]                                                                                   
  1281. Get:6 [4,816 kB]                                                                         
  1282. Get:7 [28.0 kB]                                                                            
  1283. Get:8 [7,514 kB]                                                                         
  1284. Get:9 [5,110 B]                                                                            
  1285. Get:10 [118 kB]                                                                            
  1286. Get:11 [72.3 kB]                                                                            
  1287. Get:12 [107 kB]                                                                                 
  1288. Get:13 [71.2 kB]                                                              
  1289. Get:14 [66.0 kB]                                                           
  1290. Get:15 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main libc-dev-bin amd64 2.13-20ubuntu5 [82.1 kB]                                                                    
  1291. Get:16 http://hk.archive.ubuntu.com/ubuntu/ oneiric-updates/main linux-libc-dev amd64 3.0.0-14.23 [842 kB]                                                              
  1292. Get:17 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main libc6-dev amd64 2.13-20ubuntu5 [2,575 kB]                                                                      
  1293. Get:18 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main manpages-dev all 3.27-1ubuntu2 [1,627 kB]                                                                      
  1294. Fetched 20.9 MB in 3min 3s (114 kB/s)                                                                                                                                   
  1295. Selecting previously deselected package libgomp1.  
  1296. (Reading database ... 63406 files and directories currently installed.)  
  1297. Unpacking libgomp1 (from .../libgomp1_4.6.1-9ubuntu3_amd64.deb) ...  
  1298. Selecting previously deselected package libquadmath0.  
  1299. Unpacking libquadmath0 (from .../libquadmath0_4.6.1-9ubuntu3_amd64.deb) ...  
  1300. Selecting previously deselected package binutils.  
  1301. Unpacking binutils (from .../binutils_2.21.53.20110810-0ubuntu5_amd64.deb) ...  
  1302. Selecting previously deselected package libmpfr4.  
  1303. Unpacking libmpfr4 (from .../libmpfr4_3.0.1-5_amd64.deb) ...  
  1304. Selecting previously deselected package libmpc2.  
  1305. Unpacking libmpc2 (from .../libmpc2_0.9-3_amd64.deb) ...  
  1306. Selecting previously deselected package cpp-4.6.  
  1307. Unpacking cpp-4.6 (from .../cpp-4.6_4.6.1-9ubuntu3_amd64.deb) ...  
  1308. Selecting previously deselected package cpp.  
  1309. Unpacking cpp (from .../cpp_4%3a4.6.1-2ubuntu5_amd64.deb) ...  
  1310. Selecting previously deselected package gcc-4.6.  
  1311. Unpacking gcc-4.6 (from .../gcc-4.6_4.6.1-9ubuntu3_amd64.deb) ...  
  1312. Selecting previously deselected package gcc.  
  1313. Unpacking gcc (from .../gcc_4%3a4.6.1-2ubuntu5_amd64.deb) ...  
  1314. Selecting previously deselected package make.  
  1315. Unpacking make (from .../make_3.81-8.1ubuntu1_amd64.deb) ...  
  1316. Selecting previously deselected package dkms.  
  1317. Unpacking dkms (from .../dkms_2.2.0.2-1ubuntu4_all.deb) ...  
  1318. Selecting previously deselected package fakeroot.  
  1319. Unpacking fakeroot (from .../fakeroot_1.17-1_amd64.deb) ...  
  1320. Selecting previously deselected package iscsitarget.  
  1321. Unpacking iscsitarget (from .../iscsitarget_1.4.20.2-5ubuntu1_amd64.deb) ...  
  1322. Selecting previously deselected package iscsitarget-dkms.  
  1323. Unpacking iscsitarget-dkms (from .../iscsitarget-dkms_1.4.20.2-5ubuntu1_all.deb) ...  
  1324. Selecting previously deselected package libc-dev-bin.  
  1325. Unpacking libc-dev-bin (from .../libc-dev-bin_2.13-20ubuntu5_amd64.deb) ...  
  1326. Selecting previously deselected package linux-libc-dev.  
  1327. Unpacking linux-libc-dev (from .../linux-libc-dev_3.0.0-14.23_amd64.deb) ...  
  1328. Selecting previously deselected package libc6-dev.  
  1329. Unpacking libc6-dev (from .../libc6-dev_2.13-20ubuntu5_amd64.deb) ...  
  1330. Selecting previously deselected package manpages-dev.  
  1331. Unpacking manpages-dev (from .../manpages-dev_3.27-1ubuntu2_all.deb) ...  
  1332. Processing triggers for man-db ...  
  1333. Processing triggers for ureadahead ...  
  1334. Setting up libgomp1 (4.6.1-9ubuntu3) ...  
  1335. Setting up libquadmath0 (4.6.1-9ubuntu3) ...  
  1336. Setting up binutils (2.21.53.20110810-0ubuntu5) ...  
  1337. Setting up libmpfr4 (3.0.1-5) ...  
  1338. Setting up libmpc2 (0.9-3) ...  
  1339. Setting up cpp-4.6 (4.6.1-9ubuntu3) ...  
  1340. Setting up cpp (4:4.6.1-2ubuntu5) ...  
  1341. Setting up gcc-4.6 (4.6.1-9ubuntu3) ...  
  1342. Setting up gcc (4:4.6.1-2ubuntu5) ...  
  1343. Setting up make (3.81-8.1ubuntu1) ...  
  1344. Setting up dkms (2.2.0.2-1ubuntu4) ...  
  1345. Setting up fakeroot (1.17-1) ...  
  1346. update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode.  
  1347. Setting up iscsitarget (1.4.20.2-5ubuntu1) ...  
  1348.  * iscsitarget not enabled in "/etc/default/iscsitarget", not starting...  
  1349. Setting up iscsitarget-dkms (1.4.20.2-5ubuntu1) ...  
  1350.   
  1351. Creating symlink /var/lib/dkms/iscsitarget/1.4.20.2/source ->  
  1352.                  /usr/src/iscsitarget-1.4.20.2  
  1353.   
  1354. DKMS: add Completed.  
  1355.   
  1356. Kernel preparation unnecessary for this kernel.  Skipping...  
  1357.   
  1358. Building module:  
  1359. cleaning build area....  
  1360. make KERNELRELEASE=3.0.0-12-server -C /lib/modules/3.0.0-12-server/build M=/var/lib/dkms/iscsitarget/1.4.20.2/build.......  
  1361. cleaning build area....  
  1362.   
  1363. DKMS: build Completed.  
  1364.   
  1365. iscsi_trgt:  
  1366. Running module version sanity check.  
  1367.  - Original module  
  1368.    - No original module exists within this kernel  
  1369.  - Installation  
  1370.    - Installing to /lib/modules/3.0.0-12-server/updates/dkms/  
  1371.   
  1372. depmod......  
  1373.   
  1374. DKMS: install Completed.  
  1375. Setting up libc-dev-bin (2.13-20ubuntu5) ...  
  1376. Setting up linux-libc-dev (3.0.0-14.23) ...  
  1377. Setting up libc6-dev (2.13-20ubuntu5) ...  
  1378. Setting up manpages-dev (3.27-1ubuntu2) ...  
  1379. Processing triggers for libc-bin ...  
  1380. ldconfig deferred processing now taking place  
  1381.   
  1382.   
  1383.   
  1384. iscsitarget installation Done! Press ENTER to Enable iscsitarget ...  
  1385.   
  1386.   
  1387.   
  1388.   
  1389. Enabling iscsitarget Done! Press ENTER to Create a Physical Volume...  
  1390.   
  1391.   Device /dev /sda6 not found (or ignored by filtering).  【脚本写的是sudo pvcreate /dev /sda6,实际测试系统中的分区是 /dev/sda5, 运行 vgdisplay显示,nova_volumes已经成功建立。】  
  1392.   
  1393.   
  1394. Creating a Physical Volume servicet Done!   
  1395. Press ENTER to Create a Volume Group named nova-volumes.  
  1396.   
  1397.   No physical volume label read from /dev/sda5  
  1398.   Physical volume "/dev/sda5" successfully created  
  1399.   Volume group "nova-volumes" successfully created  
  1400.   
  1401.   
  1402.   
  1403. Creating a Volume Group named nova-volumes Done!   
  1404. Press ENTER to Change the ownership of the /etc/nova folder and permissions for /etc/nova/nova.conf...  
  1405.   
  1406.   
  1407.   
  1408.   
  1409. Enabling iscsitarget Done! Press ENTER to Create a Physical Volume...  
  1410.   
  1411.   Device /dev/sda6 not found (or ignored by filtering).  
  1412.   
  1413.   
  1414. Creating a Physical Volume servicet Done!   
  1415. Press ENTER to Create a Volume Group named nova-volumes.  
  1416.   
  1417.   No physical volume label read from /dev/sda5  
  1418.   Physical volume "/dev/sda5" successfully created  
  1419.   Volume group "nova-volumes" successfully created  
  1420.   
  1421.   
  1422.   
  1423. Creating a Volume Group named nova-volumes Done!   
  1424. Press ENTER to Change the ownership of the /etc/nova folder and permissions for /etc/nova/nova.conf...

  1425.   
  1426.   
  1427. Operation Done!   
  1428. Now refer to openstack_server1_configuration1.txt file to configure system.  
  1429. Restart your server after the configuration is done.  
  1430.   
  1431.   
  1432. localadmin@server1:~$ sudo vi /etc/ntp.conf  
  1433. localadmin@server1:~$   
  1434. localadmin@server1:~$ sudo vi /etc/mysql/my.cnf  
  1435. localadmin@server1:~$   
  1436. localadmin@server1:~$ sudo vi /etc/nova/nova.conf  
  1437. localadmin@server1:~$   
  1438. localadmin@server1:~$ sudo reboot  
  1439.   
  1440.   
  1441. ......  
  1442.   
  1443. localadmin@server1:~$ sudo ./openstack_server1_package_install_2.sh  
  1444. Create nova schema in the MySQL Database.  
  1445. /usr/lib/python2.7/dist-packages/migrate/changeset/schema.py:124: MigrateDeprecationWarning: Passing a Column object to alter_column is deprecated. Just pass in keyword parameters instead.  
  1446.   MigrateDeprecationWarning  
  1447.   
  1448.   
  1449.   
  1450. Creating nova schema in the MySQL Database Done!   
  1451. Press ENTER to Provide a range of IPs to be attached to the instances...  

  1452.  
  1453. Providing a range of IPs to be attached to the instances Done!   
  1454. Press ENTER to Allocate 32 pubic IP addresses for use with the instances starting from 10.10.10.225...  
  1455.   
  1456.   
  1457.   
  1458. Allocating 32 pubic IP addresses for use with the instances starting from 10.10.10.225 Done!   
  1459. Press ENTER to Create a user with admin rights on nova...  
  1460.   
  1461. export EC2_ACCESS_KEY=64e957a8-0ca0-4b13-b83a-92d82a6ffa4e  
  1462. export EC2_SECRET_KEY=c6d0d536-cf05-4192-8e46-d1d75a41efe7  
  1463.   
  1464.   
  1465.   
  1466. Creating a user with admin rights on nova Done!   
  1467. Press ENTER to Create a project named proj...  
  1468.   
  1469.   
  1470.   
  1471.   
  1472. Creating a project named proj Done!   
  1473. Press ENTER to restart you server...  
  1474.   
  1475.   
  1476. Broadcast message from localadmin@server1  
  1477.     (/dev/pts/0) at 19:16 ...  
  1478.   
  1479. The system is going down for reboot NOW!  

  1480. ......  


  1481.   
  1482. localadmin@server1:~$ sudo ./openstack_server1_package_install_3.sh  
  1483. [sudo] password for localadmin:   
  1484. Create a directory to download nova credentials and download the zip file.  
  1485.   
  1486.   
  1487.   
  1488. Creating a directory to download nova credentials and download the zip file Done!   
  1489. Press ENTER to Generate and save credentials for accessing/managing the nova cloud...  

  1490.   
  1491.   
  1492. Generating and save credentials for accessing/managing the nova cloud Done!   
  1493. Press ENTER to continue and follow the instructions...  
  1494.   
  1495.   
  1496. Contents of novacreds.zip are required to use euca2ools to manage the cloud infrastructure and you will need to transfer this zip file to any machine from where you want to run the commands from euca2ools. We will be using these credentials from client1 as well.  
  1497.   
  1498. Navigate in to the folder created and extract the files and change their ownership.  
  1499. Archive:  novacreds.zip  
  1500.  extracting: novarc                    
  1501.  extracting: pk.pem                    
  1502.  extracting: cert.pem                  
  1503.  extracting: cacert.pem                
  1504.   
  1505. In Diablo, by default novarc file contains EC2_ACCESS_KEY in a format that is not usable by euca-* commands. To fix this:  
  1506. Execute sudo nova-manage user exports novaadmin  
  1507. The output will be something like:  
  1508. export EC2_ACCESS_KEY=  
  1509. export EC2_SECRET_KEY=  
  1510. Now let's do it. Press ENTER...  
  1511.   
  1512. export EC2_ACCESS_KEY=64e957a8-0ca0-4b13-b83a-92d82a6ffa4e  
  1513. export EC2_SECRET_KEY=c6d0d536-cf05-4192-8e46-d1d75a41efe7  
  1514.   
  1515. You see the keys? Good!  
  1516. Open the /home/localadmin/creds/novarc file and make sure the line below exsists:  
  1517. 'export EC2_ACCESS_KEY=":proj'  
  1518.   
  1519. Next, better reboot you server. And do the following...  
  1520.   
  1521. $ source /home/localadmin/creds/novarc  
  1522. $ euca-describe-availability-zones verbose  
  1523.   
  1524. If you see something like the following with all components happy, it means that the set up is ready to be used.  
  1525.   
  1526. AVAILABILITYZONE    nova available  
  1527. AVAILABILITYZONE    |- server1  
  1528. AVAILABILITYZONE    | |- nova-compute       enabled :-) 2011-09-29 07:26:04  
  1529. AVAILABILITYZONE    | |- nova-scheduler     enabled :-) 2011-09-29 07:26:04  
  1530. AVAILABILITYZONE    | |- nova-network       enabled :-) 2011-09-29 07:26:07  
  1531. AVAILABILITYZONE    | |- nova-volume        enabled :-) 2011-09-29 07:26:06  
  1532. Good luck!  
  1533. Now, reboot your server.  
  1534.   
  1535. localadmin@server1:~$ sudo reboot  

  1536. ......  

  1537. localadmin@server1:~$ source /home/localadmin/creds/novarc  
  1538. localadmin@server1:~$ euca-describe-availability-zones verbose  
  1539. AVAILABILITYZONE    nova    available  
  1540. AVAILABILITYZONE    |- server1    
  1541. AVAILABILITYZONE    | |- nova-volume    enabled :-) 2012-01-03 11:39:09  
  1542. AVAILABILITYZONE    | |- nova-scheduler enabled :-) 2012-01-03 11:39:09  
  1543. AVAILABILITYZONE    | |- nova-network   enabled :-) 2012-01-03 11:39:09  
  1544. AVAILABILITYZONE    | |- nova-compute   enabled :-) 2012-01-03 11:39:09  
  1545. localadmin@server1:~$ 

你也试一下?祝你成功!

阅读(1785) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~