-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenstack-train-devops6-nova.txt
2123 lines (2049 loc) · 168 KB
/
openstack-train-devops6-nova.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
https://docs.openstack.org/nova/train/install/controller-install-ubuntu.html
Nova Compute
controller node
root@wei-ThinkPad-X1-Extreme:~# mysql -u root --password=MARIADB_PASS --execute="CREATE DATABASE IF NOT EXISTS nova_api;GRANT ALL PRIVILEGES ON nova_api.* TO 'nova'@'localhost' IDENTIFIED BY 'NOVA_DBPASS';GRANT ALL PRIVILEGES ON nova_api.* TO 'nova'@'%' IDENTIFIED BY 'NOVA_DBPASS';"
root@wei-ThinkPad-X1-Extreme:~# mysql -u root --password=MARIADB_PASS --execute="CREATE DATABASE IF NOT EXISTS nova;GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'localhost' IDENTIFIED BY 'NOVA_DBPASS';GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'%' IDENTIFIED BY 'NOVA_DBPASS';"
root@wei-ThinkPad-X1-Extreme:~# mysql -u root --password=MARIADB_PASS --execute="CREATE DATABASE IF NOT EXISTS nova_cell0;GRANT ALL PRIVILEGES ON nova_cell0.* TO 'nova'@'localhost' IDENTIFIED BY 'NOVA_DBPASS';GRANT ALL PRIVILEGES ON nova_cell0.* TO 'nova'@'%' IDENTIFIED BY 'NOVA_DBPASS';"
root@wei-ThinkPad-X1-Extreme:~# openstack user create --domain default --password NOVA_PASS nova
+---------------------+----------------------------------+
| Field | Value |
+---------------------+----------------------------------+
| domain_id | default |
| enabled | True |
| id | d5e18391edd14c309869616c358020c2 |
| name | nova |
| options | {} |
| password_expires_at | None |
+---------------------+----------------------------------+
root@wei-ThinkPad-X1-Extreme:~# openstack role add --project service --user nova admin
root@wei-ThinkPad-X1-Extreme:~# openstack service create --name nova --description "Openstack Compute" compute
+-------------+----------------------------------+
| Field | Value |
+-------------+----------------------------------+
| description | Openstack Compute |
| enabled | True |
| id | 167fd7cae9ce4c0c99df432bec782aac |
| name | nova |
| type | compute |
+-------------+----------------------------------+
root@wei-ThinkPad-X1-Extreme:~# openstack endpoint create --region RegionOne compute public http://controller:8774/v2.1
+--------------+----------------------------------+
| Field | Value |
+--------------+----------------------------------+
| enabled | True |
| id | 127c86c60d0b4faaabeea04f4a17fce8 |
| interface | public |
| region | RegionOne |
| region_id | RegionOne |
| service_id | 167fd7cae9ce4c0c99df432bec782aac |
| service_name | nova |
| service_type | compute |
| url | http://controller:8774/v2.1 |
+--------------+----------------------------------+
root@wei-ThinkPad-X1-Extreme:~# openstack endpoint create --region RegionOne compute internal http://controller:8774/v2.1
+--------------+----------------------------------+
| Field | Value |
+--------------+----------------------------------+
| enabled | True |
| id | 9e099acf79c94cf0890df0cdd4a4101c |
| interface | internal |
| region | RegionOne |
| region_id | RegionOne |
| service_id | 167fd7cae9ce4c0c99df432bec782aac |
| service_name | nova |
| service_type | compute |
| url | http://controller:8774/v2.1 |
+--------------+----------------------------------+
root@wei-ThinkPad-X1-Extreme:~# openstack endpoint create --region RegionOne compute admin http://controller:8774/v2.1
+--------------+----------------------------------+
| Field | Value |
+--------------+----------------------------------+
| enabled | True |
| id | d2a2dce569b945b7aaccaa96a70508ec |
| interface | admin |
| region | RegionOne |
| region_id | RegionOne |
| service_id | 167fd7cae9ce4c0c99df432bec782aac |
| service_name | nova |
| service_type | compute |
| url | http://controller:8774/v2.1 |
+--------------+----------------------------------+
root@wei-ThinkPad-X1-Extreme:~# apt-get install -y nova-api nova-conductor nova-novncproxy nova-scheduler
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
fonts-liberation2 fonts-opensymbol gir1.2-geocodeglib-1.0
gir1.2-gst-plugins-base-1.0 gir1.2-gstreamer-1.0 gir1.2-gudev-1.0
gir1.2-udisks-2.0 grilo-plugins-0.3-base gstreamer1.0-gtk3
libboost-date-time1.65.1 libboost-filesystem1.65.1 libboost-iostreams1.65.1
libboost-locale1.65.1 libcdr-0.1-1 libclucene-contribs1v5 libclucene-core1v5
libcmis-0.5-5v5 libcolamd2 libdazzle-1.0-0 libe-book-0.1-1
libedataserverui-1.2-2 libeot0 libepubgen-0.1-1 libetonyek-0.1-1 libexiv2-14
libfreerdp-client2-2 libfreerdp2-2 libgc1c2 libgee-0.8-2 libgexiv2-2
libgom-1.0-0 libgpgmepp6 libgpod-common libgpod4 liblangtag-common
liblangtag1 liblirc-client0 libllvm8 liblua5.3-0 libmediaart-2.0-0
libmspub-0.1-1 libodfgen-0.1-1 libqqwing2v5 libraw16 librevenge-0.0-0
libsgutils2-2 libssh-4 libsuitesparseconfig5 libvncclient1 libwinpr2-2
libxapian30 libxmlsec1-nss lp-solve media-player-info syslinux
syslinux-common syslinux-legacy usb-creator-common
Use 'apt autoremove' to remove them.
The following additional packages will be installed:
cpu-checker dmeventd docutils-doc ibverbs-providers ipxe-qemu
ipxe-qemu-256k-compat-efi-roms libcacard0 libdevmapper-event1.02.1 libfdt1
libibverbs1 libiscsi7 libjs-swfobject liblvm2app2.2 liblvm2cmd2.02
libnl-route-3-200 librados2 librbd1 librdmacm1 libspice-server1
libusbredirparser1 libvirglrenderer0 libvirt-daemon
libvirt-daemon-driver-storage-rbd libvirt0 libxen-4.9 libxenstore3.0
libxml2-utils libyajl2 lvm2 msr-tools nova-common novnc ovmf python-babel
python-certifi python-chardet python-debtcollector python-docutils
python-funcsigs python-idna python-netaddr python-novnc python-numpy
python-olefile python-openssl python-oslo.config python-oslo.i18n python-pbr
python-pil python-pygments python-requests python-rfc3986 python-roman
python-stevedore python-tz python-urllib3 python-wrapt python-yaml
python3-libvirt python3-nova python3-openvswitch python3-os-vif
python3-os-xenapi python3-ovsdbapp python3-paramiko python3-pymemcache
python3-pypowervm python3-pyroute2 python3-redis python3-sortedcontainers
python3-tooz python3-voluptuous python3-websockify python3-zake
python3-zvmcloudconnector qemu-block-extra qemu-kvm qemu-system-common
qemu-system-data qemu-system-gui qemu-system-x86 qemu-utils seabios
sharutils websockify websockify-common zvmcloudconnector-common
Suggested packages:
libvirt-daemon-driver-storage-gluster libvirt-daemon-driver-storage-zfs
libvirt-daemon-system numad thin-provisioning-tools python-nova
python-debtcollector-doc fonts-linuxlibertine | ttf-linux-libertine
texlive-lang-french texlive-latex-base texlive-latex-recommended
python-funcsigs-doc ipython python-netaddr-docs gfortran python-nose
python-numpy-dbg python-numpy-doc python-openssl-doc python-openssl-dbg
python-pil-doc python-pil-dbg ttf-bitstream-vera python-socks python-ntlm
python-os-vif-doc python-os-xenapi-doc python-ovsdbapp-doc python3-gssapi
python-pyroute2-doc python3-hiredis python-sortedcontainers-doc
python3-sysv-ipc samba vde2 sgabios debootstrap sharutils-doc bsd-mailx
| mailx
The following NEW packages will be installed:
cpu-checker dmeventd docutils-doc ibverbs-providers ipxe-qemu
ipxe-qemu-256k-compat-efi-roms libcacard0 libdevmapper-event1.02.1 libfdt1
libibverbs1 libiscsi7 libjs-swfobject liblvm2app2.2 liblvm2cmd2.02
libnl-route-3-200 librados2 librbd1 librdmacm1 libspice-server1
libusbredirparser1 libvirglrenderer0 libvirt-daemon
libvirt-daemon-driver-storage-rbd libvirt0 libxen-4.9 libxenstore3.0
libxml2-utils libyajl2 lvm2 msr-tools nova-api nova-common nova-conductor
nova-novncproxy nova-scheduler novnc ovmf python-babel python-certifi
python-chardet python-debtcollector python-docutils python-funcsigs
python-idna python-netaddr python-novnc python-numpy python-olefile
python-openssl python-oslo.config python-oslo.i18n python-pbr python-pil
python-pygments python-requests python-rfc3986 python-roman python-stevedore
python-tz python-urllib3 python-wrapt python-yaml python3-libvirt
python3-nova python3-openvswitch python3-os-vif python3-os-xenapi
python3-ovsdbapp python3-paramiko python3-pymemcache python3-pypowervm
python3-pyroute2 python3-redis python3-sortedcontainers python3-tooz
python3-voluptuous python3-websockify python3-zake python3-zvmcloudconnector
qemu-block-extra qemu-kvm qemu-system-common qemu-system-data
qemu-system-gui qemu-system-x86 qemu-utils seabios sharutils websockify
websockify-common zvmcloudconnector-common
0 upgraded, 91 newly installed, 0 to remove and 0 not upgraded.
Need to get 34.9 MB/35.9 MB of archives.
After this operation, 191 MB of additional disk space will be used.
Get:1 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 libiscsi7 amd64 1.17.0-1.1 [55.4 kB]
Get:2 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 libibverbs1 amd64 24.0-2~cloud0 [50.8 kB]
Get:3 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 libnl-route-3-200 amd64 3.2.29-0ubuntu3 [146 kB]
Get:4 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 librdmacm1 amd64 24.0-2~cloud0 [58.4 kB]
Get:5 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 msr-tools amd64 1.3-2build1 [9,760 B]
Get:6 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 cpu-checker amd64 0.7-0ubuntu7 [6,862 B]
Get:7 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 docutils-doc all 0.14+dfsg-3 [913 kB]
Get:8 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 librados2 amd64 14.2.2-0ubuntu3~cloud0 [3,007 kB]
Get:9 http://cn.archive.ubuntu.com/ubuntu bionic-updates/main amd64 ipxe-qemu all 1.0.0+git-20180124.fbe8c52d-0ubuntu2.2 [912 kB]
Get:10 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 ipxe-qemu-256k-compat-efi-roms all 1.0.0+git-20150424.a25a16d-0ubuntu2 [545 kB]
Get:11 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 libjs-swfobject all 2.2+dfsg-2 [8,160 B]
Get:12 http://cn.archive.ubuntu.com/ubuntu bionic-updates/main amd64 libspice-server1 amd64 0.14.0-1ubuntu2.4 [345 kB]
Get:13 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 libusbredirparser1 amd64 0.7.1-1 [13.6 kB]
Get:14 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 libyajl2 amd64 2.1.0-2build1 [20.0 kB]
Get:15 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 libxenstore3.0 amd64 4.9.2-0ubuntu1 [19.7 kB]
Get:16 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 libxen-4.9 amd64 4.9.2-0ubuntu1 [399 kB]
Get:17 http://cn.archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxml2-utils amd64 2.9.4+dfsg1-6.1ubuntu1.2 [35.8 kB]
Get:18 http://cn.archive.ubuntu.com/ubuntu bionic-updates/main amd64 lvm2 amd64 2.02.176-4.1ubuntu3.18.04.2 [930 kB]
Get:19 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-funcsigs all 1.0.2-4 [13.5 kB]
Get:20 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-wrapt amd64 1.9.0-3 [27.5 kB]
Get:21 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-roman all 2.0.0-3 [8,548 B]
Get:22 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-docutils all 0.14+dfsg-3 [365 kB]
Get:23 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-netaddr all 0.7.19-1 [213 kB]
Get:24 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-tz all 2018.3-2 [31.6 kB]
Get:25 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-certifi all 2018.1.18-2 [144 kB]
Get:26 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-chardet all 3.0.4-1 [80.3 kB]
Get:27 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-idna all 2.6-1 [32.4 kB]
Get:28 http://cn.archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-urllib3 all 1.22-1ubuntu0.18.04.1 [85.9 kB]
Get:29 http://cn.archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-requests all 2.18.4-2ubuntu0.1 [58.5 kB]
Get:30 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-yaml amd64 3.12-1build2 [115 kB]
Get:31 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 python-novnc all 1:0.4+dfsg+1+20131010+gitf68af8af3d-7 [19.2 kB]
Get:32 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-numpy amd64 1:1.13.3-2ubuntu1 [1,938 kB]
Get:33 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 websockify-common all 0.8.0+dfsg1-9 [27.3 kB]
Get:34 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 python3-websockify amd64 0.8.0+dfsg1-9 [30.1 kB]
Get:35 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 websockify amd64 0.8.0+dfsg1-9 [21.2 kB]
Get:36 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 novnc all 1:0.4+dfsg+1+20131010+gitf68af8af3d-7 [112 kB]
Get:37 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-olefile all 0.45.1-1 [33.2 kB]
Get:38 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-openssl all 17.5.0-1ubuntu1 [41.3 kB]
Get:39 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-pil amd64 5.1.0-1 [328 kB]
Get:40 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python-pygments all 2.2.0+dfsg-1 [577 kB]
Get:41 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 python3-sortedcontainers all 1.5.7-1 [26.3 kB]
Get:42 http://cn.archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-paramiko all 2.0.0-1ubuntu1.2 [110 kB]
Get:43 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 python3-pymemcache all 1.3.2-3 [23.0 kB]
Get:44 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 python3-voluptuous all 0.9.3-1 [24.2 kB]
Get:45 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 python3-zake all 0.2.2-2 [14.2 kB]
Get:46 http://cn.archive.ubuntu.com/ubuntu bionic/universe amd64 libvirglrenderer0 amd64 0.6.0-2 [124 kB]
Get:47 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 seabios all 1.10.2-1ubuntu1 [128 kB]
Get:48 http://cn.archive.ubuntu.com/ubuntu bionic/main amd64 sharutils amd64 1:4.15.2-3 [155 kB]
Get:49 http://cn.archive.ubuntu.com/ubuntu bionic-updates/universe amd64 ovmf all 0~20180205.c0d9813c-2ubuntu0.1 [1,157 kB]
Get:50 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 librbd1 amd64 14.2.2-0ubuntu3~cloud0 [1,398 kB]
Get:51 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 qemu-block-extra amd64 1:4.0+dfsg-0ubuntu9.2~cloud0 [117 kB]
Get:52 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 qemu-system-common amd64 1:4.0+dfsg-0ubuntu9.2~cloud0 [783 kB]
Get:53 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 ibverbs-providers amd64 24.0-2~cloud0 [220 kB]
Get:54 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/stein/main amd64 libcacard0 amd64 1:2.6.1-1~cloud0 [32.7 kB]
Get:55 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 libfdt1 amd64 1.4.7-3ubuntu2~cloud0 [21.2 kB]
Get:56 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 libvirt0 amd64 5.4.0-0ubuntu5~cloud0 [3,754 kB]
Get:57 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 libvirt-daemon amd64 5.4.0-0ubuntu5~cloud0 [1,412 kB]
Get:58 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 libvirt-daemon-driver-storage-rbd amd64 5.4.0-0ubuntu5~cloud0 [176 kB]
Get:59 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python-pbr all 5.1.1-0ubuntu3~cloud0 [64.9 kB]
Get:60 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/stein/main amd64 python-debtcollector all 1.20.0-2~cloud0 [13.6 kB]
Get:61 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/stein/main amd64 python-babel all 2.6.0+dfsg.1-1~cloud0 [88.2 kB]
Get:62 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/stein/main amd64 python-oslo.i18n all 3.23.1-0ubuntu1~cloud0 [23.1 kB]
Get:63 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/stein/main amd64 python-rfc3986 all 1.2.0-0ubuntu1~cloud0 [19.6 kB]
Get:64 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/stein/main amd64 python-stevedore all 1:1.30.1-0ubuntu1~cloud0 [20.5 kB]
Get:65 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/stein/main amd64 python-oslo.config all 1:6.8.1-0ubuntu1~cloud0 [108 kB]
Get:66 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/stein/main amd64 python3-libvirt amd64 5.0.0-1~cloud0 [128 kB]
Get:67 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-openvswitch all 2.12.0-0ubuntu1~cloud0 [107 kB]
Get:68 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-ovsdbapp all 0.17.0-0ubuntu1~cloud0 [54.1 kB]
Get:69 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-pyroute2 all 0.5.6-0ubuntu1~cloud0 [216 kB]
Get:70 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-os-vif all 1.17.0-0ubuntu1~cloud0 [52.0 kB]
Get:71 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-os-xenapi all 0.3.4-0ubuntu2~cloud0 [74.9 kB]
Get:72 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-pypowervm all 1.1.20-0ubuntu2~cloud0 [1,166 kB]
Get:73 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-redis all 3.2.1-3~cloud0 [57.1 kB]
Get:74 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-tooz all 1.66.2-0ubuntu1~cloud0 [50.3 kB]
Get:75 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 zvmcloudconnector-common all 2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu2~cloud0 [11.9 kB]
Get:76 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-zvmcloudconnector all 2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu2~cloud0 [175 kB]
Get:77 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 qemu-system-data all 1:4.0+dfsg-0ubuntu9.2~cloud0 [217 kB]
Get:78 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 qemu-system-x86 amd64 1:4.0+dfsg-0ubuntu9.2~cloud0 [6,052 kB]
Get:79 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 qemu-kvm amd64 1:4.0+dfsg-0ubuntu9.2~cloud0 [89.4 kB]
Get:80 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 qemu-system-gui amd64 1:4.0+dfsg-0ubuntu9.2~cloud0 [116 kB]
Get:81 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 qemu-utils amd64 1:4.0+dfsg-0ubuntu9.2~cloud0 [1,220 kB]
Get:82 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 nova-common all 2:20.0.1-0ubuntu1~cloud0 [94.1 kB]
Get:83 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 python3-nova all 2:20.0.1-0ubuntu1~cloud0 [3,060 kB]
Get:84 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 nova-api all 2:20.0.1-0ubuntu1~cloud0 [36.8 kB]
Get:85 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 nova-conductor all 2:20.0.1-0ubuntu1~cloud0 [36.8 kB]
Get:86 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 nova-novncproxy all 2:20.0.1-0ubuntu1~cloud0 [36.8 kB]
Get:87 http://ubuntu-cloud.archive.canonical.com/ubuntu bionic-updates/train/main amd64 nova-scheduler all 2:20.0.1-0ubuntu1~cloud0 [36.8 kB]
Fetched 34.9 MB in 5min 29s (106 kB/s)
Extracting templates from packages: 100%
Selecting previously unselected package libiscsi7:amd64.
(Reading database ... 214214 files and directories currently installed.)
Preparing to unpack .../00-libiscsi7_1.17.0-1.1_amd64.deb ...
Unpacking libiscsi7:amd64 (1.17.0-1.1) ...
Selecting previously unselected package libnl-route-3-200:amd64.
Preparing to unpack .../01-libnl-route-3-200_3.2.29-0ubuntu3_amd64.deb ...
Unpacking libnl-route-3-200:amd64 (3.2.29-0ubuntu3) ...
Selecting previously unselected package libibverbs1:amd64.
Preparing to unpack .../02-libibverbs1_24.0-2~cloud0_amd64.deb ...
Unpacking libibverbs1:amd64 (24.0-2~cloud0) ...
Selecting previously unselected package librdmacm1:amd64.
Preparing to unpack .../03-librdmacm1_24.0-2~cloud0_amd64.deb ...
Unpacking librdmacm1:amd64 (24.0-2~cloud0) ...
Selecting previously unselected package librados2.
Preparing to unpack .../04-librados2_14.2.2-0ubuntu3~cloud0_amd64.deb ...
Unpacking librados2 (14.2.2-0ubuntu3~cloud0) ...
Selecting previously unselected package librbd1.
Preparing to unpack .../05-librbd1_14.2.2-0ubuntu3~cloud0_amd64.deb ...
Unpacking librbd1 (14.2.2-0ubuntu3~cloud0) ...
Selecting previously unselected package qemu-block-extra:amd64.
Preparing to unpack .../06-qemu-block-extra_1%3a4.0+dfsg-0ubuntu9.2~cloud0_amd64.deb ...
Unpacking qemu-block-extra:amd64 (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Selecting previously unselected package qemu-system-common.
Preparing to unpack .../07-qemu-system-common_1%3a4.0+dfsg-0ubuntu9.2~cloud0_amd64.deb ...
Unpacking qemu-system-common (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Selecting previously unselected package msr-tools.
Preparing to unpack .../08-msr-tools_1.3-2build1_amd64.deb ...
Unpacking msr-tools (1.3-2build1) ...
Selecting previously unselected package cpu-checker.
Preparing to unpack .../09-cpu-checker_0.7-0ubuntu7_amd64.deb ...
Unpacking cpu-checker (0.7-0ubuntu7) ...
Selecting previously unselected package libdevmapper-event1.02.1:amd64.
Preparing to unpack .../10-libdevmapper-event1.02.1_2%3a1.02.145-4.1ubuntu3.18.04.2_amd64.deb ...
Unpacking libdevmapper-event1.02.1:amd64 (2:1.02.145-4.1ubuntu3.18.04.2) ...
Selecting previously unselected package liblvm2cmd2.02:amd64.
Preparing to unpack .../11-liblvm2cmd2.02_2.02.176-4.1ubuntu3.18.04.2_amd64.deb ...
Unpacking liblvm2cmd2.02:amd64 (2.02.176-4.1ubuntu3.18.04.2) ...
Selecting previously unselected package dmeventd.
Preparing to unpack .../12-dmeventd_2%3a1.02.145-4.1ubuntu3.18.04.2_amd64.deb ...
Unpacking dmeventd (2:1.02.145-4.1ubuntu3.18.04.2) ...
Selecting previously unselected package docutils-doc.
Preparing to unpack .../13-docutils-doc_0.14+dfsg-3_all.deb ...
Unpacking docutils-doc (0.14+dfsg-3) ...
Selecting previously unselected package ibverbs-providers:amd64.
Preparing to unpack .../14-ibverbs-providers_24.0-2~cloud0_amd64.deb ...
Unpacking ibverbs-providers:amd64 (24.0-2~cloud0) ...
Selecting previously unselected package ipxe-qemu.
Preparing to unpack .../15-ipxe-qemu_1.0.0+git-20180124.fbe8c52d-0ubuntu2.2_all.deb ...
Unpacking ipxe-qemu (1.0.0+git-20180124.fbe8c52d-0ubuntu2.2) ...
Selecting previously unselected package ipxe-qemu-256k-compat-efi-roms.
Preparing to unpack .../16-ipxe-qemu-256k-compat-efi-roms_1.0.0+git-20150424.a25a16d-0ubuntu2_all.deb ...
Unpacking ipxe-qemu-256k-compat-efi-roms (1.0.0+git-20150424.a25a16d-0ubuntu2) ...
Selecting previously unselected package libcacard0:amd64.
Preparing to unpack .../17-libcacard0_1%3a2.6.1-1~cloud0_amd64.deb ...
Unpacking libcacard0:amd64 (1:2.6.1-1~cloud0) ...
Selecting previously unselected package libfdt1:amd64.
Preparing to unpack .../18-libfdt1_1.4.7-3ubuntu2~cloud0_amd64.deb ...
Unpacking libfdt1:amd64 (1.4.7-3ubuntu2~cloud0) ...
Selecting previously unselected package libjs-swfobject.
Preparing to unpack .../19-libjs-swfobject_2.2+dfsg-2_all.deb ...
Unpacking libjs-swfobject (2.2+dfsg-2) ...
Selecting previously unselected package liblvm2app2.2:amd64.
Preparing to unpack .../20-liblvm2app2.2_2.02.176-4.1ubuntu3.18.04.2_amd64.deb ...
Unpacking liblvm2app2.2:amd64 (2.02.176-4.1ubuntu3.18.04.2) ...
Selecting previously unselected package libspice-server1:amd64.
Preparing to unpack .../21-libspice-server1_0.14.0-1ubuntu2.4_amd64.deb ...
Unpacking libspice-server1:amd64 (0.14.0-1ubuntu2.4) ...
Selecting previously unselected package libusbredirparser1:amd64.
Preparing to unpack .../22-libusbredirparser1_0.7.1-1_amd64.deb ...
Unpacking libusbredirparser1:amd64 (0.7.1-1) ...
Selecting previously unselected package libyajl2:amd64.
Preparing to unpack .../23-libyajl2_2.1.0-2build1_amd64.deb ...
Unpacking libyajl2:amd64 (2.1.0-2build1) ...
Selecting previously unselected package libvirt0:amd64.
Preparing to unpack .../24-libvirt0_5.4.0-0ubuntu5~cloud0_amd64.deb ...
Unpacking libvirt0:amd64 (5.4.0-0ubuntu5~cloud0) ...
Selecting previously unselected package libxenstore3.0:amd64.
Preparing to unpack .../25-libxenstore3.0_4.9.2-0ubuntu1_amd64.deb ...
Unpacking libxenstore3.0:amd64 (4.9.2-0ubuntu1) ...
Selecting previously unselected package libxen-4.9:amd64.
Preparing to unpack .../26-libxen-4.9_4.9.2-0ubuntu1_amd64.deb ...
Unpacking libxen-4.9:amd64 (4.9.2-0ubuntu1) ...
Selecting previously unselected package libvirt-daemon.
Preparing to unpack .../27-libvirt-daemon_5.4.0-0ubuntu5~cloud0_amd64.deb ...
Unpacking libvirt-daemon (5.4.0-0ubuntu5~cloud0) ...
Selecting previously unselected package libvirt-daemon-driver-storage-rbd.
Preparing to unpack .../28-libvirt-daemon-driver-storage-rbd_5.4.0-0ubuntu5~cloud0_amd64.deb ...
Unpacking libvirt-daemon-driver-storage-rbd (5.4.0-0ubuntu5~cloud0) ...
Selecting previously unselected package libxml2-utils.
Preparing to unpack .../29-libxml2-utils_2.9.4+dfsg1-6.1ubuntu1.2_amd64.deb ...
Unpacking libxml2-utils (2.9.4+dfsg1-6.1ubuntu1.2) ...
Selecting previously unselected package lvm2.
Preparing to unpack .../30-lvm2_2.02.176-4.1ubuntu3.18.04.2_amd64.deb ...
Unpacking lvm2 (2.02.176-4.1ubuntu3.18.04.2) ...
Selecting previously unselected package python-funcsigs.
Preparing to unpack .../31-python-funcsigs_1.0.2-4_all.deb ...
Unpacking python-funcsigs (1.0.2-4) ...
Selecting previously unselected package python-pbr.
Preparing to unpack .../32-python-pbr_5.1.1-0ubuntu3~cloud0_all.deb ...
Unpacking python-pbr (5.1.1-0ubuntu3~cloud0) ...
Selecting previously unselected package python-wrapt.
Preparing to unpack .../33-python-wrapt_1.9.0-3_amd64.deb ...
Unpacking python-wrapt (1.9.0-3) ...
Selecting previously unselected package python-debtcollector.
Preparing to unpack .../34-python-debtcollector_1.20.0-2~cloud0_all.deb ...
Unpacking python-debtcollector (1.20.0-2~cloud0) ...
Selecting previously unselected package python-roman.
Preparing to unpack .../35-python-roman_2.0.0-3_all.deb ...
Unpacking python-roman (2.0.0-3) ...
Selecting previously unselected package python-docutils.
Preparing to unpack .../36-python-docutils_0.14+dfsg-3_all.deb ...
Unpacking python-docutils (0.14+dfsg-3) ...
Selecting previously unselected package python-netaddr.
Preparing to unpack .../37-python-netaddr_0.7.19-1_all.deb ...
Unpacking python-netaddr (0.7.19-1) ...
Selecting previously unselected package python-tz.
Preparing to unpack .../38-python-tz_2018.3-2_all.deb ...
Unpacking python-tz (2018.3-2) ...
Selecting previously unselected package python-babel.
Preparing to unpack .../39-python-babel_2.6.0+dfsg.1-1~cloud0_all.deb ...
Unpacking python-babel (2.6.0+dfsg.1-1~cloud0) ...
Selecting previously unselected package python-oslo.i18n.
Preparing to unpack .../40-python-oslo.i18n_3.23.1-0ubuntu1~cloud0_all.deb ...
Unpacking python-oslo.i18n (3.23.1-0ubuntu1~cloud0) ...
Selecting previously unselected package python-certifi.
Preparing to unpack .../41-python-certifi_2018.1.18-2_all.deb ...
Unpacking python-certifi (2018.1.18-2) ...
Selecting previously unselected package python-chardet.
Preparing to unpack .../42-python-chardet_3.0.4-1_all.deb ...
Unpacking python-chardet (3.0.4-1) ...
Selecting previously unselected package python-idna.
Preparing to unpack .../43-python-idna_2.6-1_all.deb ...
Unpacking python-idna (2.6-1) ...
Selecting previously unselected package python-urllib3.
Preparing to unpack .../44-python-urllib3_1.22-1ubuntu0.18.04.1_all.deb ...
Unpacking python-urllib3 (1.22-1ubuntu0.18.04.1) ...
Selecting previously unselected package python-requests.
Preparing to unpack .../45-python-requests_2.18.4-2ubuntu0.1_all.deb ...
Unpacking python-requests (2.18.4-2ubuntu0.1) ...
Selecting previously unselected package python-rfc3986.
Preparing to unpack .../46-python-rfc3986_1.2.0-0ubuntu1~cloud0_all.deb ...
Unpacking python-rfc3986 (1.2.0-0ubuntu1~cloud0) ...
Selecting previously unselected package python-stevedore.
Preparing to unpack .../47-python-stevedore_1%3a1.30.1-0ubuntu1~cloud0_all.deb ...
Unpacking python-stevedore (1:1.30.1-0ubuntu1~cloud0) ...
Selecting previously unselected package python-yaml.
Preparing to unpack .../48-python-yaml_3.12-1build2_amd64.deb ...
Unpacking python-yaml (3.12-1build2) ...
Selecting previously unselected package python-oslo.config.
Preparing to unpack .../49-python-oslo.config_1%3a6.8.1-0ubuntu1~cloud0_all.deb ...
Unpacking python-oslo.config (1:6.8.1-0ubuntu1~cloud0) ...
Selecting previously unselected package python-novnc.
Preparing to unpack .../50-python-novnc_1%3a0.4+dfsg+1+20131010+gitf68af8af3d-7_all.deb ...
Unpacking python-novnc (1:0.4+dfsg+1+20131010+gitf68af8af3d-7) ...
Selecting previously unselected package python-numpy.
Preparing to unpack .../51-python-numpy_1%3a1.13.3-2ubuntu1_amd64.deb ...
Unpacking python-numpy (1:1.13.3-2ubuntu1) ...
Selecting previously unselected package websockify-common.
Preparing to unpack .../52-websockify-common_0.8.0+dfsg1-9_all.deb ...
Unpacking websockify-common (0.8.0+dfsg1-9) ...
Selecting previously unselected package python3-websockify.
Preparing to unpack .../53-python3-websockify_0.8.0+dfsg1-9_amd64.deb ...
Unpacking python3-websockify (0.8.0+dfsg1-9) ...
Selecting previously unselected package websockify.
Preparing to unpack .../54-websockify_0.8.0+dfsg1-9_amd64.deb ...
Unpacking websockify (0.8.0+dfsg1-9) ...
Selecting previously unselected package novnc.
Preparing to unpack .../55-novnc_1%3a0.4+dfsg+1+20131010+gitf68af8af3d-7_all.deb ...
Unpacking novnc (1:0.4+dfsg+1+20131010+gitf68af8af3d-7) ...
Selecting previously unselected package python-olefile.
Preparing to unpack .../56-python-olefile_0.45.1-1_all.deb ...
Unpacking python-olefile (0.45.1-1) ...
Selecting previously unselected package python-openssl.
Preparing to unpack .../57-python-openssl_17.5.0-1ubuntu1_all.deb ...
Unpacking python-openssl (17.5.0-1ubuntu1) ...
Selecting previously unselected package python-pil:amd64.
Preparing to unpack .../58-python-pil_5.1.0-1_amd64.deb ...
Unpacking python-pil:amd64 (5.1.0-1) ...
Selecting previously unselected package python-pygments.
Preparing to unpack .../59-python-pygments_2.2.0+dfsg-1_all.deb ...
Unpacking python-pygments (2.2.0+dfsg-1) ...
Selecting previously unselected package python3-libvirt.
Preparing to unpack .../60-python3-libvirt_5.0.0-1~cloud0_amd64.deb ...
Unpacking python3-libvirt (5.0.0-1~cloud0) ...
Selecting previously unselected package python3-sortedcontainers.
Preparing to unpack .../61-python3-sortedcontainers_1.5.7-1_all.deb ...
Unpacking python3-sortedcontainers (1.5.7-1) ...
Selecting previously unselected package python3-openvswitch.
Preparing to unpack .../62-python3-openvswitch_2.12.0-0ubuntu1~cloud0_all.deb ...
Unpacking python3-openvswitch (2.12.0-0ubuntu1~cloud0) ...
Selecting previously unselected package python3-ovsdbapp.
Preparing to unpack .../63-python3-ovsdbapp_0.17.0-0ubuntu1~cloud0_all.deb ...
Unpacking python3-ovsdbapp (0.17.0-0ubuntu1~cloud0) ...
Selecting previously unselected package python3-pyroute2.
Preparing to unpack .../64-python3-pyroute2_0.5.6-0ubuntu1~cloud0_all.deb ...
Unpacking python3-pyroute2 (0.5.6-0ubuntu1~cloud0) ...
Selecting previously unselected package python3-os-vif.
Preparing to unpack .../65-python3-os-vif_1.17.0-0ubuntu1~cloud0_all.deb ...
Unpacking python3-os-vif (1.17.0-0ubuntu1~cloud0) ...
Selecting previously unselected package python3-paramiko.
Preparing to unpack .../66-python3-paramiko_2.0.0-1ubuntu1.2_all.deb ...
Unpacking python3-paramiko (2.0.0-1ubuntu1.2) ...
Selecting previously unselected package python3-os-xenapi.
Preparing to unpack .../67-python3-os-xenapi_0.3.4-0ubuntu2~cloud0_all.deb ...
Unpacking python3-os-xenapi (0.3.4-0ubuntu2~cloud0) ...
Selecting previously unselected package python3-pymemcache.
Preparing to unpack .../68-python3-pymemcache_1.3.2-3_all.deb ...
Unpacking python3-pymemcache (1.3.2-3) ...
Selecting previously unselected package python3-pypowervm.
Preparing to unpack .../69-python3-pypowervm_1.1.20-0ubuntu2~cloud0_all.deb ...
Unpacking python3-pypowervm (1.1.20-0ubuntu2~cloud0) ...
Selecting previously unselected package python3-redis.
Preparing to unpack .../70-python3-redis_3.2.1-3~cloud0_all.deb ...
Unpacking python3-redis (3.2.1-3~cloud0) ...
Selecting previously unselected package python3-voluptuous.
Preparing to unpack .../71-python3-voluptuous_0.9.3-1_all.deb ...
Unpacking python3-voluptuous (0.9.3-1) ...
Selecting previously unselected package python3-zake.
Preparing to unpack .../72-python3-zake_0.2.2-2_all.deb ...
Unpacking python3-zake (0.2.2-2) ...
Selecting previously unselected package python3-tooz.
Preparing to unpack .../73-python3-tooz_1.66.2-0ubuntu1~cloud0_all.deb ...
Unpacking python3-tooz (1.66.2-0ubuntu1~cloud0) ...
Selecting previously unselected package zvmcloudconnector-common.
Preparing to unpack .../74-zvmcloudconnector-common_2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu2~cloud0_all.deb ...
Unpacking zvmcloudconnector-common (2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu2~cloud0) ...
Selecting previously unselected package python3-zvmcloudconnector.
Preparing to unpack .../75-python3-zvmcloudconnector_2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu2~cloud0_all.deb ...
Unpacking python3-zvmcloudconnector (2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu2~cloud0) ...
Selecting previously unselected package libvirglrenderer0.
Preparing to unpack .../76-libvirglrenderer0_0.6.0-2_amd64.deb ...
Unpacking libvirglrenderer0 (0.6.0-2) ...
Selecting previously unselected package qemu-system-data.
Preparing to unpack .../77-qemu-system-data_1%3a4.0+dfsg-0ubuntu9.2~cloud0_all.deb ...
Unpacking qemu-system-data (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Selecting previously unselected package seabios.
Preparing to unpack .../78-seabios_1.10.2-1ubuntu1_all.deb ...
Unpacking seabios (1.10.2-1ubuntu1) ...
Selecting previously unselected package qemu-system-x86.
Preparing to unpack .../79-qemu-system-x86_1%3a4.0+dfsg-0ubuntu9.2~cloud0_amd64.deb ...
Unpacking qemu-system-x86 (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Selecting previously unselected package qemu-kvm.
Preparing to unpack .../80-qemu-kvm_1%3a4.0+dfsg-0ubuntu9.2~cloud0_amd64.deb ...
Unpacking qemu-kvm (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Selecting previously unselected package qemu-system-gui.
Preparing to unpack .../81-qemu-system-gui_1%3a4.0+dfsg-0ubuntu9.2~cloud0_amd64.deb ...
Unpacking qemu-system-gui (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Selecting previously unselected package qemu-utils.
Preparing to unpack .../82-qemu-utils_1%3a4.0+dfsg-0ubuntu9.2~cloud0_amd64.deb ...
Unpacking qemu-utils (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Selecting previously unselected package sharutils.
Preparing to unpack .../83-sharutils_1%3a4.15.2-3_amd64.deb ...
Unpacking sharutils (1:4.15.2-3) ...
Selecting previously unselected package nova-common.
Preparing to unpack .../84-nova-common_2%3a20.0.1-0ubuntu1~cloud0_all.deb ...
Unpacking nova-common (2:20.0.1-0ubuntu1~cloud0) ...
Selecting previously unselected package python3-nova.
Preparing to unpack .../85-python3-nova_2%3a20.0.1-0ubuntu1~cloud0_all.deb ...
Unpacking python3-nova (2:20.0.1-0ubuntu1~cloud0) ...
Selecting previously unselected package nova-api.
Preparing to unpack .../86-nova-api_2%3a20.0.1-0ubuntu1~cloud0_all.deb ...
Unpacking nova-api (2:20.0.1-0ubuntu1~cloud0) ...
Selecting previously unselected package nova-conductor.
Preparing to unpack .../87-nova-conductor_2%3a20.0.1-0ubuntu1~cloud0_all.deb ...
Unpacking nova-conductor (2:20.0.1-0ubuntu1~cloud0) ...
Selecting previously unselected package nova-novncproxy.
Preparing to unpack .../88-nova-novncproxy_2%3a20.0.1-0ubuntu1~cloud0_all.deb ...
Unpacking nova-novncproxy (2:20.0.1-0ubuntu1~cloud0) ...
Selecting previously unselected package nova-scheduler.
Preparing to unpack .../89-nova-scheduler_2%3a20.0.1-0ubuntu1~cloud0_all.deb ...
Unpacking nova-scheduler (2:20.0.1-0ubuntu1~cloud0) ...
Selecting previously unselected package ovmf.
Preparing to unpack .../90-ovmf_0~20180205.c0d9813c-2ubuntu0.1_all.deb ...
Unpacking ovmf (0~20180205.c0d9813c-2ubuntu0.1) ...
Setting up python-wrapt (1.9.0-3) ...
Setting up python-idna (2.6-1) ...
Setting up seabios (1.10.2-1ubuntu1) ...
Setting up python3-paramiko (2.0.0-1ubuntu1.2) ...
Setting up ipxe-qemu-256k-compat-efi-roms (1.0.0+git-20150424.a25a16d-0ubuntu2) ...
Setting up python-urllib3 (1.22-1ubuntu0.18.04.1) ...
Setting up python-yaml (3.12-1build2) ...
Setting up libspice-server1:amd64 (0.14.0-1ubuntu2.4) ...
Setting up python-chardet (3.0.4-1) ...
Setting up nova-common (2:20.0.1-0ubuntu1~cloud0) ...
Setting up qemu-system-data (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Setting up python-openssl (17.5.0-1ubuntu1) ...
Setting up websockify-common (0.8.0+dfsg1-9) ...
Setting up python-netaddr (0.7.19-1) ...
Setting up sharutils (1:4.15.2-3) ...
Setting up libiscsi7:amd64 (1.17.0-1.1) ...
Setting up libusbredirparser1:amd64 (0.7.1-1) ...
Setting up zvmcloudconnector-common (2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu2~cloud0) ...
Adding system user `zvmsdk' (UID 131) ...
Adding new user `zvmsdk' (UID 131) with group `zvmsdk' ...
Not creating home directory `/var/lib/zvmsdk'.
Setting up libjs-swfobject (2.2+dfsg-2) ...
Setting up python-certifi (2018.1.18-2) ...
Setting up python-tz (2018.3-2) ...
Setting up libxml2-utils (2.9.4+dfsg1-6.1ubuntu1.2) ...
Setting up libxenstore3.0:amd64 (4.9.2-0ubuntu1) ...
Setting up libnl-route-3-200:amd64 (3.2.29-0ubuntu3) ...
Setting up python3-redis (3.2.1-3~cloud0) ...
Setting up python3-os-xenapi (0.3.4-0ubuntu2~cloud0) ...
Setting up python-roman (2.0.0-3) ...
Setting up msr-tools (1.3-2build1) ...
Setting up python-numpy (1:1.13.3-2ubuntu1) ...
Setting up libdevmapper-event1.02.1:amd64 (2:1.02.145-4.1ubuntu3.18.04.2) ...
Setting up python3-sortedcontainers (1.5.7-1) ...
Setting up libyajl2:amd64 (2.1.0-2build1) ...
Setting up ovmf (0~20180205.c0d9813c-2ubuntu0.1) ...
Setting up python-pygments (2.2.0+dfsg-1) ...
Setting up python-pbr (5.1.1-0ubuntu3~cloud0) ...
update-alternatives: using /usr/bin/python2-pbr to provide /usr/bin/pbr (pbr) in auto mode
Setting up python3-zvmcloudconnector (2.0.0~b1~git2019062011.4fc9142.really.1.4.1-0ubuntu2~cloud0) ...
Created symlink /etc/systemd/system/multi-user.target.wants/sdkserver.service → /lib/systemd/system/sdkserver.service.
Setting up cpu-checker (0.7-0ubuntu7) ...
Setting up python3-zake (0.2.2-2) ...
Setting up docutils-doc (0.14+dfsg-3) ...
Setting up libcacard0:amd64 (1:2.6.1-1~cloud0) ...
Setting up python-funcsigs (1.0.2-4) ...
Setting up python-olefile (0.45.1-1) ...
Setting up python-requests (2.18.4-2ubuntu0.1) ...
Setting up liblvm2app2.2:amd64 (2.02.176-4.1ubuntu3.18.04.2) ...
Setting up python3-openvswitch (2.12.0-0ubuntu1~cloud0) ...
Setting up libxen-4.9:amd64 (4.9.2-0ubuntu1) ...
Setting up python3-pypowervm (1.1.20-0ubuntu2~cloud0) ...
Setting up python3-ovsdbapp (0.17.0-0ubuntu1~cloud0) ...
Setting up libvirglrenderer0 (0.6.0-2) ...
Setting up python3-pymemcache (1.3.2-3) ...
Setting up ipxe-qemu (1.0.0+git-20180124.fbe8c52d-0ubuntu2.2) ...
Setting up python3-voluptuous (0.9.3-1) ...
Setting up python-pil:amd64 (5.1.0-1) ...
Setting up python3-pyroute2 (0.5.6-0ubuntu1~cloud0) ...
update-alternatives: using /usr/bin/python3-ss2 to provide /usr/bin/ss2 (ss2) in auto mode
update-alternatives: using /usr/bin/python3-pyroute2-cli to provide /usr/bin/pyroute2-cli (pyroute2-cli) in auto mode
Setting up python-rfc3986 (1.2.0-0ubuntu1~cloud0) ...
Setting up qemu-system-gui (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Setting up libfdt1:amd64 (1.4.7-3ubuntu2~cloud0) ...
Setting up python-docutils (0.14+dfsg-3) ...
update-alternatives: using /usr/share/docutils/scripts/python2/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode
Setting up python3-websockify (0.8.0+dfsg1-9) ...
update-alternatives: using /usr/bin/python3-websockify to provide /usr/bin/websockify (websockify) in auto mode
Setting up libibverbs1:amd64 (24.0-2~cloud0) ...
Setting up python3-os-vif (1.17.0-0ubuntu1~cloud0) ...
Setting up python-debtcollector (1.20.0-2~cloud0) ...
Setting up python-babel (2.6.0+dfsg.1-1~cloud0) ...
update-alternatives: using /usr/bin/pybabel-python2 to provide /usr/bin/pybabel (pybabel) in auto mode
Setting up libvirt0:amd64 (5.4.0-0ubuntu5~cloud0) ...
Setting up python3-tooz (1.66.2-0ubuntu1~cloud0) ...
Setting up librdmacm1:amd64 (24.0-2~cloud0) ...
Setting up websockify (0.8.0+dfsg1-9) ...
Setting up librados2 (14.2.2-0ubuntu3~cloud0) ...
Setting up python-stevedore (1:1.30.1-0ubuntu1~cloud0) ...
Setting up libvirt-daemon (5.4.0-0ubuntu5~cloud0) ...
Setting up ibverbs-providers:amd64 (24.0-2~cloud0) ...
Setting up python3-libvirt (5.0.0-1~cloud0) ...
Setting up python-oslo.i18n (3.23.1-0ubuntu1~cloud0) ...
Setting up python3-nova (2:20.0.1-0ubuntu1~cloud0) ...
Setting up nova-api (2:20.0.1-0ubuntu1~cloud0) ...
Created symlink /etc/systemd/system/multi-user.target.wants/nova-api.service → /lib/systemd/system/nova-api.service.
Setting up librbd1 (14.2.2-0ubuntu3~cloud0) ...
Setting up qemu-block-extra:amd64 (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Setting up qemu-utils (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Setting up nova-conductor (2:20.0.1-0ubuntu1~cloud0) ...
Created symlink /etc/systemd/system/multi-user.target.wants/nova-conductor.service → /lib/systemd/system/nova-conductor.service.
Setting up python-oslo.config (1:6.8.1-0ubuntu1~cloud0) ...
update-alternatives: using /usr/bin/python2-oslo-config-generator to provide /usr/bin/oslo-config-generator (oslo-config-generator) in auto mode
update-alternatives: warning: not replacing /usr/bin/oslo-config-generator with a link
Setting up python-novnc (1:0.4+dfsg+1+20131010+gitf68af8af3d-7) ...
Setting up novnc (1:0.4+dfsg+1+20131010+gitf68af8af3d-7) ...
Setting up nova-novncproxy (2:20.0.1-0ubuntu1~cloud0) ...
Created symlink /etc/systemd/system/multi-user.target.wants/nova-novncproxy.service → /lib/systemd/system/nova-novncproxy.service.
Setting up nova-scheduler (2:20.0.1-0ubuntu1~cloud0) ...
Created symlink /etc/systemd/system/multi-user.target.wants/nova-scheduler.service → /lib/systemd/system/nova-scheduler.service.
Setting up qemu-system-common (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Created symlink /etc/systemd/system/multi-user.target.wants/qemu-kvm.service → /lib/systemd/system/qemu-kvm.service.
Setting up libvirt-daemon-driver-storage-rbd (5.4.0-0ubuntu5~cloud0) ...
Setting up qemu-system-x86 (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Setting up qemu-kvm (1:4.0+dfsg-0ubuntu9.2~cloud0) ...
Setting up liblvm2cmd2.02:amd64 (2.02.176-4.1ubuntu3.18.04.2) ...
Setting up dmeventd (2:1.02.145-4.1ubuntu3.18.04.2) ...
Created symlink /etc/systemd/system/sockets.target.wants/dm-event.socket → /lib/systemd/system/dm-event.socket.
dm-event.service is a disabled or a static unit, not starting it.
Setting up lvm2 (2.02.176-4.1ubuntu3.18.04.2) ...
update-initramfs: deferring update (trigger activated)
Created symlink /etc/systemd/system/sysinit.target.wants/blk-availability.service → /lib/systemd/system/blk-availability.service.
Created symlink /etc/systemd/system/sysinit.target.wants/lvm2-monitor.service → /lib/systemd/system/lvm2-monitor.service.
Created symlink /etc/systemd/system/sysinit.target.wants/lvm2-lvmetad.socket → /lib/systemd/system/lvm2-lvmetad.socket.
Created symlink /etc/systemd/system/sysinit.target.wants/lvm2-lvmpolld.socket → /lib/systemd/system/lvm2-lvmpolld.socket.
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Processing triggers for systemd (237-3ubuntu10.33) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Processing triggers for ureadahead (0.100.0-21) ...
ureadahead will be reprofiled on next reboot
Processing triggers for install-info (6.5.0.dfsg.1-2) ...
Processing triggers for initramfs-tools (0.130ubuntu3.9) ...
update-initramfs: Generating /boot/initrd.img-5.3.0-28-generic
root@wei-ThinkPad-X1-Extreme:~# sed -i "s%connection = sqlite:////var/lib/nova/nova_api.sqlite%# &\nconnection=mysql+pymysql://nova:NOVA_DBPASS@localhost/nova_api%;s%connection = sqlite:////var/lib/nova/nova.sqlite%# &\nconnection=mysql+pymysql://nova:NOVA_DBPASS@localhost/nova%;s%^\[DEFAULT\]%&\ntransport_url=rabbit://openstack:RABBIT_PASS@localhost:5672/\nmy_ip=192.168.0.106\nuse_neutron=true\nfirewall_driver=nova.virt.firewall.NoopFirewallDriver\n%;s/\[api\]/&\nauth_strategy=keystone/;s%^\[keystone_authtoken\]$%&\nwww_authenticate_uri=http://controller:5000/\nauth_url=http://controller:5000/\nmemcached_servers=localhost:11211\nauth_type=password\nproject_domain_name=default\nuser_domain_name=default\nproject_name=service\nusername=nova\npassword=NOVA_PASS%" /etc/nova/nova.conf
root@wei-ThinkPad-X1-Extreme:~# sed -i "s/^\[vnc\]/&\nenabled=true\nserver_listen=\$my_ip\nserver_proxyclient_address=\$my_ip/;s%^\[glance\]$%&\napi_servers=http://controller:9292%;s%^\[oslo_concurrency\]%&\nlock_path=/var/lib/nova/tmp\n%;s%^\[placement\]$%&\nregion_name=RegionOne\nproject_domain_name=default\nproject_name=service\nauth_type=password\nuser_domain_name=Default\nauth_url=http://controller:5000/v3\nusername=placement\npassword=PLACEMENT_PASS%" /etc/nova/nova.conf
root@wei-ThinkPad-X1-Extreme:~# sed -i "s%^\[neutron\]$%&\nauth_url=http://controller:5000\nauth_type=password\nproject_domain_name=default\nuser_domain_name=default\nregion_name=RegionOne\nproject_name=service\nusername=neutron\npassword=NEUTRON_PASS\nservice_metadata_proxy=true\nmetadata_proxy_shared_secret=METADATA_SECRET%" /etc/nova/nova.conf
root@wei-ThinkPad-X1-Extreme:~# sed -i "s%^log_dir = /var/log/nova$%# &%" /etc/nova/nova.conf
wei@wei-ThinkPad-X1-Extreme:~$ sudo cat /etc/nova/nova.conf | grep "^[\[a-z].*"
[DEFAULT]
transport_url=rabbit://openstack:RABBIT_PASS@localhost:5672/
my_ip=192.168.0.106
use_neutron=true
firewall_driver=nova.virt.firewall.NoopFirewallDriver
lock_path = /var/lock/nova
state_path = /var/lib/nova
[api]
auth_strategy=keystone
[api_database]
connection=mysql+pymysql://nova:NOVA_DBPASS@localhost/nova_api
[barbican]
[cache]
[cinder]
[compute]
[conductor]
[console]
[consoleauth]
[cors]
[database]
connection=mysql+pymysql://nova:NOVA_DBPASS@localhost/nova
[devices]
[ephemeral_storage_encryption]
[filter_scheduler]
[glance]
api_servers=http://controller:9292
[guestfs]
[healthcheck]
[hyperv]
[ironic]
[key_manager]
[keystone]
[keystone_authtoken]
www_authenticate_uri=http://controller:5000/
auth_url=http://controller:5000/
memcached_servers=localhost:11211
auth_type=password
project_domain_name=default
user_domain_name=default
project_name=service
username=nova
password=NOVA_PASS
[libvirt]
[metrics]
[mks]
[neutron]
auth_url=http://controller:5000
auth_type=password
project_domain_name=default
user_domain_name=default
region_name=RegionOne
project_name=service
username=neutron
password=NEUTRON_PASS
service_metadata_proxy=true
metadata_proxy_shared_secret=METADATA_SECRET
[notifications]
[osapi_v21]
[oslo_concurrency]
lock_path=/var/lib/nova/tmp
[oslo_messaging_amqp]
[oslo_messaging_kafka]
[oslo_messaging_notifications]
[oslo_messaging_rabbit]
[oslo_middleware]
[oslo_policy]
[pci]
[placement]
regin_name=RegionOne
project_domain_name=default
project_name=service
auth_type=password
user_domain_name=default
auth_url=http://controller:5000/v3
username=placement
password=PLACEMENT_PASS
[powervm]
[privsep]
[profiler]
[quota]
[rdp]
[remote_debug]
[scheduler]
[serial_console]
[service_user]
[spice]
[upgrade_levels]
[vault]
[vendordata_dynamic_auth]
[vmware]
[vnc]
enabled=true
server_listen=$my_ip
server_proxyclient_address=$my_ip
[workarounds]
[wsgi]
[xenserver]
[xvp]
[zvm]
[cells]
enable = False
[os_region_name]
openstack =
root@wei-ThinkPad-X1-Extreme:~# su -s /bin/sh -c "nova-manage api_db sync" nova
2020-02-01 04:30:32.187 1451 INFO migrate.versioning.api [-] 0 -> 1...
2020-02-01 04:30:32.209 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.209 1451 INFO migrate.versioning.api [-] 1 -> 2...
2020-02-01 04:30:32.234 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.234 1451 INFO migrate.versioning.api [-] 2 -> 3...
2020-02-01 04:30:32.256 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.256 1451 INFO migrate.versioning.api [-] 3 -> 4...
2020-02-01 04:30:32.272 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.273 1451 INFO migrate.versioning.api [-] 4 -> 5...
2020-02-01 04:30:32.411 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.411 1451 INFO migrate.versioning.api [-] 5 -> 6...
2020-02-01 04:30:32.455 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.455 1451 INFO migrate.versioning.api [-] 6 -> 7...
2020-02-01 04:30:32.490 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.490 1451 INFO migrate.versioning.api [-] 7 -> 8...
2020-02-01 04:30:32.497 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.497 1451 INFO migrate.versioning.api [-] 8 -> 9...
2020-02-01 04:30:32.503 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.504 1451 INFO migrate.versioning.api [-] 9 -> 10...
2020-02-01 04:30:32.509 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.509 1451 INFO migrate.versioning.api [-] 10 -> 11...
2020-02-01 04:30:32.516 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.516 1451 INFO migrate.versioning.api [-] 11 -> 12...
2020-02-01 04:30:32.521 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.521 1451 INFO migrate.versioning.api [-] 12 -> 13...
2020-02-01 04:30:32.561 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.561 1451 INFO migrate.versioning.api [-] 13 -> 14...
2020-02-01 04:30:32.578 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.578 1451 INFO migrate.versioning.api [-] 14 -> 15...
2020-02-01 04:30:32.669 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.670 1451 INFO migrate.versioning.api [-] 15 -> 16...
2020-02-01 04:30:32.814 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.815 1451 INFO migrate.versioning.api [-] 16 -> 17...
2020-02-01 04:30:32.897 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.898 1451 INFO migrate.versioning.api [-] 17 -> 18...
2020-02-01 04:30:32.995 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:32.996 1451 INFO migrate.versioning.api [-] 18 -> 19...
2020-02-01 04:30:33.011 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.011 1451 INFO migrate.versioning.api [-] 19 -> 20...
2020-02-01 04:30:33.034 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.034 1451 INFO migrate.versioning.api [-] 20 -> 21...
2020-02-01 04:30:33.037 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.037 1451 INFO migrate.versioning.api [-] 21 -> 22...
2020-02-01 04:30:33.040 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.041 1451 INFO migrate.versioning.api [-] 22 -> 23...
2020-02-01 04:30:33.043 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.043 1451 INFO migrate.versioning.api [-] 23 -> 24...
2020-02-01 04:30:33.046 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.046 1451 INFO migrate.versioning.api [-] 24 -> 25...
2020-02-01 04:30:33.051 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.051 1451 INFO migrate.versioning.api [-] 25 -> 26...
2020-02-01 04:30:33.062 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.062 1451 INFO migrate.versioning.api [-] 26 -> 27...
2020-02-01 04:30:33.177 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.177 1451 INFO migrate.versioning.api [-] 27 -> 28...
2020-02-01 04:30:33.204 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.204 1451 INFO migrate.versioning.api [-] 28 -> 29...
2020-02-01 04:30:33.224 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.224 1451 INFO migrate.versioning.api [-] 29 -> 30...
2020-02-01 04:30:33.232 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.232 1451 INFO migrate.versioning.api [-] 30 -> 31...
2020-02-01 04:30:33.236 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.237 1451 INFO migrate.versioning.api [-] 31 -> 32...
2020-02-01 04:30:33.240 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.240 1451 INFO migrate.versioning.api [-] 32 -> 33...
2020-02-01 04:30:33.244 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.244 1451 INFO migrate.versioning.api [-] 33 -> 34...
2020-02-01 04:30:33.247 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.247 1451 INFO migrate.versioning.api [-] 34 -> 35...
2020-02-01 04:30:33.251 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.251 1451 INFO migrate.versioning.api [-] 35 -> 36...
2020-02-01 04:30:33.254 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.255 1451 INFO migrate.versioning.api [-] 36 -> 37...
2020-02-01 04:30:33.257 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.257 1451 INFO migrate.versioning.api [-] 37 -> 38...
2020-02-01 04:30:33.260 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.260 1451 INFO migrate.versioning.api [-] 38 -> 39...
2020-02-01 04:30:33.263 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.263 1451 INFO migrate.versioning.api [-] 39 -> 40...
2020-02-01 04:30:33.266 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.267 1451 INFO migrate.versioning.api [-] 40 -> 41...
2020-02-01 04:30:33.290 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.290 1451 INFO migrate.versioning.api [-] 41 -> 42...
2020-02-01 04:30:33.315 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.315 1451 INFO migrate.versioning.api [-] 42 -> 43...
2020-02-01 04:30:33.333 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.334 1451 INFO migrate.versioning.api [-] 43 -> 44...
2020-02-01 04:30:33.386 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.386 1451 INFO migrate.versioning.api [-] 44 -> 45...
2020-02-01 04:30:33.392 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.392 1451 INFO migrate.versioning.api [-] 45 -> 46...
2020-02-01 04:30:33.399 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.399 1451 INFO migrate.versioning.api [-] 46 -> 47...
2020-02-01 04:30:33.405 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.405 1451 INFO migrate.versioning.api [-] 47 -> 48...
2020-02-01 04:30:33.411 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.411 1451 INFO migrate.versioning.api [-] 48 -> 49...
2020-02-01 04:30:33.417 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.417 1451 INFO migrate.versioning.api [-] 49 -> 50...
2020-02-01 04:30:33.438 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.438 1451 INFO migrate.versioning.api [-] 50 -> 51...
2020-02-01 04:30:33.529 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.529 1451 INFO migrate.versioning.api [-] 51 -> 52...
2020-02-01 04:30:33.552 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.552 1451 INFO migrate.versioning.api [-] 52 -> 53...
2020-02-01 04:30:33.558 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.558 1451 INFO migrate.versioning.api [-] 53 -> 54...
2020-02-01 04:30:33.563 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.564 1451 INFO migrate.versioning.api [-] 54 -> 55...
2020-02-01 04:30:33.569 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.569 1451 INFO migrate.versioning.api [-] 55 -> 56...
2020-02-01 04:30:33.574 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.575 1451 INFO migrate.versioning.api [-] 56 -> 57...
2020-02-01 04:30:33.579 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.580 1451 INFO migrate.versioning.api [-] 57 -> 58...
2020-02-01 04:30:33.601 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.602 1451 INFO migrate.versioning.api [-] 58 -> 59...
2020-02-01 04:30:33.625 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.625 1451 INFO migrate.versioning.api [-] 59 -> 60...
2020-02-01 04:30:33.646 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.646 1451 INFO migrate.versioning.api [-] 60 -> 61...
2020-02-01 04:30:33.673 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.673 1451 INFO migrate.versioning.api [-] 61 -> 62...
2020-02-01 04:30:33.702 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.702 1451 INFO migrate.versioning.api [-] 62 -> 63...
2020-02-01 04:30:33.707 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.707 1451 INFO migrate.versioning.api [-] 63 -> 64...
2020-02-01 04:30:33.711 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.712 1451 INFO migrate.versioning.api [-] 64 -> 65...
2020-02-01 04:30:33.717 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.717 1451 INFO migrate.versioning.api [-] 65 -> 66...
2020-02-01 04:30:33.722 1451 INFO migrate.versioning.api [-] done
2020-02-01 04:30:33.722 1451 INFO migrate.versioning.api [-] 66 -> 67...
2020-02-01 04:30:33.727 1451 INFO migrate.versioning.api [-] done
root@wei-ThinkPad-X1-Extreme:~# su -s /bin/sh -c "nova-manage cell_v2 map_cell0" nova
root@wei-ThinkPad-X1-Extreme:~# su -s /bin/sh -c "nova-manage cell_v2 create_cell --name=cell1 --verbose" nova
e4fcdbfd-7781-444a-a035-1d9638b0ef13
root@wei-ThinkPad-X1-Extreme:~# su -s /bin/sh -c "nova-manage db sync" nova
2020-02-01 04:33:37.230 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 215 -> 216...
/usr/lib/python3/dist-packages/pymysql/cursors.py:165: Warning: (1831, 'Duplicate index `block_device_mapping_instance_uuid_virtual_name_device_name_idx`. This is deprecated and will be disallowed in a future release.')
result = self._query(query)
2020-02-01 04:33:39.891 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.891 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 216 -> 217...
2020-02-01 04:33:39.894 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.894 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 217 -> 218...
2020-02-01 04:33:39.897 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.897 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 218 -> 219...
2020-02-01 04:33:39.899 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.899 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 219 -> 220...
2020-02-01 04:33:39.902 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.902 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 220 -> 221...
2020-02-01 04:33:39.906 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.906 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 221 -> 222...
2020-02-01 04:33:39.909 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.909 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 222 -> 223...
2020-02-01 04:33:39.911 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.911 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 223 -> 224...
2020-02-01 04:33:39.914 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.914 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 224 -> 225...
2020-02-01 04:33:39.917 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.917 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 225 -> 226...
2020-02-01 04:33:39.921 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.921 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 226 -> 227...
2020-02-01 04:33:39.925 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.926 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 227 -> 228...
2020-02-01 04:33:39.949 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.949 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 228 -> 229...
2020-02-01 04:33:39.988 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:39.989 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 229 -> 230...
2020-02-01 04:33:40.059 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.060 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 230 -> 231...
2020-02-01 04:33:40.111 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.112 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 231 -> 232...
2020-02-01 04:33:40.268 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.268 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 232 -> 233...
2020-02-01 04:33:40.324 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.325 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 233 -> 234...
2020-02-01 04:33:40.350 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.350 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 234 -> 235...
2020-02-01 04:33:40.355 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.355 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 235 -> 236...
2020-02-01 04:33:40.359 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.359 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 236 -> 237...
2020-02-01 04:33:40.363 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.363 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 237 -> 238...
2020-02-01 04:33:40.366 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.367 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 238 -> 239...
2020-02-01 04:33:40.370 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.370 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 239 -> 240...
2020-02-01 04:33:40.373 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.373 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 240 -> 241...
2020-02-01 04:33:40.375 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.375 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 241 -> 242...
2020-02-01 04:33:40.378 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.378 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 242 -> 243...
2020-02-01 04:33:40.381 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.381 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 243 -> 244...
2020-02-01 04:33:40.395 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.395 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 244 -> 245...
2020-02-01 04:33:40.562 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.563 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 245 -> 246...
2020-02-01 04:33:40.604 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.605 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 246 -> 247...
2020-02-01 04:33:40.686 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.686 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 247 -> 248...
2020-02-01 04:33:40.689 2281 INFO 248_add_expire_reservations_index [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] Skipped adding reservations_deleted_expire_idx because an equivalent index already exists.
2020-02-01 04:33:40.693 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.693 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 248 -> 249...
2020-02-01 04:33:40.705 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] done
2020-02-01 04:33:40.705 2281 INFO migrate.versioning.api [req-68f62956-76fb-4456-931a-03e65ca24844 - - - - -] 249 -> 250...