Skip to content
Snippets Groups Projects
Commit 32fa97f7 authored by Rowan Powell's avatar Rowan Powell
Browse files

Added clientmanager, clients distributed round robin

parent da4dcace
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -126,6 +126,16 @@ class DatabaseManager():
req = urllib.request.Request(self.influx_url + '/query ', query)
urllib.request.urlopen(req)
class ClientManager():
def __init__(self, servers):
self.servers = servers
def generate_new_clients(self, amount):
assigned_count = 0
while(assigned_count < amount):
for server in self.servers:
if(assigned_count < amount):
server.assign_client(DemoClient())
assigned_count += 1
# DemoServer is the class that simulates the behaviour of the MPEG-DASH server
class DemoServer(object):
......@@ -137,18 +147,14 @@ class DemoServer(object):
self.influxURL = db_url # InfluxDB connection URL
self.currentTime = int(round(time.time() * 1000)) # The current time
self._configure(server_id, server_location)
self.clients = []
def shutdown(self):
print("Shutting down")
self.configure_VM('stopping')
def generate_clients(self):
self.clients = []
for i in range(self.clientCount):
self.clients.append(DemoClient())
print('Number of clients: ' + str(len(self.clients)))
def reportStatus(self):
def assign_client(self, new_client):
self.clients.append(new_client)
print('Number of clients: ' + str(len(self.clients)))
def configure_server(self, server_id, server_location):
......@@ -263,7 +269,7 @@ class DemoServer(object):
self.configure_VM('running')
time.sleep(1)
self.configure_server(server_id, server_location)
self.generate_clients()
#self.generate_clients()
def _cpuUsage(self, clientCount):
cpuUsage = randint(0, 10)
......@@ -372,16 +378,24 @@ time.sleep(2)
database_manager.database_up()
time.sleep(2)
# configure servers
demoServer = DemoServer(clients, iterations, 'http://localhost:8186', 'testDB', "Server1", "Southampton")
demoServer_southampton = DemoServer(clients, iterations, 'http://localhost:8186', 'testDB', "Server1", "Southampton")
demoServer_bristol = DemoServer(clients, iterations, 'http://localhost:8186', 'testDB', "Server2", "Bristol")
server_list = [demoServer_southampton, demoServer_bristol]
client_manager = ClientManager(server_list)
client_manager.generate_new_clients(20)
# Start simulation
print("Starting simulation")
while True:
itCount = demoServer.iterateService()
for server in server_list:
itCount = server.iterateService()
pcDone = round((itCount / iterations) * 100)
print("Simulation remaining (%): " + str(pcDone) + " \r", end='')
if itCount == 0:
break
demoServer.shutdown()
for server in server_list:
server.shutdown()
print("\nFinished")
......@@ -47,7 +47,7 @@
[ 0.000000] NODE_DATA(0) allocated [mem 0x7ffeb000-0x7ffeffff]
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: cpu 0, msr 0:7ffe3001, primary cpu clock
[ 0.000000] kvm-clock: using sched offset of 3405810368 cycles
[ 0.000000] kvm-clock: using sched offset of 3793180724 cycles
[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
......@@ -90,597 +90,588 @@
[ 0.000000] console [tty1] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] tsc: Detected 2693.760 MHz processor
[ 0.494244] Calibrating delay loop (skipped) preset value.. 5387.52 BogoMIPS (lpj=10775040)
[ 0.498784] pid_max: default: 32768 minimum: 301
[ 0.502598] ACPI: Core revision 20150930
[ 0.504318] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.510071] Security Framework initialized
[ 0.514773] Yama: becoming mindful.
[ 0.515407] AppArmor: AppArmor initialized
[ 0.523267] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.574198] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.609933] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.621732] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.643707] Initializing cgroup subsys io
[ 0.644399] Initializing cgroup subsys memory
[ 0.657504] Initializing cgroup subsys devices
[ 0.659472] Initializing cgroup subsys freezer
[ 0.660207] Initializing cgroup subsys net_cls
[ 0.660945] Initializing cgroup subsys perf_event
[ 0.661703] Initializing cgroup subsys net_prio
[ 0.663656] Initializing cgroup subsys hugetlb
[ 0.664385] Initializing cgroup subsys pids
[ 0.665172] CPU: Physical Processor ID: 0
[ 0.666812] mce: CPU supports 0 MCE banks
[ 0.670142] process: using mwait in idle threads
[ 0.679084] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.680016] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.694999] Freeing SMP alternatives memory: 32K
[ 0.733929] ftrace: allocating 32154 entries in 126 pages
[ 0.779978] smpboot: APIC(0) Converting physical 0 to logical package 0
[ 0.863130] smpboot: Max logical packages: 1
[ 0.964479] x2apic enabled
[ 0.975116] Switched APIC routing to physical x2apic.
[ 1.004902] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 1.162641] APIC calibration not consistent with PM-Timer: 101ms instead of 100ms
[ 1.179445] APIC delta adjusted to PM-Timer: 6248954 (6314752)
[ 1.186654] smpboot: CPU0: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz (family: 0x6, model: 0x45, stepping: 0x1)
[ 1.203662] Performance Events: unsupported p6 CPU model 69 no PMU driver, software events only.
[ 1.226663] KVM setup paravirtual spinlock
[ 1.231339] x86: Booted up 1 node, 1 CPUs
[ 1.233337] smpboot: Total of 1 processors activated (5387.52 BogoMIPS)
[ 1.238857] devtmpfs: initialized
[ 1.252438] evm: security.selinux
[ 1.257764] evm: security.SMACK64
[ 1.260100] evm: security.SMACK64EXEC
[ 1.262067] evm: security.SMACK64TRANSMUTE
[ 1.264085] evm: security.SMACK64MMAP
[ 1.270710] evm: security.ima
[ 1.271503] evm: security.capability
[ 1.277593] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 1.280721] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 1.287075] pinctrl core: initialized pinctrl subsystem
[ 1.293181] RTC time: 16:13:53, date: 01/05/18
[ 1.295141] NET: Registered protocol family 16
[ 1.296019] cpuidle: using governor ladder
[ 1.296711] cpuidle: using governor menu
[ 1.297376] PCCT header not found.
[ 1.299905] ACPI: bus type PCI registered
[ 1.300592] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 1.301642] PCI: Using configuration type 1 for base access
[ 1.306175] ACPI: Added _OSI(Module Device)
[ 1.308833] ACPI: Added _OSI(Processor Device)
[ 1.309563] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 1.310335] ACPI: Added _OSI(Processor Aggregator Device)
[ 1.315519] ACPI: Executed 1 blocks of module-level executable AML code
[ 1.320494] ACPI: Interpreter enabled
[ 1.327400] ACPI: (supports S0 S5)
[ 1.329163] ACPI: Using IOAPIC for interrupt routing
[ 1.330089] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 1.334344] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 1.337184] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 1.341713] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[ 1.347957] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 1.358394] PCI host bridge to bus 0000:00
[ 1.359087] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 1.363046] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 1.367809] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 1.369064] pci_bus 0000:00: root bus resource [mem 0x80000000-0xffdfffff window]
[ 1.375739] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 1.380063] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 1.381099] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 1.385587] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 1.390118] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 1.423192] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
[ 1.504419] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
[ 1.568792] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
[ 1.608020] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
[ 1.634324] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
[ 1.640037] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
[ 1.641362] ACPI: Enabled 2 GPEs in block 00 to 07
[ 1.642398] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 1.646513] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 1.647866] vgaarb: loaded
[ 1.648405] vgaarb: bridge control possible 0000:00:02.0
[ 1.650701] SCSI subsystem initialized
[ 1.659917] ACPI: bus type USB registered
[ 1.691614] usbcore: registered new interface driver usbfs
[ 1.694468] usbcore: registered new interface driver hub
[ 1.697431] usbcore: registered new device driver usb
[ 1.698362] PCI: Using ACPI for IRQ routing
[ 1.699326] NetLabel: Initializing
[ 1.699951] NetLabel: domain hash size = 128
[ 1.702363] NetLabel: protocols = UNLABELED CIPSOv4
[ 1.725962] NetLabel: unlabeled traffic allowed by default
[ 1.726923] amd_nb: Cannot enumerate AMD northbridges
[ 1.729743] clocksource: Switched to clocksource kvm-clock
[ 1.748824] AppArmor: AppArmor Filesystem Enabled
[ 1.787045] pnp: PnP ACPI init
[ 1.809799] pnp: PnP ACPI: found 3 devices
[ 1.815879] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 1.837990] NET: Registered protocol family 2
[ 1.856551] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 1.859418] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[ 1.868178] TCP: Hash tables configured (established 16384 bind 16384)
[ 1.873152] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 1.876278] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 1.877457] NET: Registered protocol family 1
[ 1.878338] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 1.879429] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 1.880627] Unpacking initramfs...
[ 4.554673] Freeing initrd memory: 10836K
[ 4.583615] RAPL PMU detected, API unit is 2^-32 Joules, 4 fixed counters 10737418240 ms ovfl timer
[ 4.587999] hw unit of domain pp0-core 2^-0 Joules
[ 4.592007] hw unit of domain package 2^-0 Joules
[ 4.600792] hw unit of domain dram 2^-0 Joules
[ 4.614895] hw unit of domain pp1-gpu 2^-0 Joules
[ 4.616120] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 4.625557] Scanning for low memory corruption every 60 seconds
[ 4.663947] audit: initializing netlink subsys (disabled)
[ 4.678675] audit: type=2000 audit(1515168841.362:1): initialized
[ 4.699945] Initialise system trusted keyring
[ 4.707459] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 4.712274] zbud: loaded
[ 4.717418] VFS: Disk quotas dquot_6.6.0
[ 4.727405] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 4.729285] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 4.746371] fuse init (API version 7.23)
[ 4.750615] Key type big_key registered
[ 4.756013] Allocating IMA MOK and blacklist keyrings.
[ 4.757477] Key type asymmetric registered
[ 4.760093] Asymmetric key parser 'x509' registered
[ 4.764697] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[ 4.774892] io scheduler noop registered
[ 4.775885] io scheduler deadline registered (default)
[ 4.785243] io scheduler cfq registered
[ 4.787583] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 4.790390] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 4.793144] ACPI: AC Adapter [AC] (on-line)
[ 4.797577] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 4.799512] ACPI: Power Button [PWRF]
[ 4.803911] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[ 4.811064] ACPI: Sleep Button [SLPF]
[ 4.816061] ACPI: Battery Slot [BAT0] (battery present)
[ 4.822228] GHES: HEST is not enabled!
[ 4.830069] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 4.870932] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 4.884823] Linux agpgart interface v0.103
[ 4.903559] loop: module loaded
[ 4.914996] scsi host0: ata_piix
[ 4.922473] scsi host1: ata_piix
[ 4.923381] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
[ 4.926760] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
[ 4.941635] libphy: Fixed MDIO Bus: probed
[ 4.947102] tun: Universal TUN/TAP device driver, 1.6
[ 4.964840] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 4.967773] PPP generic driver version 2.4.2
[ 4.971834] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.990452] ehci-pci: EHCI PCI platform driver
[ 4.991625] ehci-platform: EHCI generic platform driver
[ 4.999333] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 5.028855] ohci-pci: OHCI PCI platform driver
[ 5.038359] ohci-platform: OHCI generic platform driver
[ 5.044054] uhci_hcd: USB Universal Host Controller Interface driver
[ 5.050043] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 5.069853] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 5.072974] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 5.078356] mousedev: PS/2 mouse device common for all mice
[ 5.090345] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 5.098935] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
[ 5.108384] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
[ 5.111234] i2c /dev entries driver
[ 5.112265] device-mapper: uevent: version 1.0.3
[ 5.124019] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[ 5.130853] ledtrig-cpu: registered to indicate activity on CPUs
[ 5.135780] NET: Registered protocol family 10
[ 5.144249] NET: Registered protocol family 17
[ 5.146948] Key type dns_resolver registered
[ 5.149465] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x0
[ 5.150911] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 5.155915] registered taskstats version 1
[ 5.156952] Loading compiled-in X.509 certificates
[ 5.159059] Loaded X.509 cert 'Build time autogenerated kernel key: 7431eaeda5a51458aeb00f8de0f18f89e178d882'
[ 5.178945] zswap: loaded using pool lzo/zbud
[ 5.184498] Key type trusted registered
[ 5.195240] Key type encrypted registered
[ 5.203650] AppArmor: AppArmor sha1 policy hashing enabled
[ 5.227584] ima: No TPM chip found, activating TPM-bypass!
[ 5.228863] evm: HMAC attrs: 0x1
[ 5.230070] Magic number: 2:209:236
[ 5.232575] rtc_cmos rtc_cmos: hash matches
[ 5.240314] rtc_cmos rtc_cmos: setting system clock to 2018-01-05 16:13:57 UTC (1515168837)
[ 5.243930] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 5.245273] EDD information not available.
[ 5.257035] Freeing unused kernel memory: 1492K
[ 5.264822] Write protecting the kernel read-only data: 14336k
[ 5.267084] Freeing unused kernel memory: 1744K
[ 5.285834] Freeing unused kernel memory: 108K
[ 0.686180] Calibrating delay loop (skipped) preset value.. 5387.52 BogoMIPS (lpj=10775040)
[ 0.697404] pid_max: default: 32768 minimum: 301
[ 0.699763] ACPI: Core revision 20150930
[ 0.705093] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.718587] Security Framework initialized
[ 0.719410] Yama: becoming mindful.
[ 0.723275] AppArmor: AppArmor initialized
[ 0.739243] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.753223] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.756602] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.760402] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.761604] Initializing cgroup subsys io
[ 0.763499] Initializing cgroup subsys memory
[ 0.764243] Initializing cgroup subsys devices
[ 0.764972] Initializing cgroup subsys freezer
[ 0.765695] Initializing cgroup subsys net_cls
[ 0.770156] Initializing cgroup subsys perf_event
[ 0.770945] Initializing cgroup subsys net_prio
[ 0.771699] Initializing cgroup subsys hugetlb
[ 0.772429] Initializing cgroup subsys pids
[ 0.774323] CPU: Physical Processor ID: 0
[ 0.775908] mce: CPU supports 0 MCE banks
[ 0.776609] process: using mwait in idle threads
[ 0.777361] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.779468] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.793702] Freeing SMP alternatives memory: 32K
[ 0.811917] ftrace: allocating 32154 entries in 126 pages
[ 0.861597] smpboot: APIC(0) Converting physical 0 to logical package 0
[ 0.968147] smpboot: Max logical packages: 1
[ 1.041852] x2apic enabled
[ 1.050482] Switched APIC routing to physical x2apic.
[ 1.058622] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 1.167338] smpboot: CPU0: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz (family: 0x6, model: 0x45, stepping: 0x1)
[ 1.266773] Performance Events: unsupported p6 CPU model 69 no PMU driver, software events only.
[ 1.282174] KVM setup paravirtual spinlock
[ 1.310082] x86: Booted up 1 node, 1 CPUs
[ 1.329413] smpboot: Total of 1 processors activated (5387.52 BogoMIPS)
[ 1.330632] devtmpfs: initialized
[ 1.341423] evm: security.selinux
[ 1.342043] evm: security.SMACK64
[ 1.342641] evm: security.SMACK64EXEC
[ 1.343278] evm: security.SMACK64TRANSMUTE
[ 1.382943] evm: security.SMACK64MMAP
[ 1.406236] evm: security.ima
[ 1.424982] evm: security.capability
[ 1.425757] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 1.440161] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 1.441180] pinctrl core: initialized pinctrl subsystem
[ 1.444314] RTC time: 16:02:58, date: 01/10/18
[ 1.445170] NET: Registered protocol family 16
[ 1.446044] cpuidle: using governor ladder
[ 1.446742] cpuidle: using governor menu
[ 1.468865] PCCT header not found.
[ 1.524522] ACPI: bus type PCI registered
[ 1.566745] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 1.645537] PCI: Using configuration type 1 for base access
[ 1.672686] ACPI: Added _OSI(Module Device)
[ 1.676340] ACPI: Added _OSI(Processor Device)
[ 1.700506] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 1.721470] ACPI: Added _OSI(Processor Aggregator Device)
[ 1.766551] ACPI: Executed 1 blocks of module-level executable AML code
[ 1.786668] ACPI: Interpreter enabled
[ 1.792623] ACPI: (supports S0 S5)
[ 1.796604] ACPI: Using IOAPIC for interrupt routing
[ 1.804121] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 1.826498] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 1.840555] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 1.843561] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[ 1.846227] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 1.851334] PCI host bridge to bus 0000:00
[ 1.855620] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 1.856638] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 1.857641] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 1.858887] pci_bus 0000:00: root bus resource [mem 0x80000000-0xffdfffff window]
[ 1.860310] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 1.862642] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 1.863688] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 1.864656] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 1.869208] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 1.896346] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
[ 1.907710] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
[ 1.927363] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
[ 2.005583] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
[ 2.006876] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
[ 2.016936] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
[ 2.065644] ACPI: Enabled 2 GPEs in block 00 to 07
[ 2.104831] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 2.105705] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 2.110167] vgaarb: loaded
[ 2.110698] vgaarb: bridge control possible 0000:00:02.0
[ 2.111717] SCSI subsystem initialized
[ 2.123914] ACPI: bus type USB registered
[ 2.133063] usbcore: registered new interface driver usbfs
[ 2.156779] usbcore: registered new interface driver hub
[ 2.161226] usbcore: registered new device driver usb
[ 2.162156] PCI: Using ACPI for IRQ routing
[ 2.163093] NetLabel: Initializing
[ 2.163707] NetLabel: domain hash size = 128
[ 2.166529] NetLabel: protocols = UNLABELED CIPSOv4
[ 2.185748] NetLabel: unlabeled traffic allowed by default
[ 2.186695] amd_nb: Cannot enumerate AMD northbridges
[ 2.190684] clocksource: Switched to clocksource kvm-clock
[ 2.218550] AppArmor: AppArmor Filesystem Enabled
[ 2.238211] pnp: PnP ACPI init
[ 2.240025] pnp: PnP ACPI: found 3 devices
[ 2.257078] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 2.260434] NET: Registered protocol family 2
[ 2.263337] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 2.264582] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[ 2.282587] TCP: Hash tables configured (established 16384 bind 16384)
[ 2.302791] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 2.320837] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 2.323416] NET: Registered protocol family 1
[ 2.326539] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 2.330390] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 2.333287] Unpacking initramfs...
[ 4.252491] Freeing initrd memory: 10836K
[ 4.261579] RAPL PMU detected, API unit is 2^-32 Joules, 4 fixed counters 10737418240 ms ovfl timer
[ 4.263018] hw unit of domain pp0-core 2^-0 Joules
[ 4.284766] hw unit of domain package 2^-0 Joules
[ 4.285570] hw unit of domain dram 2^-0 Joules
[ 4.299362] hw unit of domain pp1-gpu 2^-0 Joules
[ 4.306863] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 4.317959] Scanning for low memory corruption every 60 seconds
[ 4.319104] audit: initializing netlink subsys (disabled)
[ 4.374065] audit: type=2000 audit(1515600184.733:1): initialized
[ 4.415051] Initialise system trusted keyring
[ 4.454678] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 4.461765] zbud: loaded
[ 4.463865] VFS: Disk quotas dquot_6.6.0
[ 4.468012] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 4.469228] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 4.472511] fuse init (API version 7.23)
[ 4.473293] Key type big_key registered
[ 4.473974] Allocating IMA MOK and blacklist keyrings.
[ 4.477739] Key type asymmetric registered
[ 4.513930] Asymmetric key parser 'x509' registered
[ 4.531746] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[ 4.548022] io scheduler noop registered
[ 4.581627] io scheduler deadline registered (default)
[ 4.605420] io scheduler cfq registered
[ 4.620851] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 4.622890] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 4.623997] ACPI: AC Adapter [AC] (on-line)
[ 4.624755] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 4.627195] ACPI: Power Button [PWRF]
[ 4.627923] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[ 4.635686] ACPI: Sleep Button [SLPF]
[ 4.636939] ACPI: Battery Slot [BAT0] (battery present)
[ 4.637791] GHES: HEST is not enabled!
[ 4.638530] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 4.665891] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 4.691994] Linux agpgart interface v0.103
[ 4.693466] loop: module loaded
[ 4.694458] scsi host0: ata_piix
[ 4.697119] scsi host1: ata_piix
[ 4.699197] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
[ 4.703683] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
[ 4.710545] libphy: Fixed MDIO Bus: probed
[ 4.711263] tun: Universal TUN/TAP device driver, 1.6
[ 4.722646] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 4.745365] PPP generic driver version 2.4.2
[ 4.780619] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.806606] ehci-pci: EHCI PCI platform driver
[ 4.809064] ehci-platform: EHCI generic platform driver
[ 4.811425] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 4.814502] ohci-pci: OHCI PCI platform driver
[ 4.840307] ohci-platform: OHCI generic platform driver
[ 4.841144] uhci_hcd: USB Universal Host Controller Interface driver
[ 4.851176] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 4.871385] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 4.872183] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 4.873082] mousedev: PS/2 mouse device common for all mice
[ 4.882606] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 4.894678] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
[ 4.915298] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
[ 4.916282] i2c /dev entries driver
[ 4.918910] device-mapper: uevent: version 1.0.3
[ 4.927725] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[ 4.929112] ledtrig-cpu: registered to indicate activity on CPUs
[ 4.947819] NET: Registered protocol family 10
[ 4.989518] NET: Registered protocol family 17
[ 4.994755] Key type dns_resolver registered
[ 4.998671] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x0
[ 4.999907] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 5.023782] registered taskstats version 1
[ 5.030819] Loading compiled-in X.509 certificates
[ 5.037033] Loaded X.509 cert 'Build time autogenerated kernel key: 7431eaeda5a51458aeb00f8de0f18f89e178d882'
[ 5.052499] zswap: loaded using pool lzo/zbud
[ 5.059321] Key type trusted registered
[ 5.081194] Key type encrypted registered
[ 5.088608] AppArmor: AppArmor sha1 policy hashing enabled
[ 5.091485] ima: No TPM chip found, activating TPM-bypass!
[ 5.095099] evm: HMAC attrs: 0x1
[ 5.096044] Magic number: 2:378:34
[ 5.099644] rtc_cmos rtc_cmos: setting system clock to 2018-01-10 16:03:01 UTC (1515600181)
[ 5.102270] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 5.103207] EDD information not available.
[ 5.104996] Freeing unused kernel memory: 1492K
[ 5.105738] Write protecting the kernel read-only data: 14336k
[ 5.106930] Freeing unused kernel memory: 1744K
[ 5.108047] Freeing unused kernel memory: 108K
Loading, please wait...
starting version[ 5.302761] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
starting version[ 5.116899] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
229
[ 5.312041] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.328888] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.340831] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.350070] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.378728] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.392327] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.404648] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.409836] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.422705] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.508506] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[ 5.522306] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 5.535939] Fusion MPT base driver 3.04.20
[ 5.556245] Copyright (c) 1999-2008 LSI Corporation
[ 5.613961] tsc: Refined TSC clocksource calibration: 2694.310 MHz
[ 5.615933] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26d63f842ac, max_idle_ns: 440795296712 ns
[ 5.645199] AVX version of gcm_enc/dec engaged.
[ 5.655495] AES CTR mode by8 optimization enabled
[ 5.694053] Fusion MPT SPI Host driver 3.04.20
[ 5.800000] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[ 6.090852] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:0a:1a:84:64:1f
[ 6.110781] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[ 6.125413] e1000 0000:00:03.0 enp0s3: renamed from eth0
[ 6.139246] mptbase: ioc0: Initiating bringup
[ 6.218269] ioc0: LSI53C1030 A0: Capabilities={Initiator}
[ 6.403150] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
[ 6.538902] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 6.554967] scsi target2:0:0: Beginning Domain Validation
[ 6.569097] scsi target2:0:0: Domain Validation skipping write tests
[ 6.589181] scsi target2:0:0: Ending Domain Validation
[ 6.597651] scsi target2:0:0: asynchronous
[ 6.606321] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 6.622709] scsi target2:0:1: Beginning Domain Validation
[ 6.624682] scsi target2:0:1: Domain Validation skipping write tests
[ 6.626000] scsi target2:0:1: Ending Domain Validation
[ 6.627242] scsi target2:0:1: asynchronous
[ 6.635032] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 6.641328] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB)
[ 6.651849] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
[ 6.673513] sd 2:0:1:0: Attached scsi generic sg1 type 0
[ 6.676372] sd 2:0:0:0: [sda] Write Protect is off
[ 6.691842] sd 2:0:1:0: [sdb] Write Protect is off
[ 6.709704] sd 2:0:0:0: [sda] Incomplete mode parameter data
[ 6.721313] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 6.728759] sd 2:0:1:0: [sdb] Incomplete mode parameter data
[ 6.736396] sd 2:0:1:0: [sdb] Assuming drive cache: write through
[ 6.748334] sda: sda1
[ 6.760527] sd 2:0:0:0: [sda] Attached SCSI disk
[ 6.771684] sd 2:0:1:0: [sdb] Attached SCSI disk
[ 8.626266] floppy0: no floppy controllers found
Begin: Loading e[ 10.019133] md: linear personality registered for level -1
ssential drivers ... [ 10.043445] md: multipath personality registered for level -4
[ 10.057136] md: raid0 personality registered for level 0
[ 10.076308] md: raid1 personality registered for level 1
[ 10.158252] raid6: sse2x1 gen() 5875 MB/s
[ 10.233900] raid6: sse2x1 xor() 4786 MB/s
[ 10.314057] raid6: sse2x2 gen() 7989 MB/s
[ 10.386193] raid6: sse2x2 xor() 5354 MB/s
[ 10.462232] raid6: sse2x4 gen() 8185 MB/s
[ 10.537881] raid6: sse2x4 xor() 5928 MB/s
[ 10.551918] raid6: using algorithm sse2x4 gen() 8185 MB/s
[ 10.560765] raid6: .... xor() 5928 MB/s, rmw enabled
[ 10.578265] raid6: using ssse3x2 recovery algorithm
[ 10.587324] xor: automatically using best checksumming function:
[ 10.641860] avx : 18427.000 MB/sec
[ 10.655968] async_tx: api initialized (async)
[ 10.683716] md: raid6 personality registered for level 6
[ 10.694983] md: raid5 personality registered for level 5
[ 10.701904] md: raid4 personality registered for level 4
[ 10.718385] md: raid10 personality registered for level 10
[ 5.127474] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.140741] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.142842] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.145468] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.160226] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.169655] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.173182] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.174732] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.184144] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.271625] Fusion MPT base driver 3.04.20
[ 5.297667] Copyright (c) 1999-2008 LSI Corporation
[ 5.298993] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[ 5.324166] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 5.326663] tsc: Refined TSC clocksource calibration: 2692.473 MHz
[ 5.327632] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26cf77b8292, max_idle_ns: 440795209287 ns
[ 5.381486] AVX version of gcm_enc/dec engaged.
[ 5.464377] AES CTR mode by8 optimization enabled
[ 5.486102] Fusion MPT SPI Host driver 3.04.20
[ 5.564986] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[ 5.887266] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:0a:1a:84:64:1f
[ 5.917058] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[ 5.919208] e1000 0000:00:03.0 enp0s3: renamed from eth0
[ 5.924031] mptbase: ioc0: Initiating bringup
[ 5.987755] ioc0: LSI53C1030 A0: Capabilities={Initiator}
[ 6.226979] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
[ 6.380399] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 6.477276] scsi target2:0:0: Beginning Domain Validation
[ 6.546558] scsi target2:0:0: Domain Validation skipping write tests
[ 6.600632] scsi target2:0:0: Ending Domain Validation
[ 6.601538] scsi target2:0:0: asynchronous
[ 6.606834] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 6.618330] scsi target2:0:1: Beginning Domain Validation
[ 6.652322] scsi target2:0:1: Domain Validation skipping write tests
[ 6.655085] scsi target2:0:1: Ending Domain Validation
[ 6.656144] scsi target2:0:1: asynchronous
[ 6.675847] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 6.765882] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB)
[ 6.821687] sd 2:0:0:0: [sda] Write Protect is off
[ 6.865363] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
[ 6.879046] sd 2:0:1:0: Attached scsi generic sg1 type 0
[ 6.893690] sd 2:0:1:0: [sdb] Write Protect is off
[ 6.896305] sd 2:0:0:0: [sda] Incomplete mode parameter data
[ 6.913132] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 6.923229] sd 2:0:1:0: [sdb] Incomplete mode parameter data
[ 6.930895] sd 2:0:1:0: [sdb] Assuming drive cache: write through
[ 6.952316] sda: sda1
[ 6.963521] sd 2:0:0:0: [sda] Attached SCSI disk
[ 7.025293] sd 2:0:1:0: [sdb] Attached SCSI disk
[ 8.471987] floppy0: no floppy controllers found
Begin: Loading e[ 9.869100] md: linear personality registered for level -1
ssential drivers ... [ 9.875613] md: multipath personality registered for level -4
[ 9.882895] md: raid0 personality registered for level 0
[ 9.901079] md: raid1 personality registered for level 1
[ 9.987023] raid6: sse2x1 gen() 9252 MB/s
[ 10.082730] raid6: sse2x1 xor() 7308 MB/s
[ 10.159118] raid6: sse2x2 gen() 11883 MB/s
[ 10.230897] raid6: sse2x2 xor() 8014 MB/s
[ 10.310953] raid6: sse2x4 gen() 12390 MB/s
[ 10.411024] raid6: sse2x4 xor() 9550 MB/s
[ 10.443038] raid6: using algorithm sse2x4 gen() 12390 MB/s
[ 10.476479] raid6: .... xor() 9550 MB/s, rmw enabled
[ 10.492287] raid6: using ssse3x2 recovery algorithm
[ 10.542918] xor: automatically using best checksumming function:
[ 10.635189] avx : 20342.000 MB/sec
[ 10.646295] async_tx: api initialized (async)
[ 10.668139] md: raid6 personality registered for level 6
[ 10.676079] md: raid5 personality registered for level 5
[ 10.685934] md: raid4 personality registered for level 4
[ 10.702205] md: raid10 personality registered for level 10
done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... [ 10.766143] Btrfs loaded
Begin: Running /scripts/local-premount ... [ 10.741323] Btrfs loaded
Scanning for Btrfs filesystems
done.
Warning: fsck not present, so skipping root file system
[ 10.865714] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 11.008982] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
[ 11.834665] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[ 11.949185] systemd[1]: Detected virtualization oracle.
[ 11.950029] systemd[1]: Detected architecture x86-64.
[ 12.010823] random: nonblocking pool is initialized
[ 11.735013] random: nonblocking pool is initialized
[ 12.157487] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[ 12.210989] systemd[1]: Detected virtualization oracle.
[ 12.220303] systemd[1]: Detected architecture x86-64.
Welcome to Ubuntu 16.04.3 LTS!
[ 12.337008] systemd[1]: Set hostname to <ubuntu>.
[ 12.436322] systemd[1]: Initializing machine ID from random generator.
[ 12.479953] systemd[1]: Installed transient /etc/machine-id file.
[ 14.042559] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ 14.118524] systemd[1]: Listening on udev Kernel Socket.
[ 12.264361] systemd[1]: Set hostname to <ubuntu>.
[ 12.307423] systemd[1]: Initializing machine ID from random generator.
[ 12.315452] systemd[1]: Installed transient /etc/machine-id file.
[ 13.740939] systemd[1]: Listening on Journal Audit Socket.
[ OK ] Listening on Journal Audit Socket.
[ 13.843447] systemd[1]: Listening on udev Control Socket.
[ OK ] Listening on udev Control Socket.
[ 13.899249] systemd[1]: Listening on udev Kernel Socket.
[ OK ] Listening on udev Kernel Socket.
[ 14.259175] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 13.972064] systemd[1]: Listening on Syslog Socket.
[ OK ] Listening on Syslog Socket.
[ 14.006000] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ 14.043841] systemd[1]: Started Trigger resolvconf update for networkd DNS.
[ OK ] Started Trigger resolvconf update for networkd DNS.
[ 14.087013] systemd[1]: Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket (/dev/log).
[ 14.101292] systemd[1]: Reached target Swap.
[ OK ] Reached target Swap.
[ 14.136008] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ OK ] Started Forward Password Requests to Wall Directory Watch.
[ 14.248093] systemd[1]: Listening on Journal Socket.
[ OK ] Listening on Journal Socket.
[ 14.301909] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ OK ] Set up automount Arbitrary Executab...ats File System Automount Point.
[ 14.407745] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ OK ] Listening on Device-mapper event daemon FIFOs.
[ 14.347053] systemd[1]: Created slice System Slice.
[ 14.504320] systemd[1]: Listening on LVM2 metadata daemon socket.
[ OK ] Listening on LVM2 metadata daemon socket.
[ 14.607666] systemd[1]: Listening on LVM2 poll daemon socket.
[ OK ] Listening on LVM2 poll daemon socket.
[ 14.647616] systemd[1]: Reached target Encrypted Volumes.
[ OK ] Reached target Encrypted Volumes.
[ 14.707595] systemd[1]: Created slice System Slice.
[ OK ] Created slice System Slice.
[ 14.455007] systemd[1]: Reached target Slices.
[ OK ] Reached target Slices.
[ 14.524421] systemd[1]: Listening on Journal Socket.
[ OK ] Listening on Journal Socket.
[ 14.575708] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[ 14.768431] systemd[1]: Starting Create list of required static device nodes for the current kernel...
Starting Create list of required st... nodes for the current kernel...
[ 14.617453] systemd[1]: Starting Set console keymap...
Starting Set console keymap...
[ 14.820448] systemd[1]: Starting Load Kernel Modules...
[ 14.980473] systemd[1]: Created slice system-serial\x2dgetty.slice.
[ OK ] Created slice system-serial\x2dgetty.slice.
[ 15.081470] systemd[1]: Starting Nameserver information manager...
Starting Nameserver information manager...
[ 15.137240] systemd[1]: Reached target Slices.
[ OK ] Reached target Slices.
[ 15.164057] systemd[1]: Starting Journal Service...
Starting Journal Service...
[ 15.251588] systemd[1]: Starting Load Kernel Modules...
Starting Load Kernel Modules...
[ 14.960878] systemd[1]: Mounting Huge Pages File System...
Mounting Huge Pages File System...
[ 15.052620] systemd[1]: Starting Uncomplicated firewall...
[ 15.267266] systemd[1]: Starting Uncomplicated firewall...
Starting Uncomplicated firewall...
[ 15.134220] systemd[1]: Listening on udev Control Socket.
[ OK ] Listening on udev Control Socket.
[ 15.302431] systemd[1]: Listening on LVM2 metadata daemon socket.
[ OK ] Listening on LVM2 metadata daemon socket.
[ 15.427322] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 15.510568] Loading iSCSI transport class v2.0-870.
[ 15.269639] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Starting Monitoring of LVM2 mirrors... dmeventd or progress polling...
[ 15.320533] systemd[1]: Starting Remount Root and Kernel File Systems...
Starting Remount Root and Kernel File Systems...
[ 15.631545] systemd[1]: Created slice system-serial\x2dgetty.slice.
[ OK ] Created slice system-serial\x2dgetty.slice.
[ 15.676991] systemd[1]: Listening on Syslog Socket.
[ OK ] Listening on Syslog Socket.
[ 15.703157] systemd[1]: Mounting POSIX Message Queue File System...
[ 15.714120] EXT4-fs (sda1): re-mounted. Opts: (null)
[ 15.727986] iscsi: registered transport (tcp)
Mounting POSIX Message Queue File System...
[ 15.782785] systemd[1]: Mounting Debug File System...
[ 15.335728] systemd[1]: Starting Set console keymap...
Starting Set console keymap...
[ 15.385488] EXT4-fs (sda1): re-mounted. Opts: (null)
[ 15.457722] systemd[1]: Mounting POSIX Message Queue File System...
Mounting POSIX Message Queue File System...
[ 15.538074] systemd[1]: Mounting Huge Pages File System...
[ 15.603049] Loading iSCSI transport class v2.0-870.
Mounting Huge Pages File System...
[ 15.696608] systemd[1]: Mounting Debug File System...
Mounting Debug File System...
[ 15.818910] systemd[1]: Reached target Encrypted Volumes.
[ OK ] Reached targe[ 15.879564] iscsi: registered transport (iser)
t Encrypted Volumes.
[ 16.010932] systemd[1]: Listening on Journal Audit Socket.
[ OK ] Listening on Journal Audit Socket.
[ 16.086878] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ OK ] Set up automount Arbitrary Executab...ats File System Automount Point.
[ 16.342330] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ OK ] Started Forward Password Requests to Wall Directory Watch.
[ 16.490513] systemd[1]: Reached target User and Group Name Lookups.
[ 15.773396] iscsi: registered transport (tcp)
[ 15.819555] systemd[1]: Reached target User and Group Name Lookups.
[ OK ] Reached target User and Group Name Lookups.
[ 16.618972] systemd[1]: Started Trigger resolvconf update for networkd DNS.
[ OK ] Started Trigger resolvconf update for networkd DNS.
[ 16.674018] systemd[1]: Reached target Swap.
[ OK ] Reached target Swap.
[ 16.741494] systemd[1]: Starting Nameserver information manager...
Starting Nameserver information manager...
[ 16.804642] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Starting Monitoring of LVM2 mirrors... dmeventd or progress polling...
[ 16.838648] systemd[1]: Listening on LVM2 poll daemon socket.
[ OK ] Listening on LVM2 poll daemon socket.
[ 16.878340] systemd[1]: Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket (/dev/log).
[ 16.930947] systemd[1]: Starting Journal Service...
Starting Journal Service...
[ 16.986021] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 15.827943] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ OK ] Listening on /dev/initctl Compatibility Named Pipe.
[ 17.132177] systemd[1]: Mounted Debug File System.
[ 15.862324] systemd[1]: Mounted Debug File System.
[ OK ] Mounted Debug File System.
[ 17.215012] systemd[1]: Mounted Huge Pages File System.
[ 15.869317] systemd[1]: Mounted Huge Pages File System.
[ OK ] Mounted Huge Pages File System.
[ 17.318815] systemd[1]: Mounted POSIX Message Queue File System.
[ 15.877517] systemd[1]: Mounted POSIX Message Queue File System.
[ OK ] Mounted POSIX Message Queue File System.
[ 17.471996] systemd[1]: Started Create list of required static device nodes for the current kernel.
[ OK ] Started Create list of required sta...ce nodes for the current kernel.
[ 17.627179] systemd[1]: Started Set console keymap.
[ OK ] Started Set console keymap.
[ 17.651319] systemd[1]: Started Load Kernel Modules.
[ 15.889047] systemd[1]: Started Journal Service.
[ OK ] Started Journal Service.
[ OK ] Started Create list of requir[ 15.922744] iscsi: registered transport (iser)
ed sta...ce nodes for the current kernel.
[ OK ] Started Load Kernel Modules.
[ 17.768572] systemd[1]: Started Uncomplicated firewall.
[ OK ] Started Uncomplicated firewall.
[ 17.852533] systemd[1]: Started Remount Root and Kernel File Systems.
[ OK ] Started Remount Root and Kernel File Systems.
[ 17.931246] systemd[1]: Started Journal Service.
[ OK ] Started Journal Service.
[ OK ] Started Set console keymap.
[ OK ] Started Nameserver information manager.
[ OK ] Started LVM2 metadata daemon.
Starting Initial cloud-init job (pre-networking)...
Starting udev Coldplug all Devices...
Starting Flush Journal to Persistent Storage...
Starting Load/Save Random Seed...
Starting Apply Kernel Variables...
Starting Initial cloud-init job (pre-networking)...
Mounting FUSE Control File System...
Starting Apply Kernel Variables...
Starting Create Static Device Nodes in /dev...
Starting Flush Journal to Persistent Storage...
[ OK ] Mounted FUSE Control File System.
[ OK ] Started Nameserver information manager.
[ OK ] Started Load/Save Random Seed.
[ OK ] Started udev Coldplug all Devices.
[ 18.385508] systemd-journald[411]: Received request to flush runtime journal from PID 1
[ OK ] Started Apply Kernel Variables.
[ OK ] Started Monitoring of LVM2 mirrors,...ng dmeventd or progress polling.
[ OK ] Started Flush Journal to Persistent Storage.
[ OK ] Started Apply Kernel Variables.
[ OK ] Started Create Static Device Nodes in /dev.
Starting udev Kernel Device Manager...
[ OK ] Started udev Kernel Device Manager.
[ OK ] Started Dispatch Password Requests to Console Directory Watch.
[ OK ] Reached target Local File Systems (Pre).
[ OK ] Reached target Local File Systems.
Starting Set console font and keymap...
Starting LSB: AppArmor initialization...
Starting Create Volatile Files and Directories...
Starting Commit a transient machine-id on disk...
Starting LSB: AppArmor initialization...
Starting Tell Plymouth To Write Out Runtime Data...
[ OK ] Started Create Volatile Files and Directories.
Starting Set console font and keymap...
[ OK ] Started Dispatch Password Requests to Console Directory Watch.
[ OK ] Started Commit a transient machine-id on disk.
[ OK ] Started Tell Plymouth To Write Out Runtime Data.
[ OK ] Found device /dev/ttyS0.
[ OK ] Started Create Volatile Files and Directories.
[ OK ] Reached target System Time Synchronized.
Starting Update UTMP about System Boot/Shutdown...
[ OK ] Started Update UTMP about System Boot/Shutdown.
[ OK ] Found device /dev/ttyS0.
[ OK ] Started Set console font and keymap.
[ OK ] Created slice system-getty.slice.
[ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[ OK ] Started LSB: AppArmor initialization.
[ 25.589709] cloud-init[421]: Cloud-init v. 0.7.9 running 'init-local' at Fri, 05 Jan 2018 16:14:17 +0000. Up 24.29 seconds.
[ 22.758757] cloud-init[450]: Cloud-init v. 0.7.9 running 'init-local' at Wed, 10 Jan 2018 16:03:20 +0000. Up 22.14 seconds.
[ OK ] Started Initial cloud-init job (pre-networking).
[ OK ] Reached target Network (Pre).
Starting Raise network interfaces...
[ OK ] Started Raise network interfaces.
[ OK ] Reached target Network.
Starting Initial cloud-init job (metadata service crawler)...
[ 28.882271] cloud-init[941]: Cloud-init v. 0.7.9 running 'init' at Fri, 05 Jan 2018 16:14:20 +0000. Up 26.38 seconds.
[ 28.908681] cloud-init[941]: ci-info: +++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++
[ 28.918584] cloud-init[941]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
[ 28.928871] cloud-init[941]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
[ 28.932255] cloud-init[941]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
[ 28.944354] cloud-init[941]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | . | 02:0a:1a:84:64:1f |
[ 28.963718] [ OK ] Started Initial cloud-init job (metadata service crawler).
[ 26.165741] cloud-init[949]: Cloud-init v. 0.7.9 running 'init' at Wed, 10 Jan 2018 16:03:21 +0000. Up 23.55 seconds.
[ 26.187860] cloud-init[949]: ci-info: +++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++
[ 26.216949] cloud-init[949]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
[ 26.228000] cloud-init[949]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
[ OK ] Started Initial cloud-init job (metadata service crawler).
[ 26.249930] cloud-init[949]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
[ 26.269518] cloud-init[949]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | . | 02:0a:1a:84:64:1f |
[ 26.285244] cloud-init[949]: ci-info: | enp0s3 | True | fe80::a:1aff:fe84:641f/64 | . | link | 02:0a:1a:84:64:1f |
[ OK ] Reached target Network is Online.
Starting iSCSI initiator daemon (iscsid)...
[ OK ] Reached target Cloud-config availability.
[ OK ] Reached target System Initialization.
[ OK ] Listening on UUID daemon activation socket.
Starting Socket activation for snappy daemon.
[ OK ] Started Daily Cleanup of Temporary Directories.
cloud-init[941]: ci-info: | enp0s3 | True | fe80::a:1aff:fe84:641f/64 | . | link | 02:0a:1a:84:64:1f |
[ 29.080946] cloud-init[941]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | . | . |
[ 29.109025] cloud-init[941]: ci-info: | lo | True | ::1/128 | . | host | . |
[ 29.144092] cloud-init[941]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
[ 29.168152] cloud-init[941]: ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
[ 29.168416] cloud-init[941]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
[ 29.168448] cloud-init[941]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
[ 29.168485] cloud-init[941]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
[ 29.168513] cloud-init[941]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | enp0s3 | UG |
[ 29.168539] cloud-init[941]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | enp0s3 | U |
[ 29.168565] cloud-init[941]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
[ 29.168630] cloud-init[941]: Generating public/private rsa key pair.
[ 29.168662] cloud-init[941]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
[ 29.168689] cloud-init[941]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
[ 29.168716] cloud-init[941]: The key fingerprint is:
[ 29.168742] cloud-init[941]: SHA256:1r0tdS1QR4ImshlrFZIvXDQqY0KWjyjXczKjivNyCRY root@ubuntu-xenial
[ 29.168768] cloud-init[941]: The key's randomart image is:
[ 29.168793] cloud-init[941]: +---[RSA 2048]----+
[ 29.168818] cloud-init[941]: | o. .o+. .o.o|
[ 29.168843] cloud-init[941]: | o. +o+.o. o |
[ 29.168868] cloud-init[941]: | o.o+..X o. |
[ 29.168892] cloud-init[941]: |.Eo BoooB... . .|
[ 29.168916] cloud-init[941]: | o.. * .S.. . o o|
[ 29.168947] cloud-init[941]: |... . + o |
[ 29.168971] cloud-init[941]: |oo . o . |
[ 29.168996] cloud-init[941]: |= o . |
[ 29.169020] cloud-init[941]: | =. |
[ 29.169045] cloud-init[941]: +----[SHA256]-----+
[ 29.169069] cloud-init[941]: Generating public/private dsa key pair.
[ 29.169132] cloud-init[941]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
[ 29.169162] cloud-init[941]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
[ 29.169188] cloud-init[941]: The key fingerprint is:
[ 29.169212] cloud-init[941]: SHA256:WRvS7F0JtGJ0rwZqqCMqyx8FcAWQi/AKQ8o7jIA7S3A root@ubuntu-xenial
[ 29.169238] cloud-init[941]: The key's randomart image is:
[ 29.169265] cloud-init[941]: +---[DSA 1024]----+
[ 29.169290] cloud-init[941]: | oooo. ..+ |
[ 29.169315] cloud-init[941]: |.oo + . + . |
[ 29.169340] cloud-init[941]: |B... . O . + |
[ 29.169364] cloud-init[941]: |OoE . . B * o |
[ 29.169389] cloud-init[941]: |*=. .. S o + |
[ 29.169414] cloud-init[941]: |== .. . . |
[ 29.169439] cloud-init[941]: |.oo.o |
[ 29.169463] cloud-init[941]: |+. ... |
[ 29.169489] cloud-init[941]: |+o.. |
[ 29.169514] cloud-init[941]: +----[SHA256]-----+
[ 29.169539] cloud-init[941]: Generating public/private ecdsa key pair.
[ 29.169564] cloud-init[941]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
[ 29.169589] cloud-init[941]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
[ 29.169614] cloud-init[941]: The key fingerprint is:
[ 29.169638] cloud-init[941]: SHA256:1nBvcAexaclqSG7J3p4OcuHXE+nUv+DKdu9azfAiHsY root@ubuntu-xenial
[ 29.169663] cloud-init[941]: The key's randomart image is:
[ 29.169688] cloud-init[941]: +---[ECDSA 256]---+
[ 29.169712] cloud-init[941]: | o. |
[ 29.169736] cloud-init[941]: | . = |
[ 29.169761] cloud-init[941]: | o o B . |
[ 29.169787] cloud-init[941]: | + * * + |
[ 29.169812] cloud-init[941]: | S + * o |
[ 29.169837] cloud-init[941]: | = + * . =.|
[ 29.169862] cloud-init[941]: | . = o E...=|
[ 29.169887] cloud-init[941]: | o +.=.=o..|
[ 29.169911] cloud-init[941]: | .=o+o++ |
[ 29.169935] cloud-init[941]: +----[SHA256]-----+
[ 29.169960] cloud-init[941]: Generating public/private ed25519 key pair.
[ 29.169984] [ OK ] Started Timer to automatically refresh installed snaps.
[ OK ] Listening on ACPID Listen Socket.
[ 26.318925] cloud-init[949]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | . | . |
[ OK ] Reached target System Initialization.[ 26.353073] cloud-init[949]: ci-info: | lo | True | ::1/128 | . | host | . |
[ 26.353339] cloud-init[949]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
[ 26.353371] cloud-init[949]: ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
[ 26.353396] cloud-init[949]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
[ 26.353421] cloud-init[949]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
[ 26.353446] cloud-init[949]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
[ 26.353471] cloud-init[949]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | enp0s3 | UG |
[ 26.353496] cloud-init[949]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | enp0s3 | U |
[ 26.353522] cloud-init[949]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
[ 26.353561] cloud-init[949]: Generating public/private rsa key pair.
[ 26.353587] cloud-init[949]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
[ 26.353611] cloud-init[949]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
[ 26.353637] cloud-init[949]: The key fingerprint is:
[ 26.353661] cloud-init[949]: SHA256:2PJNGRceXZWnB4Q+XogrPrFDicobpAkaU/GqVugBU24 root@ubuntu-xenial
[ 26.353684] cloud-init[949]: The key's randomart image is:
[ 26.353724] cloud-init[949]: +---[RSA 2048]----+
[ 26.353756] cloud-init[949]: | o o+..=|
[ 26.353781] cloud-init[949]: | o o ..oo..|
[ 26.353807] cloud-init[949]: |o E . .oo. o.|
[ 26.353831] cloud-init[949]: |.+.. o .++ o .|
[ 26.353855] cloud-init[949]: |+o... o.S.oo o . |
[ 26.353879] cloud-init[949]: |o=o+ .o=o. . |
[ 26.353902] cloud-init[949]: |ooo... o.+. |
[ 26.353926] cloud-init[949]: |. o. = |
[ 26.353950] cloud-init[949]: | .. o |
[ 26.353974] cloud-init[949]: +----[SHA256]-----+
[ 26.353998] cloud-init[949]: Generating public/private dsa key pair.
[ 26.354022] cloud-init[949]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
[ 26.354047] cloud-init[949]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
[ 26.354072] cloud-init[949]: The key fingerprint is:
[ 26.354096] cloud-init[949]: SHA256:c2eN9DF2kIpZX50L3OWzFTa4MttmO0JlY5gZZgtwr5E root@ubuntu-xenial
[ 26.354121] cloud-init[949]: The key's randomart image is:
[ 26.354145] cloud-init[949]: +---[DSA 1024]----+
[ 26.354170] cloud-init[949]: | ... . +==|
[ 26.354193] cloud-init[949]: | ..o+.+o==|
[ 26.354217] cloud-init[949]: | E+=Bo*o=|
[ 26.354242] cloud-init[949]: | =O.@.=+|
[ 26.354267] cloud-init[949]: | S.. % +. |
[ 26.354292] cloud-init[949]: | o = + |
[ 26.354315] cloud-init[949]: | . o . |
[ 26.354338] cloud-init[949]: | . o |
[ 26.354363] cloud-init[949]: | . . |
[ 26.354386] cloud-init[949]: +----[SHA256]-----+
[ 26.354410] cloud-init[949]: Generating public/private ecdsa key pair.
[ 26.354434] cloud-init[949]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
[ 26.354458] cloud-init[949]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
[ 26.354483] cloud-init[949]: The key fingerprint is:
[ 26.354506] cloud-init[949]: SHA256:yGhKvQgv6NnGVGDemcVUr/7OKu1q9mnO+aJzwBfOdfk root@ubuntu-xenial
[ 26.354530] cloud-init[949]: The key's randomart image is:
[ 26.354555] cloud-init[949]: +---[ECDSA 256]---+
[ 26.354579] cloud-init[949]: | o... |
[ 26.354603] cloud-init[949]: | o o . |
[ 26.354628] cloud-init[949]: | o o + . . |
[ 26.354652] cloud-init[949]: | o B . ... o |
[ 26.354676] cloud-init[949]: |. . = + S.o . . |
[ 26.354939] cloud-init[949]: |.+ = . o.+ E |
[ 26.354968] cloud-init[949]: |o * . +. |
[ 26.754946] cloud-init[949]: |..oo =.== |
[ 26.754988] cloud-init[949]: | o.. oo@O== |
[ 26.755015] cloud-init[949]: +----[SHA256]-----+
[ 26.755040] cloud-init[949]: Generating public/private ed25519 key pair.
[ 26.755071] cloud-init[949]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
[ 26.755095] cloud-init[949]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
[ 26.755120] cloud-init[949]: The key fingerprint is:
[ 26.755144] cloud-init[949]: SHA256:XK5E/qNWCCddNP1CJXEJKzCtDrzn5vMyD1noBWN6x2o root@ubuntu-xenial
[ 26.755168] cloud-init[949]: The key's randomart image is:
[ 26.755193] cloud-init[949]: +--[ED25519 256]--+
[ 26.755218] cloud-init[949]: | ooo.++o. |
[ 26.755242] cloud-init[949]: | oo.o+. |
[ 26.755265] cloud-init[949]: | . .=oo... |
[ 26.755289] cloud-init[949]: | =*+B .. . |
[ 26.755313] cloud-init[949]: | .BS.* . |
[ 26.755336] cloud-init[949]: | .++O. |
[ 26.755361] cloud-init[949]: | oE.o |
[ 26.755386] cloud-init[949]: | .Bo . |
[ 26.755557] cloud-init[949]: | +o*o |
[ 26.755588] cloud-init[949]: +----[SHA256]-----+
[ OK ] Listening on D-Bus System Message Bus Socket.
cloud-init[941]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
Starting LXD - unix socket.
[ OK ] Started Timer to automatically refresh installed snaps.
[ OK ] Started Timer to automatically fetch and run repair assertions.
[ 29.901211] cloud-init[941]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
[ 29.961888] cloud-init[941]: The key fingerprint is:
[ OK [ 29.980151] cloud-init[941]: SHA256:WevfbOxyoj5EQcQlZZgjb837ryf2xnCYO0X+hlTQCdo root@ubuntu-xenial
[ 29.980196] cloud-init[941]: The key's randomart image is:
[ 29.980226] cloud-init[941]: +--[ED25519 256]--+
[ 29.980253] cloud-init[941]: | ++=+....|
[ 29.980280] cloud-init[941]: | . *oo ...|
[ 29.980307] cloud-init[941]: | o.* E . |
[ 29.980334] cloud-init[941]: | o+.o o|
[ 29.980360] cloud-init[941]: | So. . * |
[ 29.980385] cloud-init[941]: | .. . = +|
[ 29.980411] cloud-init[941]: | .. + B.|
[ 29.980436] cloud-init[941]: | ..oo@ *|
[ 29.980639] cloud-init[941]: | .oo.B=Xo|
[ 29.980673] cloud-init[941]: +----[SHA256]-----+
] Started ACPI Events Check.
Starting LXD - unix socket.
[ OK ] Started ACPI Events Check.
[ OK ] Reached target Paths.
[ OK ] Reached target Network is Online.
Starting iSCSI initiator daemon (iscsid)...
[ OK ] Started Daily apt download activities.
[ OK ] Started Daily apt upgrade and clean activities.
[ OK ] Listening on UUID daemon activation socket.
Starting Socket activation for snappy daemon.
[ OK ] Listening on ACPID Listen Socket.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Reached target Timers.
[ OK ] Listening on Socket activation for snappy daemon.
[ OK ] Listening on LXD - unix socket.
[ OK ] Listening on Socket activation for snappy daemon.
[ OK ] Started iSCSI initiator daemon (iscsid).
Starting Login to default iSCSI targets...
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
[ OK ] Started ACPI event daemon.
Starting Login Service...
Starting Pollinate to seed the pseudo random number generator...
[ OK ] Started Deferred execution scheduler.
Starting LSB: Record successful boot for GRUB...
[ OK ] Started Unattended Upgrades Shutdown.
Starting /etc/rc.local Compatibility...
Starting Apply the settings specified in cloud-config...
Starting Accounts Service...
[ OK ] Started FUSE filesystem for LXC.
[ OK ] Started Regular background program processing daemon.
[ OK ] Started D-Bus System Message Bus.
[ OK ] Started ACPI event daemon.
Starting System Logging Service...
Starting Login Service...
[ OK ] Started Unattended Upgrades Shutdown.
Starting Pollinate to seed the pseudo random number generator...
Starting LSB: MD monitoring daemon...
[ OK ] Started Deferred execution scheduler.
Starting Snappy daemon...
Starting Apply the settings specified in cloud-config...
[ OK ] Started FUSE filesystem for LXC.
Starting /etc/rc.local Compatibility...
Starting LSB: Record successful boot for GRUB...
Starting LXD - container startup/shutdown...
[ OK ] Started Regular background program processing daemon.
[ OK ] Started /etc/rc.local Compatibility.
[ OK ] Started Login Service.
[ OK ] Started iSCSI initiator daemon (iscsid).
Starting Login to default iSCSI targets...
Starting Authenticate and Authorize Users to Run Privileged Tasks...
[ OK ] Started LSB: Record successful boot for GRUB.
[ OK ] Started LSB: MD monitoring daemon.
[ OK ] Started System Logging Service.
[ OK ] Started Authenticate and Authorize Users to Run Privileged Tasks.
[ OK ] Started Accounts Service.
[ OK ] Started Login to default iSCSI targets.
[ OK ] Reached target Remote File Systems (Pre).
[ OK ] Reached target Remote File Systems.
Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
Starting LSB: daemon to balance interrupts for SMP systems...
Starting LSB: automatic crash report generation...
Starting Permit User Sessions...
Starting LSB: VirtualBox Linux Additions...
Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
[ OK ] Started Permit User Sessions.
[ OK ] Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
Starting Terminate Plymouth Boot Screen...
[ OK ] Started LSB: MD monitoring daemon.
[ OK ] Started Permit User Sessions.
Starting Hold until boot process finishes up...
[ OK ] Started Terminate Plymouth Boot Screen.
Starting Terminate Plymouth Boot Screen...
[ OK ] Started Hold until boot process finishes up.
[ OK ] Started Terminate Plymouth Boot Screen.
[ 29.863141] cloud-init[1053]: Generating locales (this might take a while)...
Starting Set console scheme...
[ OK ] Started Getty on tty1.
[ OK ] Started Serial Getty on ttyS0.
[ OK ] Reached target Login Prompts.
[ OK ] Started LSB: automatic crash report generation.
[ OK ] Started System Logging Service.
[ OK ] Started LSB: daemon to balance interrupts for SMP systems.
[ 32.970545] cloud-init[1120]: Generating locales (this might take a while)...
[ OK ] Started Set console scheme.
[ OK ] Started Authenticate and Authorize Users to Run Privileged Tasks.
[ OK ] Started Accounts Service.
[ OK ] Started LSB: VirtualBox Linux Additions.
[ OK ] Started Pollinate to seed the pseudo random number generator.
Starting OpenBSD Secure Shell server...
[ OK ] Started OpenBSD Secure Shell server.
[ 32.843670] cloud-init[1053]: en_US.UTF-8... done
[ 32.880506] cloud-init[1053]: Generation complete.
[ OK ] Started Snappy daemon.
Starting Auto import assertions from block devices...
[ OK ] Started OpenBSD Secure Shell server.
[ OK ] Started Auto import assertions from block devices.
[ 35.773883] cloud-init[1120]: en_US.UTF-8... done
[ 35.792849] cloud-init[1120]: Generation complete.
[ OK ] Started LXD - container startup/shutdown.
[ OK ] Reached target Multi-User System.
[ OK ] Reached target Graphical Interface.
......@@ -690,26 +681,25 @@ cloud-init[941]: Your identification has been saved in /etc/ssh/ssh_host_ed25519
[ OK ] Stopped OpenBSD Secure Shell server.
Starting OpenBSD Secure Shell server...
[ OK ] Started OpenBSD Secure Shell server.
[ 37.934670] cloud-init[1120]: Cloud-init v. 0.7.9 running 'modules:config' at Fri, 05 Jan 2018 16:14:25 +0000. Up 31.82 seconds.
[ 35.303609] cloud-init[1053]: Cloud-init v. 0.7.9 running 'modules:config' at Wed, 10 Jan 2018 16:03:25 +0000. Up 27.53 seconds.
ci-info: no authorized ssh keys fingerprints found for user ubuntu.
<14>Jan 5 16:14:32 ec2:
<14>Jan 5 16:14:32 ec2: #############################################################
<14>Jan 5 16:14:32 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
<14>Jan 5 16:14:32 ec2: 1024 SHA256:WRvS7F0JtGJ0rwZqqCMqyx8FcAWQi/AKQ8o7jIA7S3A root@ubuntu-xenial (DSA)
<14>Jan 5 16:14:32 ec2: 256 SHA256:1nBvcAexaclqSG7J3p4OcuHXE+nUv+DKdu9azfAiHsY root@ubuntu-xenial (ECDSA)
<14>Jan 5 16:14:32 ec2: 256 SHA256:WevfbOxyoj5EQcQlZZgjb837ryf2xnCYO0X+hlTQCdo root@ubuntu-xenial (ED25519)
<14>Jan 5 16:14:32 ec2: 2048 SHA256:1r0tdS1QR4ImshlrFZIvXDQqY0KWjyjXczKjivNyCRY root@ubuntu-xenial (RSA)
<14>Jan 5 16:14:32 ec2: -----END SSH HOST KEY FINGERPRINTS-----
<14>Jan 5 16:14:32 ec2: #############################################################
-----BEGIN SSH HOST KEY KEYS-----
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMS1bABsQpmvG0gzBlBXQmxzQMXcG9KET8LdnlK46CY7QAQ0hJbet5zO+CjLp2PnAaEn95xpARuM0qTQRy1V/P0= root@ubuntu-xenial
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMN2qemWl4hWvtPOW7sF9jD+IgKvVk2B5INTiABEdARH root@ubuntu-xenial
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDjRLsYhNGpLXbb57MNfWvYSTr4jVSxrRlLU/H02WbbfvjxQT68jSfa8EZ/yEcvLNLe+YjtBAsWq24QIMAkjt1LweWECPVIUJGGXmLJjghFoHZS1p33mSBpJXuD+a4AB6gPKRNGBIzoGcjpdFuYTtluz/Z3ler3VUbfvkU9vbwYQVPbSnyyPMEXn2X8A4TjCY3X6Hu5OQ4gs0wDf7Cp8dLcoga+6kuJEM1Gzwyn3Svzp/hyNGgW1cD+QH+I+HY/+ce0baaOSPWYFY/JKPCO8gTzshRD1jqlEFgu5J6Scw06hF7ar+FwLgdayRm3bDT7Rp/fknbCmu09BpXbshHFiN5n root@ubuntu-xenial
-----END SSH HOST KEY KEYS-----
[ 38.538544] cloud-init[1332]: Cloud-init v. 0.7.9 running 'modules:final' at Fri, 05 Jan 2018 16:14:31 +0000. Up 38.28 seconds.
[ 38.538706] cloud-init[1332]: ci-info: no authorized ssh keys fingerprints found for user ubuntu.
[ 38.538826] cloud-init[1332]: Cloud-init v. 0.7.9 finished at Fri, 05 Jan 2018 16:14:32 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net]. Up 38.52 seconds
Ubuntu 16.04.3 LTS ubuntu-xenial ttyS0
ubuntu-xenial login:
\ No newline at end of file
ubuntu-xenial login: <14>Jan 10 16:03:34 ec2:
<14>Jan 10 16:03:34 ec2: #############################################################
<14>Jan 10 16:03:34 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
<14>Jan 10 16:03:34 ec2: 1024 SHA256:c2eN9DF2kIpZX50L3OWzFTa4MttmO0JlY5gZZgtwr5E root@ubuntu-xenial (DSA)
<14>Jan 10 16:03:34 ec2: 256 SHA256:yGhKvQgv6NnGVGDemcVUr/7OKu1q9mnO+aJzwBfOdfk root@ubuntu-xenial (ECDSA)
<14>Jan 10 16:03:34 ec2: 256 SHA256:XK5E/qNWCCddNP1CJXEJKzCtDrzn5vMyD1noBWN6x2o root@ubuntu-xenial (ED25519)
<14>Jan 10 16:03:34 ec2: 2048 SHA256:2PJNGRceXZWnB4Q+XogrPrFDicobpAkaU/GqVugBU24 root@ubuntu-xenial (RSA)
<14>Jan 10 16:03:34 ec2: -----END SSH HOST KEY FINGERPRINTS-----
<14>Jan 10 16:03:34 ec2: #############################################################
-----BEGIN SSH HOST KEY KEYS-----
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMGlfUVx3oNaWB87lo3tMMxufQ/nHy9OqPRRTKl46eEc4kgtbb+dCtg0kJkFBSc6evagLVrI3TGH5KMFMq0wRZk= root@ubuntu-xenial
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAcDJT6ZiBpmtecQylYNyylt15uMZYJsEx8XZDzvuVt1 root@ubuntu-xenial
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCcFZ3hP+cyS0lcK7oquVYI7IhskVJy1auaXyk9BjH8oK2iwEdci9pJaGeiNV8EDiOq2iePx5OuDiIDNaoBWztvl0aUcLOWzcMmKjrhytXYlUc43rp+BIPCBeZKToLFMlovI19nha8gCayy2IU3MtLX7DAsebj6RVdgOGrFZ8gewlah8v7M/i/KKwFcQ7LpqQhS8TQ9lWJeqI6lTjZPNc4h445cG5lk2LPrIzVVqETnuShZQ6K/red6lR1ImFmjkaxrdIhNMH8eH3W/2Nl0b8wqEWEhSPFubumD95Wug0ECYh4sutu6yZtMLNI9JEJYHtVlUAzi9V8+XKviaKhvAtaD root@ubuntu-xenial
-----END SSH HOST KEY KEYS-----
[ 36.119281] cloud-init[1341]: Cloud-init v. 0.7.9 running 'modules:final' at Wed, 10 Jan 2018 16:03:33 +0000. Up 35.65 seconds.
[ 36.119428] cloud-init[1341]: ci-info: no authorized ssh keys fingerprints found for user ubuntu.
[ 36.119503] cloud-init[1341]: Cloud-init v. 0.7.9 finished at Wed, 10 Jan 2018 16:03:34 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net]. Up 36.11 seconds
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment