尝试安装 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
openstack_server1_configuration1.txt
- Openstack Server1 Configuration:
-
- 1. Edit /etc/ntp.conf
- BELOW server ntp.ubuntu.com +
- server 127.127.1.0
- fudge 127.127.1.0 stratum 10
-
- 2. Edit /etc/mysql/my.cnf.
- Replace 'bind-address = 127.0.0.1' with:
- bind-address = 0.0.0.0
-
- 3. Edit the /etc/nova/nova.conf, add lines below:
- --s3_host=10.10.10.2
- --rabbit_host=10.10.10.2
- --cc_host=10.10.10.2
- --nova_url=
- --fixed_range=192.168.0.0/16
- --network_size=8
- --routing_source_ip=10.10.10.2
- --sql_connection=mysql://novadbadmin:novasecret@10.10.10.2/nova
- --glance_api_servers=192.168.3.2:9292
- --image_service=nova.image.glance.GlanceImageService
- --iscsi_ip_prefix=192.168.
- --vlan_interface=br100
- --public_interface=eth0
-
- 4. Restart your server
openstack_server1_package_install_2.sh
- #!/bin/bash
- echo
- echo "Create nova schema in the MySQL Database."
- sudo nova-manage db sync
- echo
- echo
- echo
- echo "Creating nova schema in the MySQL Database Done! "
- echo "Press ENTER to Provide a range of IPs to be attached to the instances..."
- read anykey
-
- sudo nova-manage network create private 192.168.4.0/24 1 256
- echo
- echo
- echo
- echo "Providing a range of IPs to be attached to the instances Done! "
- echo "Press ENTER to Allocate 32 pubic IP addresses for use with the instances starting from 10.10.10.225..."
- read anykey
-
- sudo nova-manage floating create --ip_range=10.10.10.224/27
- echo
- echo
- echo
- echo "Allocating 32 pubic IP addresses for use with the instances starting from 10.10.10.225 Done! "
- echo "Press ENTER to Create a user with admin rights on nova..."
- read anykey
-
- sudo nova-manage user admin novaadmin
- echo
- echo
- echo
- echo "Creating a user with admin rights on nova Done! "
- echo "Press ENTER to Create a project named proj..."
- read anykey
-
- sudo nova-manage project create proj novaadmin
- echo
- echo
- echo
- echo "Creating a project named proj Done! "
- echo "Press ENTER to restart you server..."
- read anykey
-
- sudo reboot
openstack_server1_package_install_3.sh
- #!/bin/bash
- echo "Create a directory to download nova credentials and download the zip file."
- mkdir /home/localadmin/creds
- echo
- echo
- echo
- echo "Creating a directory to download nova credentials and download the zip file Done! "
- echo "Press ENTER to Generate and save credentials for accessing/managing the nova cloud..."
- read anykey
-
- sudo nova-manage project zipfile proj novaadmin /home/localadmin/creds/novacreds.zip
- echo
- echo
- echo
- echo "Generating and save credentials for accessing/managing the nova cloud Done! "
- echo "Press ENTER to continue and follow the instructions..."
- read anykey
-
- echo
- 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."
- echo
- echo "Navigate in to the folder created and extract the files and change their ownership."
- cd /home/localadmin/creds
- unzip novacreds.zip
- sudo chown localadmin:localadmin /home/localadmin/creds/ -R
- echo
- echo "In Diablo, by default novarc file contains EC2_ACCESS_KEY in a format that is not usable by euca-* commands. To fix this:"
- echo "Execute sudo nova-manage user exports novaadmin"
- echo "The output will be something like:"
- echo "export EC2_ACCESS_KEY="
- echo "export EC2_SECRET_KEY="
- echo "Now let's do it. Press ENTER..."
- read anykey
-
- sudo nova-manage user exports novaadmin
- echo
- echo "You see the keys? Good!"
- echo "Open the /home/localadmin/creds/novarc file and make sure the line below exsists:"
- echo "'export EC2_ACCESS_KEY=":proj'"
- echo
- echo "Next, better reboot you server. And do the following..."
- echo
- echo
- echo "$ source /home/localadmin/creds/novarc"
- echo "$ euca-describe-availability-zones verbose"
- echo "If you see something like the following with all components happy, it means that the set up is ready to be used."
- echo
- echo "AVAILABILITYZONE nova available"
- echo "AVAILABILITYZONE |- server1"
- echo "AVAILABILITYZONE | |- nova-compute enabled :-) 2011-09-29 07:26:04"
- echo "AVAILABILITYZONE | |- nova-scheduler enabled :-) 2011-09-29 07:26:04"
- echo "AVAILABILITYZONE | |- nova-network enabled :-) 2011-09-29 07:26:07"
- echo "AVAILABILITYZONE | |- nova-volume enabled :-) 2011-09-29 07:26:06"
- echo "Good luck!"
- echo "Now, reboot your server."
- echo
安装详细过程:
- localadmin@server1:~$ sudo ./openstack_server1_package_install_1.sh
- Hello there. Perform apt-get update first.
- Ign http://security.ubuntu.com oneiric-security InRelease
- Ign
- Ign
- Ign
- Hit http://security.ubuntu.com oneiric-security Release.gpg
- Hit
- Hit http://security.ubuntu.com oneiric-security Release
- Hit
- Hit http://security.ubuntu.com oneiric-security/main Sources
- Hit
- Hit http://security.ubuntu.com oneiric-security/restricted Sources
- Hit http://security.ubuntu.com oneiric-security/universe Sources
- Hit http://security.ubuntu.com oneiric-security/multiverse Sources
- Hit
- Hit
- Hit http://security.ubuntu.com oneiric-security/main amd64 Packages
- Hit http://security.ubuntu.com oneiric-security/restricted amd64 Packages
- Hit http://security.ubuntu.com oneiric-security/universe amd64 Packages
- Hit http://security.ubuntu.com oneiric-security/multiverse amd64 Packages
- Hit http://security.ubuntu.com oneiric-security/main i386 Packages
- Hit http://security.ubuntu.com oneiric-security/restricted i386 Packages
- Hit http://security.ubuntu.com oneiric-security/universe i386 Packages
- Hit http://security.ubuntu.com oneiric-security/multiverse i386 Packages
- Hit http://security.ubuntu.com oneiric-security/main TranslationIndex
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit http://security.ubuntu.com oneiric-security/multiverse TranslationIndex
- Hit http://security.ubuntu.com oneiric-security/restricted TranslationIndex
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit http://security.ubuntu.com oneiric-security/universe TranslationIndex
- Hit http://security.ubuntu.com oneiric-security/main Translation-en
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit http://security.ubuntu.com oneiric-security/multiverse Translation-en
- Hit http://security.ubuntu.com oneiric-security/restricted Translation-en
- Hit http://security.ubuntu.com oneiric-security/universe Translation-en
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Hit
- Reading package lists... Done
-
-
-
- apt-get update Done! Press ENTER to perform apt-get upgrade...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- The following packages have been kept back:
- linux-headers-server linux-image-server linux-server
- The following packages will be upgraded:
- accountsservice apport bind9-host bzip2 command-not-found command-not-found-data dnsutils initramfs-tools initramfs-tools-bin initscripts isc-dhcp-client
- isc-dhcp-common libaccountsservice0 libbind9-60 libbz2-1.0 libdns69 libfreetype6 libgssapi-krb5-2 libisc62 libisccc60 libisccfg62 libk5crypto3 libkrb5-3
- libkrb5support0 libldap-2.4-2 liblwres60 libpam-modules libpam-modules-bin libpam-runtime libpam0g python-apport python-gobject python-gobject-cairo
- python-problem-report sysv-rc sysvinit-utils tzdata update-manager-core upstart
- 39 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
- Need to get 6,101 kB of archives.
- After this operation, 8,192 B disk space will be freed.
- Do you want to continue [Y/n]? y
- Get:1 [56.7 kB]
- Get:2 [38.5 kB]
- Get:3 [274 kB]
- Get:4 [84.3 kB]
- Get:5 [118 kB]
- Get:6 [351 kB]
- Get:7 [24.1 kB]
- Get:8 [184 kB]
- Get:9 [335 kB]
- Get:10 [37.8 kB]
- Get:11 [33.3 kB]
- Get:12 [45.0 kB]
- Get:13 [465 kB]
- Get:14 [287 kB]
- Get:15 [339 kB]
- Get:16 [51.7 kB]
- Get:17 [11.9 kB]
- Get:18 [63.9 kB]
- Get:19 [44.1 kB]
- Get:20 [27.5 kB]
- Get:21 [288 kB]
- Get:22 [38.5 kB]
- Get:23 [29.4 kB]
- Get:24 [147 kB]
- Get:25 [55.3 kB]
- Get:26 [160 kB]
- Get:27 [675 kB]
- Get:28 [17.5 kB]
- Get:29 [41.9 kB]
- Get:30 [37.9 kB]
- Get:31 [22.9 kB]
- Get:32 [971 kB]
- Get:33 [7,338 B]
- Get:34 [353 kB]
- Get:35 [7,976 B]
- Get:36 [15.9 kB]
- Get:37 [100 kB]
- Get:38 [81.3 kB]
- Get:39 [179 kB]
- Fetched 6,101 kB in 60s (101 kB/s)
- Extracting templates from packages: 100%
- Preconfiguring packages ...
- (Reading database ... 49307 files and directories currently installed.)
- Preparing to replace libpam0g 1.1.3-2ubuntu1 (using .../libpam0g_1.1.3-2ubuntu2.1_amd64.deb) ...
- Unpacking replacement libpam0g ...
- Setting up libpam0g (1.1.3-2ubuntu2.1) ...
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
- (Reading database ... 49307 files and directories currently installed.)
- Preparing to replace libpam-modules-bin 1.1.3-2ubuntu1 (using .../libpam-modules-bin_1.1.3-2ubuntu2.1_amd64.deb) ...
- Unpacking replacement libpam-modules-bin ...
- Processing triggers for man-db ...
- Setting up libpam-modules-bin (1.1.3-2ubuntu2.1) ...
- (Reading database ... 49307 files and directories currently installed.)
- Preparing to replace libpam-modules 1.1.3-2ubuntu1 (using .../libpam-modules_1.1.3-2ubuntu2.1_amd64.deb) ...
- Unpacking replacement libpam-modules ...
- Processing triggers for man-db ...
- Setting up libpam-modules (1.1.3-2ubuntu2.1) ...
- (Reading database ... 49307 files and directories currently installed.)
- Preparing to replace libk5crypto3 1.9.1+dfsg-1ubuntu1 (using .../libk5crypto3_1.9.1+dfsg-1ubuntu2.2_amd64.deb) ...
- Unpacking replacement libk5crypto3 ...
- Preparing to replace libgssapi-krb5-2 1.9.1+dfsg-1ubuntu1 (using .../libgssapi-krb5-2_1.9.1+dfsg-1ubuntu2.2_amd64.deb) ...
- Unpacking replacement libgssapi-krb5-2 ...
- Preparing to replace libkrb5-3 1.9.1+dfsg-1ubuntu1 (using .../libkrb5-3_1.9.1+dfsg-1ubuntu2.2_amd64.deb) ...
- Unpacking replacement libkrb5-3 ...
- Preparing to replace libkrb5support0 1.9.1+dfsg-1ubuntu1 (using .../libkrb5support0_1.9.1+dfsg-1ubuntu2.2_amd64.deb) ...
- Unpacking replacement libkrb5support0 ...
- 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) ...
- Unpacking replacement libldap-2.4-2 ...
- Preparing to replace libfreetype6 2.4.4-2ubuntu1 (using .../libfreetype6_2.4.4-2ubuntu1.1_amd64.deb) ...
- Unpacking replacement libfreetype6 ...
- Preparing to replace bzip2 1.0.5-6ubuntu1 (using .../bzip2_1.0.5-6ubuntu1.11.10.1_amd64.deb) ...
- Unpacking replacement bzip2 ...
- Preparing to replace libbz2-1.0 1.0.5-6ubuntu1 (using .../libbz2-1.0_1.0.5-6ubuntu1.11.10.1_amd64.deb) ...
- Unpacking replacement libbz2-1.0 ...
- Processing triggers for man-db ...
- Setting up libbz2-1.0 (1.0.5-6ubuntu1.11.10.1) ...
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
- (Reading database ... 49307 files and directories currently installed.)
- Preparing to replace libpam-runtime 1.1.3-2ubuntu1 (using .../libpam-runtime_1.1.3-2ubuntu2.1_amd64.deb) ...
- Unpacking replacement libpam-runtime ...
- Processing triggers for man-db ...
- Setting up libpam-runtime (1.1.3-2ubuntu2.1) ...
- (Reading database ... 49307 files and directories currently installed.)
- Preparing to replace tzdata 2011k-1 (using .../tzdata_2011n-0ubuntu0.11.10_amd64.deb) ...
- Unpacking replacement tzdata ...
- Setting up tzdata (2011n-0ubuntu0.11.10) ...
-
- Current default time zone: 'Asia/Harbin'
- Local time is now: Tue Jan 3 17:53:40 CST 2012.
- Universal Time is now: Tue Jan 3 09:53:40 UTC 2012.
- Run 'dpkg-reconfigure tzdata' if you wish to change it.
-
- (Reading database ... 49307 files and directories currently installed.)
- Preparing to replace isc-dhcp-client 4.1.1-P1-17ubuntu10 (using .../isc-dhcp-client_4.1.1-P1-17ubuntu10.1_amd64.deb) ...
- Unpacking replacement isc-dhcp-client ...
- Preparing to replace isc-dhcp-common 4.1.1-P1-17ubuntu10 (using .../isc-dhcp-common_4.1.1-P1-17ubuntu10.1_amd64.deb) ...
- Unpacking replacement isc-dhcp-common ...
- Preparing to replace initramfs-tools 0.99ubuntu7 (using .../initramfs-tools_0.99ubuntu8_all.deb) ...
- Unpacking replacement initramfs-tools ...
- Preparing to replace initramfs-tools-bin 0.99ubuntu7 (using .../initramfs-tools-bin_0.99ubuntu8_amd64.deb) ...
- Unpacking replacement initramfs-tools-bin ...
- Preparing to replace sysvinit-utils 2.88dsf-13.10ubuntu4 (using .../sysvinit-utils_2.88dsf-13.10ubuntu4.1_amd64.deb) ...
- Unpacking replacement sysvinit-utils ...
- Preparing to replace sysv-rc 2.88dsf-13.10ubuntu4 (using .../sysv-rc_2.88dsf-13.10ubuntu4.1_all.deb) ...
- Unpacking replacement sysv-rc ...
- Preparing to replace initscripts 2.88dsf-13.10ubuntu4 (using .../initscripts_2.88dsf-13.10ubuntu4.1_amd64.deb) ...
- Unpacking replacement initscripts ...
- Preparing to replace upstart 1.3-0ubuntu10 (using .../upstart_1.3-0ubuntu11_amd64.deb) ...
- Unpacking replacement upstart ...
- Preparing to replace accountsservice 0.6.14-1git1 (using .../accountsservice_0.6.14-1git1ubuntu1_amd64.deb) ...
- Unpacking replacement accountsservice ...
- Preparing to replace libaccountsservice0 0.6.14-1git1 (using .../libaccountsservice0_0.6.14-1git1ubuntu1_amd64.deb) ...
- Unpacking replacement libaccountsservice0 ...
- Preparing to replace dnsutils 1:9.7.3.dfsg-1ubuntu4 (using .../dnsutils_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...
- Unpacking replacement dnsutils ...
- Preparing to replace bind9-host 1:9.7.3.dfsg-1ubuntu4 (using .../bind9-host_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...
- Unpacking replacement bind9-host ...
- Preparing to replace libisc62 1:9.7.3.dfsg-1ubuntu4 (using .../libisc62_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...
- Unpacking replacement libisc62 ...
- Preparing to replace libdns69 1:9.7.3.dfsg-1ubuntu4 (using .../libdns69_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...
- Unpacking replacement libdns69 ...
- Preparing to replace libisccc60 1:9.7.3.dfsg-1ubuntu4 (using .../libisccc60_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...
- Unpacking replacement libisccc60 ...
- Preparing to replace libisccfg62 1:9.7.3.dfsg-1ubuntu4 (using .../libisccfg62_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...
- Unpacking replacement libisccfg62 ...
- Preparing to replace liblwres60 1:9.7.3.dfsg-1ubuntu4 (using .../liblwres60_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...
- Unpacking replacement liblwres60 ...
- Preparing to replace libbind9-60 1:9.7.3.dfsg-1ubuntu4 (using .../libbind9-60_1%3a9.7.3.dfsg-1ubuntu4.1_amd64.deb) ...
- Unpacking replacement libbind9-60 ...
- Preparing to replace command-not-found-data 0.2.44ubuntu1 (using .../command-not-found-data_0.2.44.1ubuntu1_amd64.deb) ...
- Unpacking replacement command-not-found-data ...
- Preparing to replace command-not-found 0.2.44ubuntu1 (using .../command-not-found_0.2.44.1ubuntu1_all.deb) ...
- Unpacking replacement command-not-found ...
- Preparing to replace python-gobject 3.0.0-0ubuntu2 (using .../python-gobject_3.0.0-0ubuntu4_amd64.deb) ...
- Unpacking replacement python-gobject ...
- Preparing to replace python-gobject-cairo 3.0.0-0ubuntu2 (using .../python-gobject-cairo_3.0.0-0ubuntu4_amd64.deb) ...
- Unpacking replacement python-gobject-cairo ...
- Preparing to replace python-problem-report 1.23-0ubuntu3 (using .../python-problem-report_1.23-0ubuntu4_all.deb) ...
- Unpacking replacement python-problem-report ...
- Preparing to replace python-apport 1.23-0ubuntu3 (using .../python-apport_1.23-0ubuntu4_all.deb) ...
- Unpacking replacement python-apport ...
- Preparing to replace apport 1.23-0ubuntu3 (using .../apport_1.23-0ubuntu4_all.deb) ...
- Unpacking replacement apport ...
- Preparing to replace update-manager-core 1:0.152.25 (using .../update-manager-core_1%3a0.152.25.5_amd64.deb) ...
- Unpacking replacement update-manager-core ...
- Processing triggers for man-db ...
- Processing triggers for ureadahead ...
- ureadahead will be reprofiled on next reboot
- Setting up libkrb5support0 (1.9.1+dfsg-1ubuntu2.2) ...
- Setting up libk5crypto3 (1.9.1+dfsg-1ubuntu2.2) ...
- Setting up libkrb5-3 (1.9.1+dfsg-1ubuntu2.2) ...
- Setting up libgssapi-krb5-2 (1.9.1+dfsg-1ubuntu2.2) ...
- Setting up libldap-2.4-2 (2.4.25-1.1ubuntu4.1) ...
- Setting up libfreetype6 (2.4.4-2ubuntu1.1) ...
- Setting up bzip2 (1.0.5-6ubuntu1.11.10.1) ...
- Setting up isc-dhcp-common (4.1.1-P1-17ubuntu10.1) ...
- Setting up isc-dhcp-client (4.1.1-P1-17ubuntu10.1) ...
- Setting up initramfs-tools-bin (0.99ubuntu8) ...
- Setting up initramfs-tools (0.99ubuntu8) ...
- update-initramfs: deferring update (trigger activated)
- Setting up sysvinit-utils (2.88dsf-13.10ubuntu4.1) ...
- Setting up sysv-rc (2.88dsf-13.10ubuntu4.1) ...
- Setting up libaccountsservice0 (0.6.14-1git1ubuntu1) ...
- Setting up accountsservice (0.6.14-1git1ubuntu1) ...
- Setting up libisc62 (1:9.7.3.dfsg-1ubuntu4.1) ...
- Setting up libdns69 (1:9.7.3.dfsg-1ubuntu4.1) ...
- Setting up libisccc60 (1:9.7.3.dfsg-1ubuntu4.1) ...
- Setting up libisccfg62 (1:9.7.3.dfsg-1ubuntu4.1) ...
- Setting up libbind9-60 (1:9.7.3.dfsg-1ubuntu4.1) ...
- Setting up liblwres60 (1:9.7.3.dfsg-1ubuntu4.1) ...
- Setting up bind9-host (1:9.7.3.dfsg-1ubuntu4.1) ...
- Setting up dnsutils (1:9.7.3.dfsg-1ubuntu4.1) ...
- Setting up command-not-found-data (0.2.44.1ubuntu1) ...
- Setting up command-not-found (0.2.44.1ubuntu1) ...
- Setting up python-gobject (3.0.0-0ubuntu4) ...
- Setting up python-gobject-cairo (3.0.0-0ubuntu4) ...
- Setting up python-problem-report (1.23-0ubuntu4) ...
- Setting up python-apport (1.23-0ubuntu4) ...
- Setting up update-manager-core (1:0.152.25.5) ...
- Setting up upstart (1.3-0ubuntu11) ...
- Installing new version of config file /etc/init/failsafe.conf ...
- Setting up initscripts (2.88dsf-13.10ubuntu4.1) ...
- Installing new version of config file /etc/init.d/sendsigs ...
- Installing new version of config file /etc/init.d/umountroot ...
- Setting up apport (1.23-0ubuntu4) ...
- start: Job failed to start
- invoke-rc.d: initscript apport, action "start" failed.
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
- Processing triggers for initramfs-tools ...
- update-initramfs: Generating /boot/initrd.img-3.0.0-12-server
-
-
-
- apt-get upgrade Done! Press ENTER to install bridge-utils...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- The following NEW packages will be installed:
- bridge-utils
- 0 upgraded, 1 newly installed, 0 to remove and 3 not upgraded.
- Need to get 31.3 kB of archives.
- After this operation, 209 kB of additional disk space will be used.
- Get:1 [31.3 kB]
- Fetched 31.3 kB in 5s (5,451 B/s)
- Selecting previously deselected package bridge-utils.
- (Reading database ... 49307 files and directories currently installed.)
- Unpacking bridge-utils (from .../bridge-utils_1.5-2ubuntu1_amd64.deb) ...
- Processing triggers for man-db ...
- Setting up bridge-utils (1.5-2ubuntu1) ...
-
-
-
- bridge-utils installation Done! Press ENTER to install ntp...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- The following extra packages will be installed:
- libopts25
- Suggested packages:
- ntp-doc
- The following NEW packages will be installed:
- libopts25 ntp
- 0 upgraded, 2 newly installed, 0 to remove and 3 not upgraded.
- Need to get 565 kB of archives.
- After this operation, 1,581 kB of additional disk space will be used.
- Get:1 [59.9 kB]
- Get:2 [505 kB]
- Fetched 565 kB in 7s (77.4 kB/s)
- Selecting previously deselected package libopts25.
- (Reading database ... 49332 files and directories currently installed.)
- Unpacking libopts25 (from .../libopts25_1%3a5.12-0.1ubuntu1_amd64.deb) ...
- Selecting previously deselected package ntp.
- Unpacking ntp (from .../ntp_1%3a4.2.6.p2+dfsg-1ubuntu12_amd64.deb) ...
- Processing triggers for man-db ...
- Processing triggers for ureadahead ...
- Setting up libopts25 (1:5.12-0.1ubuntu1) ...
- Setting up ntp (1:4.2.6.p2+dfsg-1ubuntu12) ...
- * Starting NTP server ntpd [ OK ]
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
-
-
-
- ntp installation Done! Press ENTER to install Mysql, root password for mysql is 'mygreatsecret'...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- The following extra packages will be installed:
- 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
- mysql-server-5.1 mysql-server-core-5.1
- Suggested packages:
- libipc-sharedcache-perl libterm-readkey-perl tinyca mailx
- The following NEW packages will be installed:
- 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
- mysql-server mysql-server-5.1 mysql-server-core-5.1
- 0 upgraded, 12 newly installed, 0 to remove and 3 not upgraded.
- Need to get 23.8 MB of archives.
- After this operation, 61.2 MB of additional disk space will be used.
- Get:1 [11.6 kB]
- Get:2 [43.1 kB]
- Get:3 [36.0 kB]
- Get:4 [853 kB]
- Get:5 [1,869 kB]
- Get:6 [110 kB]
- Get:7 [99.7 kB]
- Get:8 [9,354 kB]
- Get:9 [4,976 kB]
- Get:10 [6,387 kB]
- Get:11 [65.0 kB]
- Get:12 [6,302 B]
- Fetched 23.8 MB in 3min 39s (109 kB/s)
- Preconfiguring packages ...
- Selecting previously deselected package mysql-common.
- (Reading database ... 49375 files and directories currently installed.)
- Unpacking mysql-common (from .../mysql-common_5.1.58-1ubuntu1_all.deb) ...
- Selecting previously deselected package libnet-daemon-perl.
- Unpacking libnet-daemon-perl (from .../libnet-daemon-perl_0.48-1_all.deb) ...
- Selecting previously deselected package libplrpc-perl.
- Unpacking libplrpc-perl (from .../libplrpc-perl_0.2020-2_all.deb) ...
- Selecting previously deselected package libdbi-perl.
- Unpacking libdbi-perl (from .../libdbi-perl_1.616-1build1_amd64.deb) ...
- Selecting previously deselected package libmysqlclient16.
- Unpacking libmysqlclient16 (from .../libmysqlclient16_5.1.58-1ubuntu1_amd64.deb) ...
- Selecting previously deselected package libdbd-mysql-perl.
- Unpacking libdbd-mysql-perl (from .../libdbd-mysql-perl_4.019-1_amd64.deb) ...
- Selecting previously deselected package mysql-client-core-5.1.
- Unpacking mysql-client-core-5.1 (from .../mysql-client-core-5.1_5.1.58-1ubuntu1_amd64.deb) ...
- Selecting previously deselected package mysql-client-5.1.
- Unpacking mysql-client-5.1 (from .../mysql-client-5.1_5.1.58-1ubuntu1_amd64.deb) ...
- Selecting previously deselected package mysql-server-core-5.1.
- Unpacking mysql-server-core-5.1 (from .../mysql-server-core-5.1_5.1.58-1ubuntu1_amd64.deb) ...
- Processing triggers for man-db ...
- Setting up mysql-common (5.1.58-1ubuntu1) ...
- Selecting previously deselected package mysql-server-5.1.
- (Reading database ... 49752 files and directories currently installed.)
- Unpacking mysql-server-5.1 (from .../mysql-server-5.1_5.1.58-1ubuntu1_amd64.deb) ...
- Selecting previously deselected package libhtml-template-perl.
- Unpacking libhtml-template-perl (from .../libhtml-template-perl_2.10-1_all.deb) ...
- Selecting previously deselected package mysql-server.
- Unpacking mysql-server (from .../mysql-server_5.1.58-1ubuntu1_all.deb) ...
- Processing triggers for ureadahead ...
- Processing triggers for man-db ...
- Setting up libnet-daemon-perl (0.48-1) ...
- Setting up libplrpc-perl (0.2020-2) ...
- Setting up libdbi-perl (1.616-1build1) ...
- Setting up libmysqlclient16 (5.1.58-1ubuntu1) ...
- Setting up libdbd-mysql-perl (4.019-1) ...
- Setting up mysql-client-core-5.1 (5.1.58-1ubuntu1) ...
- Setting up mysql-client-5.1 (5.1.58-1ubuntu1) ...
- Setting up mysql-server-core-5.1 (5.1.58-1ubuntu1) ...
- Setting up mysql-server-5.1 (5.1.58-1ubuntu1) ...
- mysql start/running, process 11451
- Setting up libhtml-template-perl (2.10-1) ...
- Setting up mysql-server (5.1.58-1ubuntu1) ...
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
-
-
-
- mysql installation Done! Press ENTER to Configure mysql for glance & nova ...
-
- Create a database named glance.
-
- Create a user named glancedbadmin
-
- Grant all privileges for glancedbadmin on the Database glance
-
- Create a password for the user glanceadmin
-
- Create a database named nova.
-
- Create a user named novadbadmin which has access to nova related databases.
-
- Grant all privileges for novadbadmin on the Database nova.
-
- Set password for novadbadmin.
-
-
-
-
- mysql configuratioin Done! Press ENTER to install glance...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- The following extra packages will be installed:
- libyaml-0-2 python-amqplib python-anyjson python-argparse python-decorator python-eventlet python-formencode python-glance python-greenlet python-kombu
- python-migrate python-openid python-paste python-pastedeploy python-pastescript python-routes python-scgi python-setuptools python-sqlalchemy python-sqlalchemy-ext
- python-support python-tempita python-webob python-xattr python-yaml python2.6 python2.6-minimal
- Suggested packages:
- python-argparse-doc python-egenix-mxdatetime python-dns python-greenlet-doc python-greenlet-dev python-greenlet-dbg python-kombu-doc python-pymongo
- python-pastewebkit libapache2-mod-wsgi libapache2-mod-python libapache2-mod-scgi python-pgsql libjs-sphinxdoc libjs-mochikit python-cherrypy3 python-cherrypy
- python-flup python-cheetah python-sqlalchemy-doc python-psycopg2 python-mysqldb python-kinterbasdb python-pymssql python2.6-doc binutils binfmt-support
- The following NEW packages will be installed:
- glance libyaml-0-2 python-amqplib python-anyjson python-argparse python-decorator python-eventlet python-formencode python-glance python-greenlet python-kombu
- python-migrate python-openid python-paste python-pastedeploy python-pastescript python-routes python-scgi python-setuptools python-sqlalchemy python-sqlalchemy-ext
- python-support python-tempita python-webob python-xattr python-yaml python2.6 python2.6-minimal
- 0 upgraded, 28 newly installed, 0 to remove and 3 not upgraded.
- Need to get 6,809 kB of archives.
- After this operation, 37.2 MB of additional disk space will be used.
- Get:1 [56.2 kB]
- Get:2 [1,475 kB]
- Get:3 [2,439 kB]
- Get:4 [35.0 kB]
- Get:5 [7,316 B]
- Get:6 [43.9 kB]
- Get:7 [45.9 kB]
- Get:8 [25.0 kB]
- Get:9 [267 kB]
- Get:10 [111 kB]
- Get:11 [79.5 kB]
- Get:12 [414 kB]
- Get:13 [15.2 kB]
- Get:14 [159 kB]
- Get:15 [26.6 kB]
- Get:16 [118 kB]
- Get:17 [395 kB]
- Get:18 [28.2 kB]
- Get:19 [212 kB]
- Get:20 [147 kB]
- Get:21 [36.6 kB]
- Get:22 [20.2 kB]
- Get:23 [16.1 kB]
- Get:24 [14.6 kB]
- Get:25 [193 kB]
- Get:26 [273 kB]
- Get:27 [136 kB]
- Get:28 [20.5 kB]
- Fetched 6,809 kB in 57s (119 kB/s)
- Selecting previously deselected package libyaml-0-2.
- (Reading database ... 49846 files and directories currently installed.)
- Unpacking libyaml-0-2 (from .../libyaml-0-2_0.1.4-1_amd64.deb) ...
- Selecting previously deselected package python2.6-minimal.
- Unpacking python2.6-minimal (from .../python2.6-minimal_2.6.7-4ubuntu1_amd64.deb) ...
- Selecting previously deselected package python2.6.
- Unpacking python2.6 (from .../python2.6_2.6.7-4ubuntu1_amd64.deb) ...
- Selecting previously deselected package python-amqplib.
- Unpacking python-amqplib (from .../python-amqplib_1.0.0-0ubuntu1_all.deb) ...
- Selecting previously deselected package python-anyjson.
- Unpacking python-anyjson (from .../python-anyjson_0.3.1-1_all.deb) ...
- Selecting previously deselected package python-argparse.
- Unpacking python-argparse (from .../python-argparse_1.1-1ubuntu1_all.deb) ...
- Selecting previously deselected package python-decorator.
- Unpacking python-decorator (from .../python-decorator_3.2.0-1ubuntu1_all.deb) ...
- Selecting previously deselected package python-greenlet.
- Unpacking python-greenlet (from .../python-greenlet_0.3.1-1ubuntu4_amd64.deb) ...
- Selecting previously deselected package python-eventlet.
- Unpacking python-eventlet (from .../python-eventlet_0.9.15-0ubuntu4_all.deb) ...
- Selecting previously deselected package python-formencode.
- Unpacking python-formencode (from .../python-formencode_1.2.4-2ubuntu1_all.deb) ...
- Selecting previously deselected package python-kombu.
- Unpacking python-kombu (from .../python-kombu_1.0.4-2_all.deb) ...
- Selecting previously deselected package python-sqlalchemy.
- Unpacking python-sqlalchemy (from .../python-sqlalchemy_0.6.8-1_all.deb) ...
- Selecting previously deselected package python-tempita.
- Unpacking python-tempita (from .../python-tempita_0.5.1-1_all.deb) ...
- Selecting previously deselected package python-migrate.
- Unpacking python-migrate (from .../python-migrate_0.7.1-1_all.deb) ...
- Selecting previously deselected package python-support.
- Unpacking python-support (from .../python-support_1.0.13ubuntu1_all.deb) ...
- Selecting previously deselected package python-openid.
- Unpacking python-openid (from .../python-openid_2.2.5-3_all.deb) ...
- Selecting previously deselected package python-paste.
- Unpacking python-paste (from .../python-paste_1.7.5.1-4ubuntu1_all.deb) ...
- Selecting previously deselected package python-pastedeploy.
- Unpacking python-pastedeploy (from .../python-pastedeploy_1.5.0-2_all.deb) ...
- Selecting previously deselected package python-setuptools.
- Unpacking python-setuptools (from .../python-setuptools_0.6.16-1_all.deb) ...
- Selecting previously deselected package python-pastescript.
- Unpacking python-pastescript (from .../python-pastescript_1.7.3-7_all.deb) ...
- Selecting previously deselected package python-routes.
- Unpacking python-routes (from .../python-routes_1.12.3-1_all.deb) ...
- Selecting previously deselected package python-scgi.
- Unpacking python-scgi (from .../python-scgi_1.13-1build1_amd64.deb) ...
- Selecting previously deselected package python-sqlalchemy-ext.
- Unpacking python-sqlalchemy-ext (from .../python-sqlalchemy-ext_0.6.8-1_amd64.deb) ...
- Selecting previously deselected package python-xattr.
- Unpacking python-xattr (from .../python-xattr_0.6-1ubuntu2_amd64.deb) ...
- Selecting previously deselected package python-yaml.
- Unpacking python-yaml (from .../python-yaml_3.10-1_amd64.deb) ...
- Selecting previously deselected package python-webob.
- Unpacking python-webob (from .../python-webob_1.0.8-1_all.deb) ...
- Selecting previously deselected package python-glance.
- Unpacking python-glance (from .../python-glance_2011.3-0ubuntu4.1_all.deb) ...
- Selecting previously deselected package glance.
- Unpacking glance (from .../glance_2011.3-0ubuntu4.1_all.deb) ...
- Processing triggers for man-db ...
- Processing triggers for ureadahead ...
- Setting up libyaml-0-2 (0.1.4-1) ...
- Setting up python2.6-minimal (2.6.7-4ubuntu1) ...
- Linking and byte-compiling packages for runtime python2.6...
- Setting up python2.6 (2.6.7-4ubuntu1) ...
- Setting up python-amqplib (1.0.0-0ubuntu1) ...
- Setting up python-anyjson (0.3.1-1) ...
- Setting up python-argparse (1.1-1ubuntu1) ...
- Setting up python-decorator (3.2.0-1ubuntu1) ...
- Setting up python-greenlet (0.3.1-1ubuntu4) ...
- Setting up python-eventlet (0.9.15-0ubuntu4) ...
- Setting up python-formencode (1.2.4-2ubuntu1) ...
- Setting up python-kombu (1.0.4-2) ...
- Setting up python-sqlalchemy (0.6.8-1) ...
- Setting up python-tempita (0.5.1-1) ...
- Setting up python-migrate (0.7.1-1) ...
- Setting up python-support (1.0.13ubuntu1) ...
- Setting up python-openid (2.2.5-3) ...
- Setting up python-paste (1.7.5.1-4ubuntu1) ...
- Setting up python-pastedeploy (1.5.0-2) ...
- Setting up python-setuptools (0.6.16-1) ...
- Setting up python-pastescript (1.7.3-7) ...
- Setting up python-routes (1.12.3-1) ...
- Setting up python-scgi (1.13-1build1) ...
- Setting up python-sqlalchemy-ext (0.6.8-1) ...
- Setting up python-xattr (0.6-1ubuntu2) ...
- Setting up python-yaml (3.10-1) ...
- Setting up python-webob (1.0.8-1) ...
- Setting up python-glance (2011.3-0ubuntu4.1) ...
- Setting up glance (2011.3-0ubuntu4.1) ...
- Adding system user `glance' (UID 107) ...
- Adding new user `glance' (UID 107) with group `glance' ...
- Not creating home directory `/var/lib/glance'.
- glance-api start/running, process 12453
- glance-registry start/running, process 12477
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
- Processing triggers for python-support ...
-
-
-
- glance installation Done! Press ENTER to install messaging queue server...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- The following extra packages will be installed:
- 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
- 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
- erlang-syntax-tools erlang-tools erlang-webtool erlang-xmerl libltdl7 libsctp1 lksctp-tools odbcinst odbcinst1debian2 unixodbc
- Suggested packages:
- erlang erlang-manpages erlang-doc xsltproc fop erlang-ic-java erlang-observer libmyodbc odbc-postgresql tdsodbc unixodbc-bin
- The following NEW packages will be installed:
- 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
- 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
- erlang-syntax-tools erlang-tools erlang-webtool erlang-xmerl libltdl7 libsctp1 lksctp-tools odbcinst odbcinst1debian2 rabbitmq-server unixodbc
- 0 upgraded, 34 newly installed, 0 to remove and 3 not upgraded.
- Need to get 21.5 MB of archives.
- After this operation, 42.3 MB of additional disk space will be used.
- Get:1 [7,509 kB]
- Get:2 [303 kB]
- Get:3 [1,086 kB]
- Get:4 [682 kB]
- Get:5 [209 kB]
- Get:6 [40.8 kB]
- Get:7 [343 kB]
- Get:8 [381 kB]
- Get:9 [776 kB]
- Get:10 [2,420 kB]
- Get:11 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main erlang-dev amd64 1:14.b.2-dfsg-3ubuntu2 [492 kB]
- Get:12 [1,106 kB]
- Get:13 [315 kB]
- Get:14 [199 kB]
- Get:15 [115 kB]
- Get:16 [136 kB]
- Get:17 [865 kB]
- Get:18 [147 kB]
- Get:19 [38.2 kB]
- Get:20 [13.3 kB]
- Get:21 [52.1 kB]
- Get:22 [244 kB]
- Get:23 [52.6 kB]
- Get:24 [1,517 kB]
- Get:25 [100 kB]
- Get:26 [160 kB]
- Get:27 [143 kB]
- Get:28 [369 kB]
- Get:29 [42.3 kB]
- Get:30 [542 kB]
- Get:31 [19.5 kB]
- Get:32 [8,102 B]
- Get:33 [48.3 kB]
- Get:34 [1,036 kB]
- Fetched 21.5 MB in 4min 4s (88.1 kB/s)
- Extracting templates from packages: 100%
- Selecting previously deselected package erlang-base.
- (Reading database ... 53813 files and directories currently installed.)
- Unpacking erlang-base (from .../erlang-base_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-syntax-tools.
- Unpacking erlang-syntax-tools (from .../erlang-syntax-tools_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-asn1.
- Unpacking erlang-asn1 (from .../erlang-asn1_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-mnesia.
- Unpacking erlang-mnesia (from .../erlang-mnesia_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-runtime-tools.
- Unpacking erlang-runtime-tools (from .../erlang-runtime-tools_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-crypto.
- Unpacking erlang-crypto (from .../erlang-crypto_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-public-key.
- Unpacking erlang-public-key (from .../erlang-public-key_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-ssl.
- Unpacking erlang-ssl (from .../erlang-ssl_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-inets.
- Unpacking erlang-inets (from .../erlang-inets_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-corba.
- Unpacking erlang-corba (from .../erlang-corba_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-dev.
- Unpacking erlang-dev (from .../erlang-dev_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-xmerl.
- Unpacking erlang-xmerl (from .../erlang-xmerl_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-edoc.
- Unpacking erlang-edoc (from .../erlang-edoc_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-docbuilder.
- Unpacking erlang-docbuilder (from .../erlang-docbuilder_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-erl-docgen.
- Unpacking erlang-erl-docgen (from .../erlang-erl-docgen_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-eunit.
- Unpacking erlang-eunit (from .../erlang-eunit_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-ic.
- Unpacking erlang-ic (from .../erlang-ic_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-inviso.
- Unpacking erlang-inviso (from .../erlang-inviso_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package libltdl7.
- Unpacking libltdl7 (from .../libltdl7_2.4-2ubuntu1_amd64.deb) ...
- Selecting previously deselected package odbcinst.
- Unpacking odbcinst (from .../odbcinst_2.2.14p2-2ubuntu1_amd64.deb) ...
- Selecting previously deselected package odbcinst1debian2.
- Unpacking odbcinst1debian2 (from .../odbcinst1debian2_2.2.14p2-2ubuntu1_amd64.deb) ...
- Selecting previously deselected package unixodbc.
- Unpacking unixodbc (from .../unixodbc_2.2.14p2-2ubuntu1_amd64.deb) ...
- Selecting previously deselected package erlang-odbc.
- Unpacking erlang-odbc (from .../erlang-odbc_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-snmp.
- Unpacking erlang-snmp (from .../erlang-snmp_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-os-mon.
- Unpacking erlang-os-mon (from .../erlang-os-mon_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-parsetools.
- Unpacking erlang-parsetools (from .../erlang-parsetools_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-percept.
- Unpacking erlang-percept (from .../erlang-percept_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-ssh.
- Unpacking erlang-ssh (from .../erlang-ssh_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-webtool.
- Unpacking erlang-webtool (from .../erlang-webtool_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-tools.
- Unpacking erlang-tools (from .../erlang-tools_1%3a14.b.2-dfsg-3ubuntu2_amd64.deb) ...
- Selecting previously deselected package erlang-nox.
- Unpacking erlang-nox (from .../erlang-nox_1%3a14.b.2-dfsg-3ubuntu2_all.deb) ...
- Selecting previously deselected package libsctp1.
- Unpacking libsctp1 (from .../libsctp1_1.0.11+dfsg-2_amd64.deb) ...
- Selecting previously deselected package lksctp-tools.
- Unpacking lksctp-tools (from .../lksctp-tools_1.0.11+dfsg-2_amd64.deb) ...
- Selecting previously deselected package rabbitmq-server.
- Unpacking rabbitmq-server (from .../rabbitmq-server_2.5.0-1ubuntu2_all.deb) ...
- Processing triggers for man-db ...
- Processing triggers for ureadahead ...
- Setting up erlang-base (1:14.b.2-dfsg-3ubuntu2) ...
- Searching for services which depend on erlang and should be started...none found.
- Setting up erlang-syntax-tools (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-asn1 (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-mnesia (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-runtime-tools (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-crypto (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-public-key (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-ssl (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-inets (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-corba (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-dev (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-xmerl (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-edoc (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-docbuilder (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-erl-docgen (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-eunit (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-ic (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-inviso (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up libltdl7 (2.4-2ubuntu1) ...
- Setting up erlang-snmp (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-os-mon (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-parsetools (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-percept (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-ssh (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-webtool (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-tools (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up libsctp1 (1.0.11+dfsg-2) ...
- Setting up lksctp-tools (1.0.11+dfsg-2) ...
- Setting up odbcinst (2.2.14p2-2ubuntu1) ...
- Setting up odbcinst1debian2 (2.2.14p2-2ubuntu1) ...
- Setting up unixodbc (2.2.14p2-2ubuntu1) ...
- Setting up erlang-odbc (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up erlang-nox (1:14.b.2-dfsg-3ubuntu2) ...
- Setting up rabbitmq-server (2.5.0-1ubuntu2) ...
- Adding group `rabbitmq' (GID 116) ...
- Done.
- Adding system user `rabbitmq' (UID 108) ...
- Adding new user `rabbitmq' (UID 108) with group `rabbitmq' ...
- Not creating home directory `/var/lib/rabbitmq'.
- Starting rabbitmq-server: SUCCESS
- rabbitmq-server.
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
-
-
-
- rabbitmq-server installation Done! Press ENTER to install nova packages...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- The following extra packages will be installed:
- 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
- libaio1 libapparmor1 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap libasound2 libasyncns0 libavahi-client3 libavahi-common-data libavahi-common3
- libconfig-general-perl libcurl3 libflac8 libibverbs1 libjson0 libogg0 libpulse0 librdmacm1 libsdl1.2debian libsdl1.2debian-alsa libsgutils2-2 libsigsegv2
- libsndfile1 libsysfs2 libvirt-bin libvirt0 libvorbis0a libvorbisenc2 libxenstore3.0 libxml2-utils libxslt1.1 msr-tools nova-compute-kvm open-iscsi open-iscsi-utils
- python-boto python-carrot python-cheetah python-daemon python-dingus python-gflags python-ldap python-libvirt python-libxml2 python-lockfile python-lxml
- python-m2crypto python-mysqldb python-netaddr python-nose python-novaclient python-prettytable python-stompy qemu-common qemu-kvm seabios sg3-utils ssl-cert tgt
- vgabios vlan
- Suggested packages:
- python-psyco apache2-doc apache2-suexec apache2-suexec-custom libasound2-plugins libasound2-python pulseaudio policykit-1 radvd sheepdog python-markdown
- python-pygments python-memcache python-ldap-doc python-lxml-dbg python-egenix-mxdatetime python-mysqldb-dbg ipython python-coverage python-suds ipxe
- mol-drivers-macosx openbios-sparc ubuntu-vm-builder uml-utilities openssl-blacklist
- The following NEW packages will be installed:
- 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
- libaio1 libapparmor1 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap libasound2 libasyncns0 libavahi-client3 libavahi-common-data libavahi-common3
- libconfig-general-perl libcurl3 libflac8 libibverbs1 libjson0 libogg0 libpulse0 librdmacm1 libsdl1.2debian libsdl1.2debian-alsa libsgutils2-2 libsigsegv2
- libsndfile1 libsysfs2 libvirt-bin libvirt0 libvorbis0a libvorbisenc2 libxenstore3.0 libxml2-utils libxslt1.1 msr-tools nova-api nova-common nova-compute
- nova-compute-kvm nova-doc nova-network nova-objectstore nova-scheduler nova-volume open-iscsi open-iscsi-utils python-boto python-carrot python-cheetah
- python-daemon python-dingus python-gflags python-ldap python-libvirt python-libxml2 python-lockfile python-lxml python-m2crypto python-mysqldb python-netaddr
- python-nose python-nova python-novaclient python-prettytable python-stompy qemu-common qemu-kvm seabios sg3-utils ssl-cert tgt vgabios vlan
- 0 upgraded, 85 newly installed, 0 to remove and 3 not upgraded.
- Need to get 20.6 MB of archives.
- After this operation, 94.1 MB of additional disk space will be used.
- Do you want to continue [Y/n]? y
- Get:1 [14.6 kB]
- Get:2 [465 kB]
- Get:3 [417 kB]
- Get:4 [13.2 kB]
- Get:5 [22.4 kB]
- Get:6 [25.0 kB]
- Get:7 [43.2 kB]
- Get:8 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main libcurl3 amd64 7.21.6-3ubuntu3 [230 kB]
- Get:9 ~dfsg-1ubuntu1 [17.2 kB]
- Get:10 [144 kB]
- Get:11 [16.3 kB]
- Get:12 [103 kB]
- Get:13 [136 kB]
- Get:14 [163 kB]
- Get:15 [291 kB]
- Get:16 [67.3 kB]
- Get:17 [164 kB]
- Get:18 [23.0 kB]
- Get:19 [6,370 B]
- Get:20 [191 kB]
- Get:21 [1,922 B]
- Get:22 [3,632 kB]
- Get:23 [44.6 kB]
- Get:24 [88.8 kB]
- Get:25 [74.7 kB]
- Get:26 [10.4 kB]
- Get:27 [8,050 B]
- Get:28 [2,735 kB]
- Get:29 [86.0 kB]
- Get:30 [229 kB]
- Get:31 [2,292 B]
- Get:32 [1,478 B]
- Get:33 [9,052 B]
- Get:34 [6,374 B]
- Get:35 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main curl amd64 7.21.6-3ubuntu3 [134 kB]
- Get:36 [208 kB]
- Get:37 [9,956 B]
- Get:38 [90.1 kB]
- Get:39 [23.9 kB]
- Get:40 [22.0 kB]
- Get:41 ~beta1+bzr1774-1ubuntu2 [36.8 kB]
- Get:42 [55.1 kB]
- Get:43 [63.6 kB]
- Get:44 [18.1 kB]
- Get:45 [726 kB]
- Get:46 [1,013 kB]
- Get:47 [39.8 kB]
- Get:48 [166 kB]
- Get:49 [105 kB]
- Get:50 [590 kB]
- Get:51 [299 kB]
- Get:52 [92.5 kB]
- Get:53 [171 kB]
- Get:54 [8,992 B]
- Get:55 [19.8 kB]
- Get:56 [9,246 B]
- Get:57 [39.8 kB]
- Get:58 [87.7 kB]
- Get:59 [75.5 kB]
- Get:60 [285 kB]
- Get:61 [1,307 kB]
- Get:62 [327 kB]
- Get:63 [82.5 kB]
- Get:64 [1,182 kB]
- Get:65 [356 kB]
- Get:66 [8,746 B]
- Get:67 ~bzr112-0ubuntu1 [44.0 kB]
- Get:68 [11.1 kB]
- Get:69 [575 kB]
- Get:70 [12.2 kB]
- Get:71 [34.1 kB]
- Get:72 [18.4 kB]
- Get:73 [239 kB]
- Get:74 [25.4 kB]
- Get:75 [745 kB]
- Get:76 [26.5 kB]
- Get:77 [7,314 B]
- Get:78 [40.7 kB]
- Get:79 [4,946 B]
- Get:80 [4,676 B]
- Get:81 [1,694 kB]
- Get:82 [8,120 B]
- Get:83 [6,838 B]
- Get:84 [6,604 B]
- Get:85 [6,852 B]
- Fetched 20.6 MB in 4min 13s (81.6 kB/s)
- Extracting templates from packages: 100%
- Preconfiguring packages ...
- Selecting previously deselected package libsigsegv2.
- (Reading database ... 56079 files and directories currently installed.)
- Unpacking libsigsegv2 (from .../libsigsegv2_2.9-4ubuntu2_amd64.deb) ...
- Setting up libsigsegv2 (2.9-4ubuntu2) ...
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
- Selecting previously deselected package gawk.
- (Reading database ... 56087 files and directories currently installed.)
- Unpacking gawk (from .../gawk_1%3a3.1.8+dfsg-0.1build1_amd64.deb) ...
- Selecting previously deselected package libasound2.
- Unpacking libasound2 (from .../libasound2_1.0.24.1-0ubuntu10_amd64.deb) ...
- Selecting previously deselected package libasyncns0.
- Unpacking libasyncns0 (from .../libasyncns0_0.8-4_amd64.deb) ...
- Selecting previously deselected package libavahi-common-data.
- Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.30-4ubuntu1_amd64.deb) ...
- Selecting previously deselected package libavahi-common3.
- Unpacking libavahi-common3 (from .../libavahi-common3_0.6.30-4ubuntu1_amd64.deb) ...
- Selecting previously deselected package libavahi-client3.
- Unpacking libavahi-client3 (from .../libavahi-client3_0.6.30-4ubuntu1_amd64.deb) ...
- Selecting previously deselected package libcurl3.
- Unpacking libcurl3 (from .../libcurl3_7.21.6-3ubuntu3_amd64.deb) ...
- Selecting previously deselected package libogg0.
- Unpacking libogg0 (from .../libogg0_1.2.2~dfsg-1ubuntu1_amd64.deb) ...
- Selecting previously deselected package libflac8.
- Unpacking libflac8 (from .../libflac8_1.2.1-4ubuntu1_amd64.deb) ...
- Selecting previously deselected package libjson0.
- Unpacking libjson0 (from .../libjson0_0.9-1ubuntu1_amd64.deb) ...
- Selecting previously deselected package libvorbis0a.
- Unpacking libvorbis0a (from .../libvorbis0a_1.3.2-1ubuntu2_amd64.deb) ...
- Selecting previously deselected package libvorbisenc2.
- Unpacking libvorbisenc2 (from .../libvorbisenc2_1.3.2-1ubuntu2_amd64.deb) ...
- Selecting previously deselected package libsndfile1.
- Unpacking libsndfile1 (from .../libsndfile1_1.0.24-1ubuntu2_amd64.deb) ...
- Selecting previously deselected package libpulse0.
- Unpacking libpulse0 (from .../libpulse0_1%3a1.0-0ubuntu3.1_amd64.deb) ...
- Selecting previously deselected package seabios.
- Unpacking seabios (from .../seabios_0.6.2-0ubuntu1_all.deb) ...
- Selecting previously deselected package vgabios.
- Unpacking vgabios (from .../vgabios_0.6c-2ubuntu3_all.deb) ...
- Selecting previously deselected package qemu-common.
- Unpacking qemu-common (from .../qemu-common_0.14.1+noroms-0ubuntu6_all.deb) ...
- Selecting previously deselected package libaio1.
- Unpacking libaio1 (from .../libaio1_0.3.109-1ubuntu2_amd64.deb) ...
- Selecting previously deselected package libsdl1.2debian-alsa.
- Unpacking libsdl1.2debian-alsa (from .../libsdl1.2debian-alsa_1.2.14-6.1ubuntu4_amd64.deb) ...
- Selecting previously deselected package libsdl1.2debian.
- Unpacking libsdl1.2debian (from .../libsdl1.2debian_1.2.14-6.1ubuntu4_amd64.deb) ...
- Selecting previously deselected package qemu-kvm.
- Unpacking qemu-kvm (from .../qemu-kvm_0.14.1+noroms-0ubuntu6_amd64.deb) ...
- Selecting previously deselected package ajaxterm.
- Unpacking ajaxterm (from .../ajaxterm_0.10-11ubuntu2_all.deb) ...
- Selecting previously deselected package libapr1.
- Unpacking libapr1 (from .../libapr1_1.4.5-1_amd64.deb) ...
- Selecting previously deselected package libaprutil1.
- Unpacking libaprutil1 (from .../libaprutil1_1.3.12+dfsg-2_amd64.deb) ...
- Selecting previously deselected package libaprutil1-dbd-sqlite3.
- Unpacking libaprutil1-dbd-sqlite3 (from .../libaprutil1-dbd-sqlite3_1.3.12+dfsg-2_amd64.deb) ...
- Selecting previously deselected package libaprutil1-ldap.
- Unpacking libaprutil1-ldap (from .../libaprutil1-ldap_1.3.12+dfsg-2_amd64.deb) ...
- Selecting previously deselected package apache2.2-bin.
- Unpacking apache2.2-bin (from .../apache2.2-bin_2.2.20-1ubuntu1.1_amd64.deb) ...
- Selecting previously deselected package apache2-utils.
- Unpacking apache2-utils (from .../apache2-utils_2.2.20-1ubuntu1.1_amd64.deb) ...
- Selecting previously deselected package apache2.2-common.
- Unpacking apache2.2-common (from .../apache2.2-common_2.2.20-1ubuntu1.1_amd64.deb) ...
- Selecting previously deselected package apache2-mpm-worker.
- Unpacking apache2-mpm-worker (from .../apache2-mpm-worker_2.2.20-1ubuntu1.1_amd64.deb) ...
- Selecting previously deselected package apache2.
- Unpacking apache2 (from .../apache2_2.2.20-1ubuntu1.1_amd64.deb) ...
- Selecting previously deselected package msr-tools.
- Unpacking msr-tools (from .../msr-tools_1.2-3_amd64.deb) ...
- Selecting previously deselected package cpu-checker.
- Unpacking cpu-checker (from .../cpu-checker_0.6-0ubuntu1_all.deb) ...
- Selecting previously deselected package curl.
- Unpacking curl (from .../curl_7.21.6-3ubuntu3_amd64.deb) ...
- Selecting previously deselected package dnsmasq-base.
- Unpacking dnsmasq-base (from .../dnsmasq-base_2.57-1ubuntu1_amd64.deb) ...
- Selecting previously deselected package dnsmasq-utils.
- Unpacking dnsmasq-utils (from .../dnsmasq-utils_2.57-1ubuntu1_amd64.deb) ...
- Selecting previously deselected package ebtables.
- Unpacking ebtables (from .../ebtables_2.0.9.2-2_amd64.deb) ...
- Selecting previously deselected package libsysfs2.
- Unpacking libsysfs2 (from .../libsysfs2_2.1.0+repack-1_amd64.deb) ...
- Selecting previously deselected package iputils-arping.
- Unpacking iputils-arping (from .../iputils-arping_3%3a20101006-1_amd64.deb) ...
- Selecting previously deselected package libapparmor1.
- Unpacking libapparmor1 (from .../libapparmor1_2.7.0~beta1+bzr1774-1ubuntu2_amd64.deb) ...
- Selecting previously deselected package libconfig-general-perl.
- Unpacking libconfig-general-perl (from .../libconfig-general-perl_2.50-1_all.deb) ...
- Selecting previously deselected package libsgutils2-2.
- Unpacking libsgutils2-2 (from .../libsgutils2-2_1.31-1_amd64.deb) ...
- Selecting previously deselected package libxenstore3.0.
- Unpacking libxenstore3.0 (from .../libxenstore3.0_4.1.1-2ubuntu4.1_amd64.deb) ...
- Selecting previously deselected package libvirt0.
- Unpacking libvirt0 (from .../libvirt0_0.9.2-4ubuntu15.1_amd64.deb) ...
- Selecting previously deselected package libvirt-bin.
- Unpacking libvirt-bin (from .../libvirt-bin_0.9.2-4ubuntu15.1_amd64.deb) ...
- Selecting previously deselected package libxml2-utils.
- Unpacking libxml2-utils (from .../libxml2-utils_2.7.8.dfsg-4_amd64.deb) ...
- Selecting previously deselected package libxslt1.1.
- Unpacking libxslt1.1 (from .../libxslt1.1_1.1.26-7_amd64.deb) ...
- Selecting previously deselected package open-iscsi-utils.
- Unpacking open-iscsi-utils (from .../open-iscsi-utils_2.0.871-0ubuntu9_amd64.deb) ...
- Selecting previously deselected package open-iscsi.
- Unpacking open-iscsi (from .../open-iscsi_2.0.871-0ubuntu9_amd64.deb) ...
- Selecting previously deselected package python-boto.
- Unpacking python-boto (from .../python-boto_2.0-0ubuntu1_all.deb) ...
- Selecting previously deselected package python-carrot.
- Unpacking python-carrot (from .../python-carrot_0.10.7-0ubuntu1_all.deb) ...
- Selecting previously deselected package python-cheetah.
- Unpacking python-cheetah (from .../python-cheetah_2.4.4-2ubuntu1_amd64.deb) ...
- Selecting previously deselected package python-lockfile.
- Unpacking python-lockfile (from .../python-lockfile_1%3a0.8-2_all.deb) ...
- Selecting previously deselected package python-daemon.
- Unpacking python-daemon (from .../python-daemon_1.5.5-1_all.deb) ...
- Selecting previously deselected package python-dingus.
- Unpacking python-dingus (from .../python-dingus_0.1-2ubuntu1_all.deb) ...
- Selecting previously deselected package python-gflags.
- Unpacking python-gflags (from .../python-gflags_1.5.1-1_all.deb) ...
- Selecting previously deselected package python-ldap.
- Unpacking python-ldap (from .../python-ldap_2.3.13-1_amd64.deb) ...
- Selecting previously deselected package python-libvirt.
- Unpacking python-libvirt (from .../python-libvirt_0.9.2-4ubuntu15.1_amd64.deb) ...
- Selecting previously deselected package python-libxml2.
- Unpacking python-libxml2 (from .../python-libxml2_2.7.8.dfsg-4_amd64.deb) ...
- Selecting previously deselected package python-lxml.
- Unpacking python-lxml (from .../python-lxml_2.3-0.1build1_amd64.deb) ...
- Selecting previously deselected package python-m2crypto.
- Unpacking python-m2crypto (from .../python-m2crypto_0.20.1+dfsg1-1.1ubuntu1_amd64.deb) ...
- Selecting previously deselected package python-mysqldb.
- Unpacking python-mysqldb (from .../python-mysqldb_1.2.3-0ubuntu1_amd64.deb) ...
- Selecting previously deselected package python-netaddr.
- Unpacking python-netaddr (from .../python-netaddr_0.7.5-4_all.deb) ...
- Selecting previously deselected package python-nose.
- Unpacking python-nose (from .../python-nose_1.0.0-1ubuntu1_all.deb) ...
- Selecting previously deselected package python-prettytable.
- Unpacking python-prettytable (from .../python-prettytable_0.5-1ubuntu1_all.deb) ...
- Selecting previously deselected package python-novaclient.
- Unpacking python-novaclient (from .../python-novaclient_2.6.4~bzr112-0ubuntu1_all.deb) ...
- Selecting previously deselected package python-stompy.
- Unpacking python-stompy (from .../python-stompy_0.2.5-1ubuntu1_all.deb) ...
- Selecting previously deselected package sg3-utils.
- Unpacking sg3-utils (from .../sg3-utils_1.31-1_amd64.deb) ...
- Selecting previously deselected package ssl-cert.
- Unpacking ssl-cert (from .../ssl-cert_1.0.28_all.deb) ...
- Selecting previously deselected package libibverbs1.
- Unpacking libibverbs1 (from .../libibverbs1_1.1.3-2ubuntu1_amd64.deb) ...
- Selecting previously deselected package librdmacm1.
- Unpacking librdmacm1 (from .../librdmacm1_1.0.14.1-2_amd64.deb) ...
- Selecting previously deselected package tgt.
- Unpacking tgt (from .../tgt_1%3a1.0.17-1ubuntu1_amd64.deb) ...
- Selecting previously deselected package kpartx.
- Unpacking kpartx (from .../kpartx_0.4.9-2ubuntu1_amd64.deb) ...
- Selecting previously deselected package python-nova.
- Unpacking python-nova (from .../python-nova_2011.3-0ubuntu6.3_all.deb) ...
- Selecting previously deselected package nova-common.
- Unpacking nova-common (from .../nova-common_2011.3-0ubuntu6.3_all.deb) ...
- Selecting previously deselected package nova-api.
- Unpacking nova-api (from .../nova-api_2011.3-0ubuntu6.3_all.deb) ...
- Selecting previously deselected package vlan.
- Unpacking vlan (from .../vlan_1.9-3ubuntu3_amd64.deb) ...
- Selecting previously deselected package nova-compute-kvm.
- Unpacking nova-compute-kvm (from .../nova-compute-kvm_2011.3-0ubuntu6.3_all.deb) ...
- Selecting previously deselected package nova-compute.
- Unpacking nova-compute (from .../nova-compute_2011.3-0ubuntu6.3_all.deb) ...
- Selecting previously deselected package nova-doc.
- Unpacking nova-doc (from .../nova-doc_2011.3-0ubuntu6.3_all.deb) ...
- Selecting previously deselected package nova-network.
- Unpacking nova-network (from .../nova-network_2011.3-0ubuntu6.3_all.deb) ...
- Selecting previously deselected package nova-objectstore.
- Unpacking nova-objectstore (from .../nova-objectstore_2011.3-0ubuntu6.3_all.deb) ...
- Selecting previously deselected package nova-scheduler.
- Unpacking nova-scheduler (from .../nova-scheduler_2011.3-0ubuntu6.3_all.deb) ...
- Selecting previously deselected package nova-volume.
- Unpacking nova-volume (from .../nova-volume_2011.3-0ubuntu6.3_all.deb) ...
- Processing triggers for man-db ...
- Processing triggers for ureadahead ...
- Processing triggers for ufw ...
- Setting up gawk (1:3.1.8+dfsg-0.1build1) ...
- Setting up libasound2 (1.0.24.1-0ubuntu10) ...
- Setting up libasyncns0 (0.8-4) ...
- Setting up libavahi-common-data (0.6.30-4ubuntu1) ...
- Setting up libavahi-common3 (0.6.30-4ubuntu1) ...
- Setting up libavahi-client3 (0.6.30-4ubuntu1) ...
- Setting up libcurl3 (7.21.6-3ubuntu3) ...
- Setting up libogg0 (1.2.2~dfsg-1ubuntu1) ...
- Setting up libflac8 (1.2.1-4ubuntu1) ...
- Setting up libjson0 (0.9-1ubuntu1) ...
- Setting up libvorbis0a (1.3.2-1ubuntu2) ...
- Setting up libvorbisenc2 (1.3.2-1ubuntu2) ...
- Setting up libsndfile1 (1.0.24-1ubuntu2) ...
- Setting up libpulse0 (1:1.0-0ubuntu3.1) ...
- Setting up seabios (0.6.2-0ubuntu1) ...
- Setting up vgabios (0.6c-2ubuntu3) ...
- Setting up qemu-common (0.14.1+noroms-0ubuntu6) ...
- Setting up libaio1 (0.3.109-1ubuntu2) ...
- Setting up libsdl1.2debian-alsa (1.2.14-6.1ubuntu4) ...
- Setting up libsdl1.2debian (1.2.14-6.1ubuntu4) ...
- Setting up qemu-kvm (0.14.1+noroms-0ubuntu6) ...
- qemu-kvm start/running
- Setting up ajaxterm (0.10-11ubuntu2) ...
- * Starting web based terminal: [ OK ]
- Setting up libapr1 (1.4.5-1) ...
- Setting up libaprutil1 (1.3.12+dfsg-2) ...
- Setting up libaprutil1-dbd-sqlite3 (1.3.12+dfsg-2) ...
- Setting up libaprutil1-ldap (1.3.12+dfsg-2) ...
- Setting up apache2.2-bin (2.2.20-1ubuntu1.1) ...
- Setting up apache2-utils (2.2.20-1ubuntu1.1) ...
- Setting up apache2.2-common (2.2.20-1ubuntu1.1) ...
- Enabling site default.
- Enabling module alias.
- Enabling module autoindex.
- Enabling module dir.
- Enabling module env.
- Enabling module mime.
- Enabling module negotiation.
- Enabling module setenvif.
- Enabling module status.
- Enabling module auth_basic.
- Enabling module deflate.
- Enabling module authz_default.
- Enabling module authz_user.
- Enabling module authz_groupfile.
- Enabling module authn_file.
- Enabling module authz_host.
- Enabling module reqtimeout.
- Setting up apache2-mpm-worker (2.2.20-1ubuntu1.1) ...
- * Starting web server apache2 [ OK ]
- Setting up apache2 (2.2.20-1ubuntu1.1) ...
- Setting up msr-tools (1.2-3) ...
- Setting up cpu-checker (0.6-0ubuntu1) ...
- Setting up curl (7.21.6-3ubuntu3) ...
- Setting up dnsmasq-base (2.57-1ubuntu1) ...
- Setting up dnsmasq-utils (2.57-1ubuntu1) ...
- Setting up ebtables (2.0.9.2-2) ...
- Setting up libsysfs2 (2.1.0+repack-1) ...
- Setting up iputils-arping (3:20101006-1) ...
- Setting up libapparmor1 (2.7.0~beta1+bzr1774-1ubuntu2) ...
- Setting up libconfig-general-perl (2.50-1) ...
- Setting up libsgutils2-2 (1.31-1) ...
- Setting up libxenstore3.0 (4.1.1-2ubuntu4.1) ...
- Setting up libvirt0 (0.9.2-4ubuntu15.1) ...
- Setting up libvirt-bin (0.9.2-4ubuntu15.1) ...
- Adding group `libvirtd' (GID 119) ...
- Done.
- libvirt-bin start/running, process 15680
- Setting up libxml2-utils (2.7.8.dfsg-4) ...
- Setting up libxslt1.1 (1.1.26-7) ...
- Setting up open-iscsi-utils (2.0.871-0ubuntu9) ...
- Setting up open-iscsi (2.0.871-0ubuntu9) ...
- update-rc.d: warning: open-iscsi stop runlevel arguments (0 1 6) do not match LSB Default-Stop values (0 6)
- * Starting iSCSI initiator service iscsid [ OK ]
- * Setting up iSCSI targets [ OK ]
- Setting up python-boto (2.0-0ubuntu1) ...
- Setting up python-carrot (0.10.7-0ubuntu1) ...
- Setting up python-cheetah (2.4.4-2ubuntu1) ...
- Setting up python-lockfile (1:0.8-2) ...
- Setting up python-daemon (1.5.5-1) ...
- Setting up python-dingus (0.1-2ubuntu1) ...
- Setting up python-gflags (1.5.1-1) ...
- Setting up python-ldap (2.3.13-1) ...
- Setting up python-libvirt (0.9.2-4ubuntu15.1) ...
- Setting up python-libxml2 (2.7.8.dfsg-4) ...
- Setting up python-lxml (2.3-0.1build1) ...
- Setting up python-m2crypto (0.20.1+dfsg1-1.1ubuntu1) ...
- Setting up python-mysqldb (1.2.3-0ubuntu1) ...
- Setting up python-netaddr (0.7.5-4) ...
- Setting up python-nose (1.0.0-1ubuntu1) ...
- Setting up python-prettytable (0.5-1ubuntu1) ...
- Setting up python-novaclient (2.6.4~bzr112-0ubuntu1) ...
- Setting up python-stompy (0.2.5-1ubuntu1) ...
- Setting up sg3-utils (1.31-1) ...
- Setting up ssl-cert (1.0.28) ...
- Setting up libibverbs1 (1.1.3-2ubuntu1) ...
- Setting up librdmacm1 (1.0.14.1-2) ...
- Setting up tgt (1:1.0.17-1ubuntu1) ...
- Setting up kpartx (0.4.9-2ubuntu1) ...
- Setting up python-nova (2011.3-0ubuntu6.3) ...
- Setting up nova-common (2011.3-0ubuntu6.3) ...
- Adding system user `nova' (UID 111) ...
- Adding new user `nova' (UID 111) with group `nova' ...
- Not creating home directory `/var/lib/nova'.
- /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.
- MigrateDeprecationWarning
- Setting up nova-api (2011.3-0ubuntu6.3) ...
- nova-api start/running, process 16089
- Setting up vlan (1.9-3ubuntu3) ...
- Setting up nova-doc (2011.3-0ubuntu6.3) ...
- Setting up nova-network (2011.3-0ubuntu6.3) ...
- nova-network start/running, process 16131
- Setting up nova-objectstore (2011.3-0ubuntu6.3) ...
- nova-objectstore start/running, process 16165
- Setting up nova-scheduler (2011.3-0ubuntu6.3) ...
- nova-scheduler start/running, process 16209
- Setting up nova-volume (2011.3-0ubuntu6.3) ...
- nova-volume start/running, process 16249
- Setting up nova-compute-kvm (2011.3-0ubuntu6.3) ...
- Setting up nova-compute (2011.3-0ubuntu6.3) ...
- Adding user `nova' to group `libvirtd' ...
- Adding user nova to group libvirtd
- Done.
- nova-compute start/running, process 16325
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
- Processing triggers for python-support ...
-
-
-
- nova packages installation Done! Press ENTER to install euca2ools...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- The following extra packages will be installed:
- cloud-utils python-paramiko
- The following NEW packages will be installed:
- cloud-utils euca2ools python-paramiko
- 0 upgraded, 3 newly installed, 0 to remove and 3 not upgraded.
- Need to get 1,012 kB of archives.
- After this operation, 10.9 MB of additional disk space will be used.
- Get:1 ~bzr464-0ubuntu2 [182 kB]
- Get:2 [797 kB]
- Get:3 [33.0 kB]
- Fetched 1,012 kB in 15s (63.5 kB/s)
- Selecting previously deselected package euca2ools.
- (Reading database ... 62407 files and directories currently installed.)
- Unpacking euca2ools (from .../euca2ools_2.0.0~bzr464-0ubuntu2_all.deb) ...
- Selecting previously deselected package python-paramiko.
- Unpacking python-paramiko (from .../python-paramiko_1.7.7.1-1ubuntu1_all.deb) ...
- Selecting previously deselected package cloud-utils.
- Unpacking cloud-utils (from .../cloud-utils_0.23-0ubuntu7_all.deb) ...
- Processing triggers for man-db ...
- Setting up euca2ools (2.0.0~bzr464-0ubuntu2) ...
- Setting up python-paramiko (1.7.7.1-1ubuntu1) ...
- Setting up cloud-utils (0.23-0ubuntu7) ...
-
-
-
- euca2ools installation Done! Press ENTER to install unzip...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- Suggested packages:
- zip
- The following NEW packages will be installed:
- unzip
- 0 upgraded, 1 newly installed, 0 to remove and 3 not upgraded.
- Need to get 192 kB of archives.
- After this operation, 434 kB of additional disk space will be used.
- Get:1 [192 kB]
- Fetched 192 kB in 9s (20.3 kB/s)
- Selecting previously deselected package unzip.
- (Reading database ... 63388 files and directories currently installed.)
- Unpacking unzip (from .../unzip_6.0-4ubuntu1_amd64.deb) ...
- Processing triggers for man-db ...
- Setting up unzip (6.0-4ubuntu1) ...
-
-
-
- unzip installation Done! Press ENTER to install iscsitarget...
-
- Reading package lists... Done
- Building dependency tree
- Reading state information... Done
- The following extra packages will be installed:
- 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
- Suggested packages:
- 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
- libgomp1-dbg libquadmath0-dbg libmudflap0-dbg binutils-gold iscsitarget-source glibc-doc make-doc
- Recommended packages:
- iscsitarget-module linux-headers-2.6
- The following NEW packages will be installed:
- 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
- manpages-dev
- 0 upgraded, 18 newly installed, 0 to remove and 3 not upgraded.
- Need to get 20.9 MB of archives.
- After this operation, 60.8 MB of additional disk space will be used.
- Get:1 [25.4 kB]
- Get:2 [126 kB]
- Get:3 [2,637 kB]
- Get:4 [188 kB]
- Get:5 [39.5 kB]
- Get:6 [4,816 kB]
- Get:7 [28.0 kB]
- Get:8 [7,514 kB]
- Get:9 [5,110 B]
- Get:10 [118 kB]
- Get:11 [72.3 kB]
- Get:12 [107 kB]
- Get:13 [71.2 kB]
- Get:14 [66.0 kB]
- Get:15 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main libc-dev-bin amd64 2.13-20ubuntu5 [82.1 kB]
- Get:16 http://hk.archive.ubuntu.com/ubuntu/ oneiric-updates/main linux-libc-dev amd64 3.0.0-14.23 [842 kB]
- Get:17 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main libc6-dev amd64 2.13-20ubuntu5 [2,575 kB]
- Get:18 http://hk.archive.ubuntu.com/ubuntu/ oneiric/main manpages-dev all 3.27-1ubuntu2 [1,627 kB]
- Fetched 20.9 MB in 3min 3s (114 kB/s)
- Selecting previously deselected package libgomp1.
- (Reading database ... 63406 files and directories currently installed.)
- Unpacking libgomp1 (from .../libgomp1_4.6.1-9ubuntu3_amd64.deb) ...
- Selecting previously deselected package libquadmath0.
- Unpacking libquadmath0 (from .../libquadmath0_4.6.1-9ubuntu3_amd64.deb) ...
- Selecting previously deselected package binutils.
- Unpacking binutils (from .../binutils_2.21.53.20110810-0ubuntu5_amd64.deb) ...
- Selecting previously deselected package libmpfr4.
- Unpacking libmpfr4 (from .../libmpfr4_3.0.1-5_amd64.deb) ...
- Selecting previously deselected package libmpc2.
- Unpacking libmpc2 (from .../libmpc2_0.9-3_amd64.deb) ...
- Selecting previously deselected package cpp-4.6.
- Unpacking cpp-4.6 (from .../cpp-4.6_4.6.1-9ubuntu3_amd64.deb) ...
- Selecting previously deselected package cpp.
- Unpacking cpp (from .../cpp_4%3a4.6.1-2ubuntu5_amd64.deb) ...
- Selecting previously deselected package gcc-4.6.
- Unpacking gcc-4.6 (from .../gcc-4.6_4.6.1-9ubuntu3_amd64.deb) ...
- Selecting previously deselected package gcc.
- Unpacking gcc (from .../gcc_4%3a4.6.1-2ubuntu5_amd64.deb) ...
- Selecting previously deselected package make.
- Unpacking make (from .../make_3.81-8.1ubuntu1_amd64.deb) ...
- Selecting previously deselected package dkms.
- Unpacking dkms (from .../dkms_2.2.0.2-1ubuntu4_all.deb) ...
- Selecting previously deselected package fakeroot.
- Unpacking fakeroot (from .../fakeroot_1.17-1_amd64.deb) ...
- Selecting previously deselected package iscsitarget.
- Unpacking iscsitarget (from .../iscsitarget_1.4.20.2-5ubuntu1_amd64.deb) ...
- Selecting previously deselected package iscsitarget-dkms.
- Unpacking iscsitarget-dkms (from .../iscsitarget-dkms_1.4.20.2-5ubuntu1_all.deb) ...
- Selecting previously deselected package libc-dev-bin.
- Unpacking libc-dev-bin (from .../libc-dev-bin_2.13-20ubuntu5_amd64.deb) ...
- Selecting previously deselected package linux-libc-dev.
- Unpacking linux-libc-dev (from .../linux-libc-dev_3.0.0-14.23_amd64.deb) ...
- Selecting previously deselected package libc6-dev.
- Unpacking libc6-dev (from .../libc6-dev_2.13-20ubuntu5_amd64.deb) ...
- Selecting previously deselected package manpages-dev.
- Unpacking manpages-dev (from .../manpages-dev_3.27-1ubuntu2_all.deb) ...
- Processing triggers for man-db ...
- Processing triggers for ureadahead ...
- Setting up libgomp1 (4.6.1-9ubuntu3) ...
- Setting up libquadmath0 (4.6.1-9ubuntu3) ...
- Setting up binutils (2.21.53.20110810-0ubuntu5) ...
- Setting up libmpfr4 (3.0.1-5) ...
- Setting up libmpc2 (0.9-3) ...
- Setting up cpp-4.6 (4.6.1-9ubuntu3) ...
- Setting up cpp (4:4.6.1-2ubuntu5) ...
- Setting up gcc-4.6 (4.6.1-9ubuntu3) ...
- Setting up gcc (4:4.6.1-2ubuntu5) ...
- Setting up make (3.81-8.1ubuntu1) ...
- Setting up dkms (2.2.0.2-1ubuntu4) ...
- Setting up fakeroot (1.17-1) ...
- update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode.
- Setting up iscsitarget (1.4.20.2-5ubuntu1) ...
- * iscsitarget not enabled in "/etc/default/iscsitarget", not starting...
- Setting up iscsitarget-dkms (1.4.20.2-5ubuntu1) ...
-
- Creating symlink /var/lib/dkms/iscsitarget/1.4.20.2/source ->
- /usr/src/iscsitarget-1.4.20.2
-
- DKMS: add Completed.
-
- Kernel preparation unnecessary for this kernel. Skipping...
-
- Building module:
- cleaning build area....
- 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.......
- cleaning build area....
-
- DKMS: build Completed.
-
- iscsi_trgt:
- Running module version sanity check.
- - Original module
- - No original module exists within this kernel
- - Installation
- - Installing to /lib/modules/3.0.0-12-server/updates/dkms/
-
- depmod......
-
- DKMS: install Completed.
- Setting up libc-dev-bin (2.13-20ubuntu5) ...
- Setting up linux-libc-dev (3.0.0-14.23) ...
- Setting up libc6-dev (2.13-20ubuntu5) ...
- Setting up manpages-dev (3.27-1ubuntu2) ...
- Processing triggers for libc-bin ...
- ldconfig deferred processing now taking place
-
-
-
- iscsitarget installation Done! Press ENTER to Enable iscsitarget ...
-
-
-
-
- Enabling iscsitarget Done! Press ENTER to Create a Physical Volume...
-
- Device /dev
/sda6 not found (or ignored by filtering). 【脚本写的是sudo pvcreate /dev
/sda6,实际测试系统中的分区是 /dev/sda5, 运行 vgdisplay显示,nova_volumes已经成功建立。】
-
-
- Creating a Physical Volume servicet Done!
- Press ENTER to Create a Volume Group named nova-volumes.
-
- No physical volume label read from /dev/sda5
- Physical volume "/dev/sda5" successfully created
- Volume group "nova-volumes" successfully created
-
-
-
- Creating a Volume Group named nova-volumes Done!
- Press ENTER to Change the ownership of the /etc/nova folder and permissions for /etc/nova/nova.conf...
-
-
-
-
- Enabling iscsitarget Done! Press ENTER to Create a Physical Volume...
-
- Device /dev/sda6 not found (or ignored by filtering).
-
-
- Creating a Physical Volume servicet Done!
- Press ENTER to Create a Volume Group named nova-volumes.
-
- No physical volume label read from /dev/sda5
- Physical volume "/dev/sda5" successfully created
- Volume group "nova-volumes" successfully created
-
-
-
- Creating a Volume Group named nova-volumes Done!
- Press ENTER to Change the ownership of the /etc/nova folder and permissions for /etc/nova/nova.conf...
-
-
- Operation Done!
- Now refer to openstack_server1_configuration1.txt file to configure system.
- Restart your server after the configuration is done.
-
-
- localadmin@server1:~$ sudo vi /etc/ntp.conf
- localadmin@server1:~$
- localadmin@server1:~$ sudo vi /etc/mysql/my.cnf
- localadmin@server1:~$
- localadmin@server1:~$ sudo vi /etc/nova/nova.conf
- localadmin@server1:~$
- localadmin@server1:~$ sudo reboot
-
-
- ......
-
- localadmin@server1:~$ sudo ./openstack_server1_package_install_2.sh
- Create nova schema in the MySQL Database.
- /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.
- MigrateDeprecationWarning
-
-
-
- Creating nova schema in the MySQL Database Done!
- Press ENTER to Provide a range of IPs to be attached to the instances...
-
- Providing a range of IPs to be attached to the instances Done!
- Press ENTER to Allocate 32 pubic IP addresses for use with the instances starting from 10.10.10.225...
-
-
-
- Allocating 32 pubic IP addresses for use with the instances starting from 10.10.10.225 Done!
- Press ENTER to Create a user with admin rights on nova...
-
- export EC2_ACCESS_KEY=64e957a8-0ca0-4b13-b83a-92d82a6ffa4e
- export EC2_SECRET_KEY=c6d0d536-cf05-4192-8e46-d1d75a41efe7
-
-
-
- Creating a user with admin rights on nova Done!
- Press ENTER to Create a project named proj...
-
-
-
-
- Creating a project named proj Done!
- Press ENTER to restart you server...
-
-
- Broadcast message from localadmin@server1
- (/dev/pts/0) at 19:16 ...
-
- The system is going down for reboot NOW!
- ......
-
- localadmin@server1:~$ sudo ./openstack_server1_package_install_3.sh
- [sudo] password for localadmin:
- Create a directory to download nova credentials and download the zip file.
-
-
-
- Creating a directory to download nova credentials and download the zip file Done!
- Press ENTER to Generate and save credentials for accessing/managing the nova cloud...
-
-
- Generating and save credentials for accessing/managing the nova cloud Done!
- Press ENTER to continue and follow the instructions...
-
-
- 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.
-
- Navigate in to the folder created and extract the files and change their ownership.
- Archive: novacreds.zip
- extracting: novarc
- extracting: pk.pem
- extracting: cert.pem
- extracting: cacert.pem
-
- In Diablo, by default novarc file contains EC2_ACCESS_KEY in a format that is not usable by euca-* commands. To fix this:
- Execute sudo nova-manage user exports novaadmin
- The output will be something like:
- export EC2_ACCESS_KEY=
- export EC2_SECRET_KEY=
- Now let's do it. Press ENTER...
-
- export EC2_ACCESS_KEY=64e957a8-0ca0-4b13-b83a-92d82a6ffa4e
- export EC2_SECRET_KEY=c6d0d536-cf05-4192-8e46-d1d75a41efe7
-
- You see the keys? Good!
- Open the /home/localadmin/creds/novarc file and make sure the line below exsists:
- 'export EC2_ACCESS_KEY=":proj'
-
- Next, better reboot you server. And do the following...
-
- $ source /home/localadmin/creds/novarc
- $ euca-describe-availability-zones verbose
-
- If you see something like the following with all components happy, it means that the set up is ready to be used.
-
- AVAILABILITYZONE nova available
- AVAILABILITYZONE |- server1
- AVAILABILITYZONE | |- nova-compute enabled :-) 2011-09-29 07:26:04
- AVAILABILITYZONE | |- nova-scheduler enabled :-) 2011-09-29 07:26:04
- AVAILABILITYZONE | |- nova-network enabled :-) 2011-09-29 07:26:07
- AVAILABILITYZONE | |- nova-volume enabled :-) 2011-09-29 07:26:06
- Good luck!
- Now, reboot your server.
-
- localadmin@server1:~$ sudo reboot
- ......
- localadmin@server1:~$ source /home/localadmin/creds/novarc
- localadmin@server1:~$ euca-describe-availability-zones verbose
- AVAILABILITYZONE nova available
- AVAILABILITYZONE |- server1
- AVAILABILITYZONE | |- nova-volume enabled :-) 2012-01-03 11:39:09
- AVAILABILITYZONE | |- nova-scheduler enabled :-) 2012-01-03 11:39:09
- AVAILABILITYZONE | |- nova-network enabled :-) 2012-01-03 11:39:09
- AVAILABILITYZONE | |- nova-compute enabled :-) 2012-01-03 11:39:09
- localadmin@server1:~$
你也试一下?祝你成功!
阅读(1811) | 评论(0) | 转发(1) |