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

Added cpu & mem line protocol functions, simulated using new Node() class

parent 580b42f0
No related branches found
No related tags found
No related merge requests found
...@@ -95,6 +95,14 @@ ...@@ -95,6 +95,14 @@
############################################################################### ###############################################################################
# INPUTS # # INPUTS #
############################################################################### ###############################################################################
# Read metrics about cpu usage
[[inputs.cpu]]
## Whether to report per-cpu stats or not
percpu = true
## Whether to report total system cpu stats or not
totalcpu = true
## If true, collect raw CPU time metrics.
collect_cpu_time = false
# # Influx HTTP write listener # # Influx HTTP write listener
[[inputs.http_listener]] [[inputs.http_listener]]
...@@ -111,3 +119,4 @@ ...@@ -111,3 +119,4 @@
## MTLS ## MTLS
#tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"] #tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"]
\ No newline at end of file
...@@ -137,6 +137,43 @@ def _configure_service_function(state, max_connected_clients): ...@@ -137,6 +137,43 @@ def _configure_service_function(state, max_connected_clients):
return result return result
# Simulating telegraf reporting
def generate_CPU_report(time):
# Measurement
result = 'cpu'
# meta tag
# We are simulating the summed CPUs, individual CPUs would have cpu=cpuNumber instead
result += ',cpu="cpu-total"'
result += ' '
# field
steal = randint(0, 50)
system = randint(0, 100-steal)
idle = 100-(system+steal)
result += 'usage_steal='+str(steal/100)
result += ',usage_system='+str(system/100)
result += ',usage_idle='+str(idle/100)
result += ' '
# Time
result += str(_getNSTime(time))
print(result)
return result
def generate_mem_report(total_mem, time):
# Measurement
result = 'mem'
result += ' '
# field
used = randint(30, 80)
available = 100-used
result += 'available_percent='+str(available)
result += ',used_percent='+str(used)
result += ',total='+str(total_mem)
result += ' '
# Time
result += str(_getNSTime(time))
print(result)
return result
def quote_wrap(str): def quote_wrap(str):
return "\"" + str + "\"" return "\"" + str + "\""
......
No preview for this file type
...@@ -102,7 +102,7 @@ class DemoClient(object): ...@@ -102,7 +102,7 @@ class DemoClient(object):
# Return the _partial_ InfluxDB statement (server will complete the rest) # Return the _partial_ InfluxDB statement (server will complete the rest)
return result return result
# Used to tell influx to launch or teardown a database (DB name overwritten by telegraf)
class DatabaseManager(): class DatabaseManager():
def __init__(self, influx_url, db_name): def __init__(self, influx_url, db_name):
self.influx_url = influx_url self.influx_url = influx_url
...@@ -126,6 +126,7 @@ class DatabaseManager(): ...@@ -126,6 +126,7 @@ class DatabaseManager():
req = urllib.request.Request(self.influx_url + '/query ', query) req = urllib.request.Request(self.influx_url + '/query ', query)
urllib.request.urlopen(req) urllib.request.urlopen(req)
# Used to allocate clients to servers
class ClientManager(): class ClientManager():
def __init__(self, servers): def __init__(self, servers):
self.servers = servers self.servers = servers
...@@ -137,6 +138,28 @@ class ClientManager(): ...@@ -137,6 +138,28 @@ class ClientManager():
server.assign_client(DemoClient()) server.assign_client(DemoClient())
assigned_count += 1 assigned_count += 1
# Simulates nodes not connected directly to clients (e.g. telegraf)
class Node():
def __init__(self, influxurl, influxdb, input_cpu):
self.influx_url = influxurl
self.influx_db = influxdb
self.report_cpu = input_cpu
def iterateService(self):
if self.report_cpu:
self._sendInfluxData(lp.generate_CPU_report(0))
self._sendInfluxData(lp.generate_mem_report(10, 0))
# Private Methods
# ________________________________________________________________
# This is duplicated from DemoServer, should probably be refactored
def _sendInfluxData(self, data):
data = data.encode()
header = {'Content-Type': 'application/octet-stream'}
req = urllib.request.Request(self.influx_url + '/write?db=' + self.influx_db, data, header)
urllib.request.urlopen(req)
# DemoServer is the class that simulates the behaviour of the MPEG-DASH server # DemoServer is the class that simulates the behaviour of the MPEG-DASH server
class DemoServer(object): class DemoServer(object):
def __init__(self, cc, si, db_url, db_name, server_id, server_location): def __init__(self, cc, si, db_url, db_name, server_id, server_location):
...@@ -216,7 +239,7 @@ class DemoServer(object): ...@@ -216,7 +239,7 @@ class DemoServer(object):
# Record request, if it was generated # Record request, if it was generated
cReq = client.iterateRequest() cReq = client.iterateRequest()
if (cReq != None): if cReq is not None:
clientsRequesting.append(client) clientsRequesting.append(client)
requestBlock.append(lp._generateClientRequest(cReq, self.id, self.currentTime)) requestBlock.append(lp._generateClientRequest(cReq, self.id, self.currentTime))
...@@ -383,6 +406,7 @@ time.sleep(2) ...@@ -383,6 +406,7 @@ time.sleep(2)
# configure servers # configure servers
demoServer_southampton = 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") demoServer_bristol = DemoServer(clients, iterations, 'http://localhost:8186', 'testDB', "Server2", "Bristol")
telegraf_node = Node('http://localhost:8186', 'testDB', True)
server_list = [demoServer_southampton, demoServer_bristol] server_list = [demoServer_southampton, demoServer_bristol]
client_manager = ClientManager(server_list) client_manager = ClientManager(server_list)
client_manager.generate_new_clients(20) client_manager.generate_new_clients(20)
...@@ -392,6 +416,7 @@ print("Starting simulation") ...@@ -392,6 +416,7 @@ print("Starting simulation")
while True: while True:
for server in server_list: for server in server_list:
itCount = server.iterateService() itCount = server.iterateService()
telegraf_node.iterateService()
pcDone = round((itCount / iterations) * 100) pcDone = round((itCount / iterations) * 100)
print("Simulation remaining (%): " + str(pcDone) + " \r", end='') print("Simulation remaining (%): " + str(pcDone) + " \r", end='')
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
[ 0.000000] NODE_DATA(0) allocated [mem 0x7ffeb000-0x7ffeffff] [ 0.000000] NODE_DATA(0) allocated [mem 0x7ffeb000-0x7ffeffff]
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 [ 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: cpu 0, msr 0:7ffe3001, primary cpu clock
[ 0.000000] kvm-clock: using sched offset of 3793180724 cycles [ 0.000000] kvm-clock: using sched offset of 3607971923 cycles
[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns [ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[ 0.000000] Zone ranges: [ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
...@@ -90,616 +90,609 @@ ...@@ -90,616 +90,609 @@
[ 0.000000] console [tty1] enabled [ 0.000000] console [tty1] enabled
[ 0.000000] console [ttyS0] enabled [ 0.000000] console [ttyS0] enabled
[ 0.000000] tsc: Detected 2693.760 MHz processor [ 0.000000] tsc: Detected 2693.760 MHz processor
[ 0.686180] Calibrating delay loop (skipped) preset value.. 5387.52 BogoMIPS (lpj=10775040) [ 0.699586] Calibrating delay loop (skipped) preset value.. 5387.52 BogoMIPS (lpj=10775040)
[ 0.697404] pid_max: default: 32768 minimum: 301 [ 0.702776] pid_max: default: 32768 minimum: 301
[ 0.699763] ACPI: Core revision 20150930 [ 0.703571] ACPI: Core revision 20150930
[ 0.705093] ACPI: 2 ACPI AML tables successfully acquired and loaded [ 0.705152] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.718587] Security Framework initialized [ 0.707425] Security Framework initialized
[ 0.719410] Yama: becoming mindful. [ 0.708117] Yama: becoming mindful.
[ 0.723275] AppArmor: AppArmor initialized [ 0.708752] AppArmor: AppArmor initialized
[ 0.739243] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.716536] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.753223] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.725079] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.756602] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) [ 0.726253] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.760402] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) [ 0.728461] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.761604] Initializing cgroup subsys io [ 0.777707] Initializing cgroup subsys io
[ 0.763499] Initializing cgroup subsys memory [ 0.780906] Initializing cgroup subsys memory
[ 0.764243] Initializing cgroup subsys devices [ 0.789380] Initializing cgroup subsys devices
[ 0.764972] Initializing cgroup subsys freezer [ 0.790126] Initializing cgroup subsys freezer
[ 0.765695] Initializing cgroup subsys net_cls [ 0.790858] Initializing cgroup subsys net_cls
[ 0.770156] Initializing cgroup subsys perf_event [ 0.792785] Initializing cgroup subsys perf_event
[ 0.770945] Initializing cgroup subsys net_prio [ 0.794740] Initializing cgroup subsys net_prio
[ 0.771699] Initializing cgroup subsys hugetlb [ 0.817171] Initializing cgroup subsys hugetlb
[ 0.772429] Initializing cgroup subsys pids [ 0.817923] Initializing cgroup subsys pids
[ 0.774323] CPU: Physical Processor ID: 0 [ 0.819900] CPU: Physical Processor ID: 0
[ 0.775908] mce: CPU supports 0 MCE banks [ 0.821456] mce: CPU supports 0 MCE banks
[ 0.776609] process: using mwait in idle threads [ 0.822151] process: using mwait in idle threads
[ 0.777361] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024 [ 0.822910] 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.825091] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.793702] Freeing SMP alternatives memory: 32K [ 0.839576] Freeing SMP alternatives memory: 32K
[ 0.811917] ftrace: allocating 32154 entries in 126 pages [ 0.856949] ftrace: allocating 32154 entries in 126 pages
[ 0.861597] smpboot: APIC(0) Converting physical 0 to logical package 0 [ 0.906075] smpboot: APIC(0) Converting physical 0 to logical package 0
[ 0.968147] smpboot: Max logical packages: 1 [ 0.924435] smpboot: Max logical packages: 1
[ 1.041852] x2apic enabled [ 0.925572] x2apic enabled
[ 1.050482] Switched APIC routing to physical x2apic. [ 0.933909] Switched APIC routing to physical x2apic.
[ 1.058622] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.937266] ..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.051304] 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.058910] Performance Events: unsupported p6 CPU model 69 no PMU driver, software events only.
[ 1.282174] KVM setup paravirtual spinlock [ 1.066914] KVM setup paravirtual spinlock
[ 1.310082] x86: Booted up 1 node, 1 CPUs [ 1.068191] x86: Booted up 1 node, 1 CPUs
[ 1.329413] smpboot: Total of 1 processors activated (5387.52 BogoMIPS) [ 1.068882] smpboot: Total of 1 processors activated (5387.52 BogoMIPS)
[ 1.330632] devtmpfs: initialized [ 1.080211] devtmpfs: initialized
[ 1.341423] evm: security.selinux [ 1.101167] evm: security.selinux
[ 1.342043] evm: security.SMACK64 [ 1.108370] evm: security.SMACK64
[ 1.342641] evm: security.SMACK64EXEC [ 1.108979] evm: security.SMACK64EXEC
[ 1.343278] evm: security.SMACK64TRANSMUTE [ 1.111355] evm: security.SMACK64TRANSMUTE
[ 1.382943] evm: security.SMACK64MMAP [ 1.121071] evm: security.SMACK64MMAP
[ 1.406236] evm: security.ima [ 1.121720] evm: security.ima
[ 1.424982] evm: security.capability [ 1.122281] evm: security.capability
[ 1.425757] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 1.126221] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 1.440161] futex hash table entries: 256 (order: 2, 16384 bytes) [ 1.215470] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 1.441180] pinctrl core: initialized pinctrl subsystem [ 1.260405] pinctrl core: initialized pinctrl subsystem
[ 1.444314] RTC time: 16:02:58, date: 01/10/18 [ 1.266847] RTC time: 12:31:02, date: 01/11/18
[ 1.445170] NET: Registered protocol family 16 [ 1.272614] NET: Registered protocol family 16
[ 1.446044] cpuidle: using governor ladder [ 1.275461] cpuidle: using governor ladder
[ 1.446742] cpuidle: using governor menu [ 1.276168] cpuidle: using governor menu
[ 1.468865] PCCT header not found. [ 1.278458] PCCT header not found.
[ 1.524522] ACPI: bus type PCI registered [ 1.350554] ACPI: bus type PCI registered
[ 1.566745] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 1.386023] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 1.645537] PCI: Using configuration type 1 for base access [ 1.418078] PCI: Using configuration type 1 for base access
[ 1.672686] ACPI: Added _OSI(Module Device) [ 1.420032] ACPI: Added _OSI(Module Device)
[ 1.676340] ACPI: Added _OSI(Processor Device) [ 1.440110] ACPI: Added _OSI(Processor Device)
[ 1.700506] ACPI: Added _OSI(3.0 _SCP Extensions) [ 1.442858] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 1.721470] ACPI: Added _OSI(Processor Aggregator Device) [ 1.443634] ACPI: Added _OSI(Processor Aggregator Device)
[ 1.766551] ACPI: Executed 1 blocks of module-level executable AML code [ 1.445340] ACPI: Executed 1 blocks of module-level executable AML code
[ 1.786668] ACPI: Interpreter enabled [ 1.452214] ACPI: Interpreter enabled
[ 1.792623] ACPI: (supports S0 S5) [ 1.452872] ACPI: (supports S0 S5)
[ 1.796604] ACPI: Using IOAPIC for interrupt routing [ 1.455771] 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.460684] 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.469242] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 1.840555] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI] [ 1.470183] 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.472845] 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.474359] 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.483452] PCI host bridge to bus 0000:00
[ 1.855620] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 1.484155] 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.486479] 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.491374] 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.496182] pci_bus 0000:00: root bus resource [mem 0x80000000-0xffdfffff window]
[ 1.860310] pci_bus 0000:00: root bus resource [bus 00-ff] [ 1.538917] 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.587178] 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.613002] 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.628826] 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.644463] 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.677031] 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.687025] 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) [ 1.699754] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
[ 2.005583] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11) [ 1.713746] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
[ 2.006876] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11) [ 1.715037] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
[ 2.016936] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11) [ 1.724789] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
[ 2.065644] ACPI: Enabled 2 GPEs in block 00 to 07 [ 1.732895] ACPI: Enabled 2 GPEs in block 00 to 07
[ 2.104831] vgaarb: setting as boot device: PCI:0000:00:02.0 [ 1.733909] 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 [ 1.734787] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 2.110167] vgaarb: loaded [ 1.741669] vgaarb: loaded
[ 2.110698] vgaarb: bridge control possible 0000:00:02.0 [ 1.742203] vgaarb: bridge control possible 0000:00:02.0
[ 2.111717] SCSI subsystem initialized [ 1.743226] SCSI subsystem initialized
[ 2.123914] ACPI: bus type USB registered [ 1.756420] ACPI: bus type USB registered
[ 2.133063] usbcore: registered new interface driver usbfs [ 1.766677] usbcore: registered new interface driver usbfs
[ 2.156779] usbcore: registered new interface driver hub [ 1.767902] usbcore: registered new interface driver hub
[ 2.161226] usbcore: registered new device driver usb [ 1.769103] usbcore: registered new device driver usb
[ 2.162156] PCI: Using ACPI for IRQ routing [ 1.770415] PCI: Using ACPI for IRQ routing
[ 2.163093] NetLabel: Initializing [ 1.771598] NetLabel: Initializing
[ 2.163707] NetLabel: domain hash size = 128 [ 1.787440] NetLabel: domain hash size = 128
[ 2.166529] NetLabel: protocols = UNLABELED CIPSOv4 [ 1.816986] NetLabel: protocols = UNLABELED CIPSOv4
[ 2.185748] NetLabel: unlabeled traffic allowed by default [ 1.828734] NetLabel: unlabeled traffic allowed by default
[ 2.186695] amd_nb: Cannot enumerate AMD northbridges [ 1.829703] amd_nb: Cannot enumerate AMD northbridges
[ 2.190684] clocksource: Switched to clocksource kvm-clock [ 1.834738] clocksource: Switched to clocksource kvm-clock
[ 2.218550] AppArmor: AppArmor Filesystem Enabled [ 1.855898] AppArmor: AppArmor Filesystem Enabled
[ 2.238211] pnp: PnP ACPI init [ 1.916384] pnp: PnP ACPI init
[ 2.240025] pnp: PnP ACPI: found 3 devices [ 1.917604] pnp: PnP ACPI: found 3 devices
[ 2.257078] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 1.925723] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 2.260434] NET: Registered protocol family 2 [ 1.945662] NET: Registered protocol family 2
[ 2.263337] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ 1.958332] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 2.264582] TCP bind hash table entries: 16384 (order: 6, 262144 bytes) [ 1.989076] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[ 2.282587] TCP: Hash tables configured (established 16384 bind 16384) [ 1.992113] TCP: Hash tables configured (established 16384 bind 16384)
[ 2.302791] UDP hash table entries: 1024 (order: 3, 32768 bytes) [ 2.000502] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 2.320837] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes) [ 2.004005] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 2.323416] NET: Registered protocol family 1 [ 2.010593] NET: Registered protocol family 1
[ 2.326539] pci 0000:00:00.0: Limiting direct PCI/PCI transfers [ 2.011878] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 2.330390] pci 0000:00:01.0: Activating ISA DMA hang workarounds [ 2.023949] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 2.333287] Unpacking initramfs... [ 2.028463] Unpacking initramfs...
[ 4.252491] Freeing initrd memory: 10836K [ 3.876389] Freeing initrd memory: 10836K
[ 4.261579] RAPL PMU detected, API unit is 2^-32 Joules, 4 fixed counters 10737418240 ms ovfl timer [ 3.977411] 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 [ 3.982158] hw unit of domain pp0-core 2^-0 Joules
[ 4.284766] hw unit of domain package 2^-0 Joules [ 4.000941] hw unit of domain package 2^-0 Joules
[ 4.285570] hw unit of domain dram 2^-0 Joules [ 4.063492] hw unit of domain dram 2^-0 Joules
[ 4.299362] hw unit of domain pp1-gpu 2^-0 Joules [ 4.065720] hw unit of domain pp1-gpu 2^-0 Joules
[ 4.306863] platform rtc_cmos: registered platform RTC device (no PNP device found) [ 4.066542] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 4.317959] Scanning for low memory corruption every 60 seconds [ 4.069307] Scanning for low memory corruption every 60 seconds
[ 4.319104] audit: initializing netlink subsys (disabled) [ 4.070421] audit: initializing netlink subsys (disabled)
[ 4.374065] audit: type=2000 audit(1515600184.733:1): initialized [ 4.086713] audit: type=2000 audit(1515673870.002:1): initialized
[ 4.415051] Initialise system trusted keyring [ 4.094691] Initialise system trusted keyring
[ 4.454678] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 4.142847] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 4.461765] zbud: loaded [ 4.152659] zbud: loaded
[ 4.463865] VFS: Disk quotas dquot_6.6.0 [ 4.157693] VFS: Disk quotas dquot_6.6.0
[ 4.468012] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 4.169818] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 4.469228] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 4.182934] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 4.472511] fuse init (API version 7.23) [ 4.199022] fuse init (API version 7.23)
[ 4.473293] Key type big_key registered [ 4.215889] Key type big_key registered
[ 4.473974] Allocating IMA MOK and blacklist keyrings. [ 4.220192] Allocating IMA MOK and blacklist keyrings.
[ 4.477739] Key type asymmetric registered [ 4.241860] Key type asymmetric registered
[ 4.513930] Asymmetric key parser 'x509' registered [ 4.246102] Asymmetric key parser 'x509' registered
[ 4.531746] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) [ 4.255101] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[ 4.548022] io scheduler noop registered [ 4.256713] io scheduler noop registered
[ 4.581627] io scheduler deadline registered (default) [ 4.258720] io scheduler deadline registered (default)
[ 4.605420] io scheduler cfq registered [ 4.283434] io scheduler cfq registered
[ 4.620851] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 4.284178] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 4.622890] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 4.285043] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 4.623997] ACPI: AC Adapter [AC] (on-line) [ 4.288368] ACPI: AC Adapter [AC] (on-line)
[ 4.624755] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 [ 4.289125] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 4.627195] ACPI: Power Button [PWRF] [ 4.291680] ACPI: Power Button [PWRF]
[ 4.627923] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1 [ 4.297327] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[ 4.635686] ACPI: Sleep Button [SLPF] [ 4.314084] ACPI: Sleep Button [SLPF]
[ 4.636939] ACPI: Battery Slot [BAT0] (battery present) [ 4.389267] ACPI: Battery Slot [BAT0] (battery present)
[ 4.637791] GHES: HEST is not enabled! [ 4.480559] GHES: HEST is not enabled!
[ 4.638530] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 4.481326] 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.504246] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 4.691994] Linux agpgart interface v0.103 [ 4.543966] Linux agpgart interface v0.103
[ 4.693466] loop: module loaded [ 4.560158] loop: module loaded
[ 4.694458] scsi host0: ata_piix [ 4.616979] scsi host0: ata_piix
[ 4.697119] scsi host1: ata_piix [ 4.667530] scsi host1: ata_piix
[ 4.699197] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14 [ 4.714324] 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.719265] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
[ 4.710545] libphy: Fixed MDIO Bus: probed [ 4.723102] libphy: Fixed MDIO Bus: probed
[ 4.711263] tun: Universal TUN/TAP device driver, 1.6 [ 4.724046] tun: Universal TUN/TAP device driver, 1.6
[ 4.722646] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> [ 4.726493] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 4.745365] PPP generic driver version 2.4.2 [ 4.745706] PPP generic driver version 2.4.2
[ 4.780619] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 4.746494] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.806606] ehci-pci: EHCI PCI platform driver [ 4.754925] ehci-pci: EHCI PCI platform driver
[ 4.809064] ehci-platform: EHCI generic platform driver [ 4.776923] ehci-platform: EHCI generic platform driver
[ 4.811425] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 4.826639] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 4.814502] ohci-pci: OHCI PCI platform driver [ 4.829089] ohci-pci: OHCI PCI platform driver
[ 4.840307] ohci-platform: OHCI generic platform driver [ 4.833455] ohci-platform: OHCI generic platform driver
[ 4.841144] uhci_hcd: USB Universal Host Controller Interface driver [ 4.834291] 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.835323] 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.840740] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 4.872183] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 4.841982] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 4.873082] mousedev: PS/2 mouse device common for all mice [ 4.850504] 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.853657] 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.857086] 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.880759] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
[ 4.916282] i2c /dev entries driver [ 4.965563] i2c /dev entries driver
[ 4.918910] device-mapper: uevent: version 1.0.3 [ 4.973248] device-mapper: uevent: version 1.0.3
[ 4.927725] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com [ 5.001265] 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 [ 5.002654] ledtrig-cpu: registered to indicate activity on CPUs
[ 4.947819] NET: Registered protocol family 10 [ 5.003812] NET: Registered protocol family 10
[ 4.989518] NET: Registered protocol family 17 [ 5.006897] NET: Registered protocol family 17
[ 4.994755] Key type dns_resolver registered [ 5.007703] Key type dns_resolver registered
[ 4.998671] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x0 [ 5.063484] tsc: Refined TSC clocksource calibration: 2693.759 MHz
[ 4.999907] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba [ 5.082098] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26d436eef2b, max_idle_ns: 440795316752 ns
[ 5.023782] registered taskstats version 1 [ 5.083835] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x0
[ 5.030819] Loading compiled-in X.509 certificates [ 5.086339] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 5.037033] Loaded X.509 cert 'Build time autogenerated kernel key: 7431eaeda5a51458aeb00f8de0f18f89e178d882' [ 5.087885] registered taskstats version 1
[ 5.052499] zswap: loaded using pool lzo/zbud [ 5.088605] Loading compiled-in X.509 certificates
[ 5.059321] Key type trusted registered [ 5.121130] Loaded X.509 cert 'Build time autogenerated kernel key: 7431eaeda5a51458aeb00f8de0f18f89e178d882'
[ 5.081194] Key type encrypted registered [ 5.137321] zswap: loaded using pool lzo/zbud
[ 5.088608] AppArmor: AppArmor sha1 policy hashing enabled [ 5.144396] Key type trusted registered
[ 5.091485] ima: No TPM chip found, activating TPM-bypass! [ 5.150997] Key type encrypted registered
[ 5.095099] evm: HMAC attrs: 0x1 [ 5.151728] AppArmor: AppArmor sha1 policy hashing enabled
[ 5.096044] Magic number: 2:378:34 [ 5.152589] ima: No TPM chip found, activating TPM-bypass!
[ 5.099644] rtc_cmos rtc_cmos: setting system clock to 2018-01-10 16:03:01 UTC (1515600181) [ 5.156458] evm: HMAC attrs: 0x1
[ 5.102270] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found [ 5.162807] Magic number: 2:544:531
[ 5.103207] EDD information not available. [ 5.181010] tty ttyS11: hash matches
[ 5.104996] Freeing unused kernel memory: 1492K [ 5.181709] rtc_cmos rtc_cmos: setting system clock to 2018-01-11 12:31:06 UTC (1515673866)
[ 5.105738] Write protecting the kernel read-only data: 14336k [ 5.184766] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 5.106930] Freeing unused kernel memory: 1744K [ 5.220142] EDD information not available.
[ 5.108047] Freeing unused kernel memory: 108K [ 5.232892] Freeing unused kernel memory: 1492K
[ 5.235884] Write protecting the kernel read-only data: 14336k
[ 5.251031] Freeing unused kernel memory: 1744K
[ 5.263392] Freeing unused kernel memory: 108K
Loading, please wait... Loading, please wait...
starting version[ 5.116899] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available) starting version 229
229 [ 5.288968] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.127474] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available) [ 5.291395] random: udevadm: 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.300997] random: systemd-udevd: 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.308004] 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.315064] 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.318626] random: systemd-udevd: 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.330887] 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.344755] random: udevadm: 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.353152] random: udevadm: 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.359608] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available)
[ 5.271625] Fusion MPT base driver 3.04.20 [ 5.406968] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[ 5.297667] Copyright (c) 1999-2008 LSI Corporation [ 5.414898] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 5.298993] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI [ 5.418492] Fusion MPT base driver 3.04.20
[ 5.324166] e1000: Copyright (c) 1999-2006 Intel Corporation. [ 5.430606] Copyright (c) 1999-2008 LSI Corporation
[ 5.326663] tsc: Refined TSC clocksource calibration: 2692.473 MHz [ 5.465127] AVX version of gcm_enc/dec engaged.
[ 5.327632] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26cf77b8292, max_idle_ns: 440795209287 ns [ 5.482679] AES CTR mode by8 optimization enabled
[ 5.381486] AVX version of gcm_enc/dec engaged. [ 5.502740] Fusion MPT SPI Host driver 3.04.20
[ 5.464377] AES CTR mode by8 optimization enabled [ 5.646317] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[ 5.486102] Fusion MPT SPI Host driver 3.04.20 [ 5.847080] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:0a:1a:84:64:1f
[ 5.564986] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4 [ 5.881130] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[ 5.887266] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:0a:1a:84:64:1f [ 5.883333] e1000 0000:00:03.0 enp0s3: renamed from eth0
[ 5.917058] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection [ 5.887547] mptbase: ioc0: Initiating bringup
[ 5.919208] e1000 0000:00:03.0 enp0s3: renamed from eth0 [ 5.951893] ioc0: LSI53C1030 A0: Capabilities={Initiator}
[ 5.924031] mptbase: ioc0: Initiating bringup [ 6.218656] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
[ 5.987755] ioc0: LSI53C1030 A0: Capabilities={Initiator} [ 6.372812] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 6.226979] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20 [ 6.384146] scsi target2:0:0: Beginning Domain Validation
[ 6.380399] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5 [ 6.402937] scsi target2:0:0: Domain Validation skipping write tests
[ 6.477276] scsi target2:0:0: Beginning Domain Validation [ 6.421158] scsi target2:0:0: Ending Domain Validation
[ 6.546558] scsi target2:0:0: Domain Validation skipping write tests [ 6.433550] scsi target2:0:0: asynchronous
[ 6.600632] scsi target2:0:0: Ending Domain Validation [ 6.440955] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 6.601538] scsi target2:0:0: asynchronous [ 6.461152] scsi target2:0:1: Beginning Domain Validation
[ 6.606834] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5 [ 6.469355] scsi target2:0:1: Domain Validation skipping write tests
[ 6.618330] scsi target2:0:1: Beginning Domain Validation [ 6.479424] scsi target2:0:1: Ending Domain Validation
[ 6.652322] scsi target2:0:1: Domain Validation skipping write tests [ 6.480306] scsi target2:0:1: asynchronous
[ 6.655085] scsi target2:0:1: Ending Domain Validation [ 6.484879] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 6.656144] scsi target2:0:1: asynchronous [ 6.487719] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB)
[ 6.675847] sd 2:0:0:0: Attached scsi generic sg0 type 0 [ 6.498250] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
[ 6.765882] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB) [ 6.501563] sd 2:0:1:0: Attached scsi generic sg1 type 0
[ 6.821687] sd 2:0:0:0: [sda] Write Protect is off [ 6.505018] sd 2:0:1:0: [sdb] Write Protect is off
[ 6.865363] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB) [ 6.510094] sd 2:0:1:0: [sdb] Incomplete mode parameter data
[ 6.879046] sd 2:0:1:0: Attached scsi generic sg1 type 0 [ 6.514210] sd 2:0:1:0: [sdb] Assuming drive cache: write through
[ 6.893690] sd 2:0:1:0: [sdb] Write Protect is off [ 6.516271] sd 2:0:0:0: [sda] Write Protect is off
[ 6.896305] sd 2:0:0:0: [sda] Incomplete mode parameter data [ 6.517124] sd 2:0:0:0: [sda] Incomplete mode parameter data
[ 6.913132] sd 2:0:0:0: [sda] Assuming drive cache: write through [ 6.518004] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 6.923229] sd 2:0:1:0: [sdb] Incomplete mode parameter data [ 6.556803] sda: sda1
[ 6.930895] sd 2:0:1:0: [sdb] Assuming drive cache: write through [ 6.562680] sd 2:0:0:0: [sda] Attached SCSI disk
[ 6.952316] sda: sda1 [ 6.581928] sd 2:0:1:0: [sdb] Attached SCSI disk
[ 6.963521] sd 2:0:0:0: [sda] Attached SCSI disk [ 8.486964] floppy0: no floppy controllers found
[ 7.025293] sd 2:0:1:0: [sdb] Attached SCSI disk Begin: Loading e[ 9.824051] md: linear personality registered for level -1
[ 8.471987] floppy0: no floppy controllers found ssential drivers ... [ 9.866355] md: multipath personality registered for level -4
Begin: Loading e[ 9.869100] md: linear personality registered for level -1 [ 9.878790] md: raid0 personality registered for level 0
ssential drivers ... [ 9.875613] md: multipath personality registered for level -4 [ 9.889928] md: raid1 personality registered for level 1
[ 9.882895] md: raid0 personality registered for level 0 [ 9.970929] raid6: sse2x1 gen() 9088 MB/s
[ 9.901079] md: raid1 personality registered for level 1 [ 10.043135] raid6: sse2x1 xor() 7204 MB/s
[ 9.987023] raid6: sse2x1 gen() 9252 MB/s [ 10.138865] raid6: sse2x2 gen() 12250 MB/s
[ 10.082730] raid6: sse2x1 xor() 7308 MB/s [ 10.235053] raid6: sse2x2 xor() 7672 MB/s
[ 10.159118] raid6: sse2x2 gen() 11883 MB/s [ 10.310764] raid6: sse2x4 gen() 13556 MB/s
[ 10.230897] raid6: sse2x2 xor() 8014 MB/s [ 10.402886] raid6: sse2x4 xor() 9791 MB/s
[ 10.310953] raid6: sse2x4 gen() 12390 MB/s [ 10.411838] raid6: using algorithm sse2x4 gen() 13556 MB/s
[ 10.411024] raid6: sse2x4 xor() 9550 MB/s [ 10.412707] raid6: .... xor() 9791 MB/s, rmw enabled
[ 10.443038] raid6: using algorithm sse2x4 gen() 12390 MB/s [ 10.413507] raid6: using ssse3x2 recovery algorithm
[ 10.476479] raid6: .... xor() 9550 MB/s, rmw enabled [ 10.417465] xor: automatically using best checksumming function:
[ 10.492287] raid6: using ssse3x2 recovery algorithm [ 10.531095] avx : 21319.000 MB/sec
[ 10.542918] xor: automatically using best checksumming function: [ 10.543811] async_tx: api initialized (async)
[ 10.635189] avx : 20342.000 MB/sec [ 10.557793] md: raid6 personality registered for level 6
[ 10.646295] async_tx: api initialized (async) [ 10.570199] md: raid5 personality registered for level 5
[ 10.668139] md: raid6 personality registered for level 6 [ 10.574239] md: raid4 personality registered for level 4
[ 10.676079] md: raid5 personality registered for level 5 [ 10.579652] md: raid10 personality registered for level 10
[ 10.685934] md: raid4 personality registered for level 4
[ 10.702205] md: raid10 personality registered for level 10
done. done.
Begin: Running /scripts/init-premount ... done. Begin: Running[ 10.653261] Btrfs loaded
/scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... [ 10.741323] Btrfs loaded Begin: Running /scripts/local-premount ... Scanning for Btrfs filesystems
Scanning for Btrfs filesystems
done. done.
Warning: fsck not present, so skipping root file system Warning: fsck not present, so skipping root file[ 10.849322] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 11.008982] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) system
done. done.
Begin: Running /scripts/local-bottom ... done. Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done. Begin: Running /scripts/init-bottom ... done.
[ 11.735013] random: nonblocking pool is initialized [ 11.748151] 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.085862] 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.108306] systemd[1]: Detected virtualization oracle.
[ 12.220303] systemd[1]: Detected architecture x86-64. [ 12.125664] systemd[1]: Detected architecture x86-64.
Welcome to Ubuntu 16.04.3 LTS! Welcome to Ubuntu 16.04.3 LTS!
[ 12.264361] systemd[1]: Set hostname to <ubuntu>. [ 12.246958] systemd[1]: Set hostname to <ubuntu>.
[ 12.307423] systemd[1]: Initializing machine ID from random generator. [ 12.338953] systemd[1]: Initializing machine ID from random generator.
[ 12.315452] systemd[1]: Installed transient /etc/machine-id file. [ 12.388117] systemd[1]: Installed transient /etc/machine-id file.
[ 13.740939] systemd[1]: Listening on Journal Audit Socket. [ 13.782166] systemd[1]: Started Trigger resolvconf update for networkd DNS.
[ 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.
[ 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. [ OK ] Started Trigger resolvconf update for networkd DNS.
[ 14.087013] systemd[1]: Listening on Journal Socket (/dev/log). [ 13.927971] systemd[1]: Listening on Journal Socket.
[ 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. [ OK ] Listening on Journal Socket.
[ 14.301909] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 14.050679] systemd[1]: Reached target Encrypted Volumes.
[ OK ] Reached target Encrypted Volumes.
[ 14.207885] systemd[1]: Listening on udev Control Socket.
[ OK ] Listening on udev Control Socket.
[ 14.276130] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ OK ] Started Forward Password Requests to Wall Directory Watch.
[ 14.312064] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ OK ] Set up automount Arbitrary Executab...ats 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. [ 14.359449] systemd[1]: Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket (/dev/log).
[ 14.419708] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ OK ] Listening on Device-mapper event daemon FIFOs. [ OK ] Listening on Device-mapper event daemon FIFOs.
[ 14.504320] systemd[1]: Listening on LVM2 metadata daemon socket. [ 14.524012] systemd[1]: Listening on Journal Audit Socket.
[ OK ] Listening on LVM2 metadata daemon socket. [ OK ] Listening on Journal Audit Socket.
[ 14.607666] systemd[1]: Listening on LVM2 poll daemon socket. [ 14.643610] systemd[1]: Listening on LVM2 poll daemon socket.
[ OK ] Listening on LVM2 poll daemon socket. [ OK ] Listening on LVM2 poll daemon socket.
[ 14.647616] systemd[1]: Reached target Encrypted Volumes. [ 14.772431] systemd[1]: Created slice System Slice.
[ OK ] Reached target Encrypted Volumes.
[ 14.707595] systemd[1]: Created slice System Slice.
[ OK ] Created slice System Slice. [ OK ] Created slice System Slice.
[ 14.768431] systemd[1]: Starting Create list of required static device nodes for the current kernel... [ 14.880585] systemd[1]: Mounting Debug File System...
Starting Create list of required st... nodes for the current kernel... Mounting Debug File System...
[ 14.980473] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 15.005033] systemd[1]: Starting Nameserver information manager...
[ OK ] Created slice system-serial\x2dgetty.slice.
[ 15.081470] systemd[1]: Starting Nameserver information manager...
Starting Nameserver information manager... Starting Nameserver information manager...
[ 15.137240] systemd[1]: Reached target Slices. [ 15.133166] systemd[1]: Mounting Huge Pages File System...
[ OK ] Reached target Slices. Mounting Huge Pages File System...
[ 15.164057] systemd[1]: Starting Journal Service... [ 15.237000] systemd[1]: Created slice system-serial\x2dgetty.slice.
Starting Journal Service... [ OK ] Created slice system-serial\x2dgetty.slice.
[ 15.251588] systemd[1]: Starting Load Kernel Modules... [ 15.349575] systemd[1]: Starting Load Kernel Modules...
Starting Load Kernel Modules... Starting Load Kernel Modules...
[ 15.267266] systemd[1]: Starting Uncomplicated firewall... [ 15.405706] systemd[1]: Starting Remount Root and Kernel File Systems...
Starting Remount[ 15.438069] EXT4-fs (sda1): re-mounted. Opts: (null)
Root and Kernel File Systems...
[ 15.466875] Loading iSCSI transport class v2.0-870.
[ 15.491978] systemd[1]: Starting Set console keymap...
Starting Set console keymap...
[ 15.539490] systemd[1]: Mounting POSIX Message Queue File System...
Mounting POSIX M[ 15.628703] iscsi: registered transport (tcp)
essage Queue File System...
[ 15.715435] systemd[1]: Starting Uncomplicated firewall...
Starting Uncomplicated firewall... Starting Uncomplicated firewall...
[ 15.269639] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... [ 15.859696] systemd[1]: Listening on Syslog Socket.
[ OK [0[ 15.901618] iscsi: registered transport (iser)
m] Listening on Syslog Socket.
[ 15.939618] systemd[1]: Starting Journal Service...
Starting Journal Service...
[ 16.027205] systemd[1]: Listening on udev Kernel Socket.
[ OK ] Listening on udev Kernel Socket.
[ 16.176118] systemd[1]: Reached target Swap.
[ OK ] Reached target Swap.
[ 16.264618] systemd[1]: Listening on LVM2 metadata daemon socket.
[ OK ] Listening on LVM2 metadata daemon socket.
[ 16.417702] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Starting Monitoring of LVM2 mirrors... dmeventd or progress polling... Starting Monitoring of LVM2 mirrors... dmeventd or progress polling...
[ 15.320533] systemd[1]: Starting Remount Root and Kernel File Systems... [ 16.567796] systemd[1]: Reached target User and Group Name Lookups.
Starting Remount Root and Kernel File Systems...
[ 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.773396] iscsi: registered transport (tcp)
[ 15.819555] systemd[1]: Reached target User and Group Name Lookups.
[ OK ] Reached target User and Group Name Lookups. [ OK ] Reached target User and Group Name Lookups.
[ 15.827943] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe. [ 16.607476] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ OK ] Listening on /dev/initctl Compatibility Named Pipe. [ OK ] Listening on /dev/initctl Compatibility Named Pipe.
[ 15.862324] systemd[1]: Mounted Debug File System. [ 16.647548] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ 16.661229] systemd[1]: Reached target Slices.
[ OK ] Reached target Slices.
[ 16.680641] 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...
[ 16.836599] systemd[1]: Mounted Debug File System.
[ OK ] Mounted Debug File System. [ OK ] Mounted Debug File System.
[ 15.869317] systemd[1]: Mounted Huge Pages File System. [ 16.895784] systemd[1]: Mounted Huge Pages File System.
[ OK ] Mounted Huge Pages File System. [ OK ] Mounted Huge Pages File System.
[ 15.877517] systemd[1]: Mounted POSIX Message Queue File System. [ 17.015843] systemd[1]: Mounted POSIX Message Queue File System.
[ OK ] Mounted POSIX Message Queue File System. [ OK ] Mounted POSIX Message Queue File System.
[ 15.889047] systemd[1]: Started Journal Service. [ 17.140286] systemd[1]: Started Journal Service.
[ OK ] 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. [ OK ] Started Load Kernel Modules.
[ OK ] Started Uncomplicated firewall.
[ OK ] Started Remount Root and Kernel File Systems. [ OK ] Started Remount Root and Kernel File Systems.
[ OK ] Started Set console keymap. [ OK ] Started Set console keymap.
[ OK ] Started Uncomplicated firewall.
[ OK ] Started Create list of required sta...ce nodes for the current kernel.
[ OK ] Started Nameserver information manager. [ OK ] Started Nameserver information manager.
[ OK ] Started LVM2 metadata daemon. [ OK ] Started LVM2 metadata daemon.
Starting Create Static Device Nodes in /dev...
Starting Initial cloud-init job (pre-networking)...
Starting udev Coldplug all Devices... Starting udev Coldplug all Devices...
Starting Load/Save Random Seed... Starting Load/Save Random Seed...
Starting Initial cloud-init job (pre-networking)...
Mounting FUSE Control File System...
Starting Apply Kernel Variables... Starting Apply Kernel Variables...
Starting Create Static Device Nodes in /dev... Mounting FUSE Control File System...
Starting Flush Journal to Persistent Storage... Starting Flush Journal to Persistent Storage...
[ OK ] Mounted FUSE Control File System. [ OK ] Mounted FUSE Control File System.
[ OK ] Started Load/Save Random Seed. [ OK ] Started Load/Save Random Seed.
[ OK ] Started udev Coldplug all Devices. [ OK ] Started udev Coldplug all Devices.
[ OK ] Started Apply Kernel Variables. [ 18.275740] systemd-journald[407]: Received request to flush runtime journal from PID 1
[ OK ] Started Monitoring of LVM2 mirrors,...ng dmeventd or progress polling.
[ OK ] Started Flush Journal to Persistent Storage. [ OK ] Started Flush Journal to Persistent Storage.
[ OK ] Started Monitoring of LVM2 mirrors,...ng dmeventd or progress polling.
[ OK ] Started Create Static Device Nodes in /dev. [ OK ] Started Create Static Device Nodes in /dev.
[ OK ] Started Apply Kernel Variables.
Starting udev Kernel Device Manager... Starting udev Kernel Device Manager...
[ OK ] Started 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 (Pre).
[ OK ] Reached target Local File Systems. [ OK ] Reached target Local File Systems.
Starting LSB: AppArmor initialization...
Starting Create Volatile Files and Directories... Starting Create Volatile Files and Directories...
Starting Commit a transient machine-id on disk...
Starting Tell Plymouth To Write Out Runtime Data...
Starting Set console font and keymap... Starting Set console font and keymap...
[ OK ] Started Dispatch Password Requests to Console Directory Watch. Starting Tell Plymouth To Write Out Runtime Data...
[ OK ] Started Commit a transient machine-id on disk. Starting Commit a transient machine-id on disk...
[ OK ] Started Tell Plymouth To Write Out Runtime Data. Starting LSB: AppArmor initialization...
[ OK ] Started Create Volatile Files and Directories. [ OK ] Started Create Volatile Files and Directories.
[ OK ] Started Tell Plymouth To Write Out Runtime Data.
[ OK ] Started Commit a transient machine-id on disk.
[ OK ] Found device /dev/ttyS0.
[ OK ] Reached target System Time Synchronized. [ OK ] Reached target System Time Synchronized.
Starting Update UTMP about System Boot/Shutdown... Starting Update UTMP about System Boot/Shutdown...
[ OK ] Started 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 ] Started Set console font and keymap.
[ OK ] Created slice system-getty.slice. [ OK ] Created slice system-getty.slice.
[ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[ OK ] Started LSB: AppArmor initialization. [ OK ] Started LSB: AppArmor initialization.
[ 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. [ 25.206203] cloud-init[435]: Cloud-init v. 0.7.9 running 'init-local' at Thu, 11 Jan 2018 12:31:26 +0000. Up 23.85 seconds.
[ OK ] Started Initial cloud-init job (pre-networking). [ OK ] Started Initial cloud-init job (pre-networking).
[ OK ] Reached target Network (Pre). [ OK ] Reached target Network (Pre).
Starting Raise network interfaces... Starting Raise network interfaces...
[ OK ] Started Raise network interfaces. [ OK ] Started Raise network interfaces.
[ OK ] Reached target Network. [ OK ] Reached target Network.
Starting Initial cloud-init job (metadata service crawler)... Starting 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. [ 28.497603] cloud-init[943]: Cloud-init v. 0.7.9 running 'init' at Thu, 11 Jan 2018 12:31:28 +0000. Up 26.17 seconds.
[ 26.187860] cloud-init[949]: ci-info: +++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++ [ 28.539234] cloud-init[943]: 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). [ OK ] Started Initial cloud-init job (metadata service crawler).
[ 26.249930] cloud-init[949]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+ [ OK ] Reached target System Initialization.
[ 26.269518] cloud-init[949]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | . | 02:0a:1a:84:64:1f | [ 28.587103] cloud-init[943]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
[ 26.285244] cloud-init[949]: ci-info: | enp0s3 | True | fe80::a:1aff:fe84:641f/64 | . | link | 02:0a:1a:84:64:1f | [ 28.692940] cloud-init[943]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
[ OK ] Reached target Network is Online.
Starting iSCSI initiator daemon (iscsid)...
[ OK ] Reached target Cloud-config availability.
[ 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. [ OK ] Listening on D-Bus System Message Bus Socket.
[ OK ] Started Timer to automatically refresh installed snaps. [ OK [ 28.775827] cloud-init[943]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
[ OK ] Started Timer to automatically fetch and run repair assertions. [ 28.821847] cloud-init[943]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | . | 02:0a:1a:84:64:1f |
Starting LXD - unix socket. [ 28.821903] cloud-init[943]: ci-info: | enp0s3 | True | fe80::a:1aff:fe84:641f/64 | . | link | 02:0a:1a:84:64:1f |
[ 28.821944] cloud-init[943]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | . | . |
[ 28.822023] cloud-init[943]: ci-info: | lo | True | ::1/128 | . | host | . |
[ 28.822074] cloud-init[943]: ci-info: +--------+------+---------------------------+---------------+-------+-------------------+
[ 28.822115] cloud-init[943]: ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
[ 28.822156] cloud-init[943]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
[ 28.822200] cloud-init[943]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
[ 28.822239] cloud-init[943]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
[ 28.822279] cloud-init[943]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | enp0s3 | UG |
[ 28.822318] cloud-init[943]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | enp0s3 | U |
[ 28.822359] cloud-init[943]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
[ 28.822456] cloud-init[943]: Generating public/private rsa key pair.
[ 28.822505] cloud-init[943]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
[ 28.822548] cloud-init[943]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
[ 28.822586] cloud-init[943]: The key fingerprint is:
[ 28.822626] cloud-init[943]: SHA256:o0sNKi1WQqtE1KoTNwAAM14abegfgjm6q7qM7missYo root@ubuntu-xenial
[ 28.822665] cloud-init[943]: The key's randomart image is:
[ 28.822704] cloud-init[943]: +---[RSA 2048]----+
[ 28.822746] cloud-init[943]: |Xo+. |
[ 28.822784] cloud-init[943]: |++++ |
[ 28.822824] cloud-init[943]: |o*+ |
[ 28.822861] cloud-init[943]: |*=oo |
[ 28.822901] cloud-init[943]: |o==.o . S |
[ 28.822939] cloud-init[943]: |=. = . + . |
[ 28.823005] cloud-init[943]: |+o+ o o . |
[ 28.823047] cloud-init[943]: |** o . . |
[ 28.823086] cloud-init[943]: |E* . |
[ 28.823125] cloud-init[943]: +----[SHA256]-----+
[ 28.823163] cloud-init[943]: Generating public/private dsa key pair.
[ 28.823201] cloud-init[943]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
[ 28.823239] cloud-init[943]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
[ 28.823278] cloud-init[943]: The key fingerprint is:
[ 28.823316] cloud-init[943]: SHA256:3mMTMFxtvYRPDyDDHo/e9F5QVhqfLQO/9qiPSoP4zXE root@ubuntu-xenial
[ 28.823356] cloud-init[943]: The key's randomart image is:
[ 28.823397] cloud-init[943]: +---[DSA 1024]----+
[ 28.823436] cloud-init[943]: | .+.o+. o|
[ 28.823475] cloud-init[943]: | . .oo+o=+=|
[ 28.823512] cloud-init[943]: | +. = +=Bo|
[ 28.823552] cloud-init[943]: | oo o ++.|
[ 28.823591] cloud-init[943]: | S..o .o. |
[ 28.823629] cloud-init[943]: | o o.....o.|
[ 28.823668] cloud-init[943]: | . o O E....|
[ 28.823709] cloud-init[943]: | . = * o. |
[ 28.823747] cloud-init[943]: | . +.o.. |
[ 28.823786] cloud-init[943]: +----[SHA256]-----+
[ 28.823824] cloud-init[943]: Generating public/private ecdsa key pair.
[ 28.823863] cloud-init[943]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
[ 28.823900] cloud-init[943]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
[ 28.823967] cloud-init[943]: The key fingerprint is:
[ 28.824012] cloud-init[943]: SHA256:TGn3WOt4BJ7GFh41U5y/3eYWp2+H4r3clNbLWf08cEo root@ubuntu-xenial
[ 29.770746] cloud-init[943]: The key's randomart image is:
[ 29.770781] cloud-init[943]: +---[ECDSA 256]---+
[ 29.770805] cloud-init[943]: | +o.. |
[ 29.770827] cloud-init[943]: | . . oo |
[ 29.770855] cloud-init[943]: | + = . . |
[ 29.770878] cloud-init[943]: | + = O . .|
[ 29.770900] cloud-init[943]: | S O + +|
[ 29.770921] cloud-init[943]: | o + E +O|
[ 29.770945] cloud-init[943]: | . + +BB|
[ 29.770967] cloud-init[943]: | ..+==X|
[ 29.770988] cloud-init[943]: | ...+OB|
[ 29.771009] cloud-init[943]: +----[SHA256]-----+
[ 29.771031] cloud-init[943]: Generating public/private ed25519 key pair.
[ 29.771053] cloud-init[943]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
[ 29.771074] cloud-init[943]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
[ 29.771097] cloud-init[943]: The key fingerprint is:
[ 29.771120] cloud-init[943]: SHA256:0LEvcQOpVrlULRDMRUjIuTKIiza4LLhoZANZ58sZPn8 root@ubuntu-xenial
[ 29.771142] cloud-init[943]: The key's randomart image is:
[ 29.771164] cloud-init[943]: +--[ED25519 256]--+
[ 29.771185] cloud-init[943]: | . **X+. |
[ 29.771207] cloud-init[943]: | . . +.O+. . |
[ 29.771228] cloud-init[943]: | + + .=+.o. |
[ 29.771250] cloud-init[943]: |+ . = +..+ . |
[ 29.771272] cloud-init[943]: |+. o B S . |
[ 29.771294] cloud-init[943]: |+* * . |
[ 29.771316] cloud-init[943]: |*.o o |
[ 29.771371] cloud-init[943]: |=o . E |
[ 29.771558] cloud-init[943]: |=. . |
[ 29.771589] cloud-init[943]: +----[SHA256]-----+
] Started Timer to automatically refresh installed snaps.
[ OK ] Listening on ACPID Listen Socket.
[ OK ] Listening on UUID daemon activation socket.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Started ACPI Events Check. [ OK ] Started ACPI Events Check.
[ OK ] Reached target Paths. [ OK ] Reached target Paths.
Starting Socket activation for snappy daemon.
Starting LXD - unix socket.
[ OK ] Started Timer to automatically fetch and run repair assertions.
[ OK ] Reached target Network is Online.
[ OK ] Started Daily apt download activities. [ OK ] Started Daily apt download activities.
[ OK ] Started Daily apt upgrade and clean 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 ] Reached target Timers.
[ OK ] Listening on LXD - unix socket. Starting iSCSI initiator daemon (iscsid)...
[ OK ] Reached target Cloud-config availability.
[ OK ] Listening on Socket activation for snappy daemon. [ OK ] Listening on Socket activation for snappy daemon.
[ OK ] Started iSCSI initiator daemon (iscsid). [ OK ] Listening on LXD - unix socket.
Starting Login to default iSCSI targets...
[ OK ] Reached target Sockets. [ OK ] Reached target Sockets.
[ OK ] Reached target Basic System. [ OK ] Reached target Basic System.
Starting Apply the settings specified in cloud-config...
Starting Accounts Service...
[ OK ] Started Regular background program processing daemon. [ OK ] Started Regular background program processing daemon.
Starting Apply the settings specified in cloud-config...
[ OK ] Started D-Bus System Message Bus. [ 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. [ OK ] Started Deferred execution scheduler.
Starting Snappy daemon... Starting LSB: MD monitoring daemon...
[ OK ] Started FUSE filesystem for LXC. Starting System Logging Service...
Starting /etc/rc.local Compatibility...
Starting LSB: Record successful boot for GRUB... Starting LSB: Record successful boot for GRUB...
Starting Pollinate to seed the pseudo random number generator...
Starting Accounts Service...
Starting LXD - container startup/shutdown... Starting LXD - container startup/shutdown...
[ OK ] Started Unattended Upgrades Shutdown.
Starting Login Service...
Starting /etc/rc.local Compatibility...
[ OK ] Started ACPI event daemon.
[ OK ] Started FUSE filesystem for LXC.
Starting Snappy daemon...
[ OK ] Started /etc/rc.local Compatibility. [ OK ] Started /etc/rc.local Compatibility.
[ OK ] Started Login Service. [ OK ] Started Login Service.
Starting Authenticate and Authorize Users to Run Privileged Tasks... [ OK ] Started iSCSI initiator daemon (iscsid).
Starting Login to default iSCSI targets...
[ 32.353346] cloud-init[1038]: Generating locales (this might take a while)...
[ OK ] Started LSB: Record successful boot for GRUB. [ OK ] Started LSB: Record successful boot for GRUB.
[ OK ] Started Login to default iSCSI targets. [ OK ] Started Login to default iSCSI targets.
[ OK ] Reached target Remote File Systems (Pre). [ OK ] Reached target Remote File Systems (Pre).
[ OK ] Reached target Remote File Systems. [ 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 LSB: automatic crash report generation...
Starting Permit User Sessions...
Starting LSB: VirtualBox Linux Additions... Starting LSB: VirtualBox Linux Additions...
Starting LSB: daemon to balance interrupts for SMP systems...
Starting Permit User Sessions...
Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
[ OK ] Started LSB: Set the CPU Frequency Scaling governor to "ondemand". [ OK ] Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
[ OK ] Started LSB: MD monitoring daemon.
[ OK ] Started Permit User Sessions. [ OK ] Started Permit User Sessions.
Starting Hold until boot process finishes up... Starting Hold until boot process finishes up...
Starting Terminate Plymouth Boot Screen... Starting Terminate Plymouth Boot Screen...
[ OK ] Started Hold until boot process finishes up. [ OK ] Started Hold until boot process finishes up.
[ OK ] Started Terminate Plymouth Boot Screen. [ 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 Getty on tty1.
[ OK ] Started Serial Getty on ttyS0. [ OK ] Started Serial Getty on ttyS0.
[ OK ] Reached target Login Prompts. [ OK ] Reached target Login Prompts.
[ OK ] Started LSB: automatic crash report generation. Starting Set console scheme...
[ OK ] Started System Logging Service. [ OK ] Started System Logging Service.
[ OK ] Started LSB: daemon to balance interrupts for SMP systems.
[ OK ] Started Set console scheme. [ OK ] Started Set console scheme.
[ OK ] Started LSB: MD monitoring daemon.
[ OK ] Started LSB: automatic crash report generation.
[ OK ] Started LSB: daemon to balance interrupts for SMP systems.
[ OK ] Started LSB: VirtualBox Linux Additions.
Starting Authenticate and Authorize Users to Run Privileged Tasks...
[ OK ] Started Authenticate and Authorize Users to Run Privileged Tasks. [ OK ] Started Authenticate and Authorize Users to Run Privileged Tasks.
[ OK ] Started Accounts Service. [ OK ] Started Accounts Service.
[ OK ] Started LSB: VirtualBox Linux Additions. [ 36.144944] cloud-init[1038]: en_US.UTF-8... done
[ 36.173098] cloud-init[1038]: Generation complete.
[ OK ] Started Pollinate to seed the pseudo random number generator. [ OK ] Started Pollinate to seed the pseudo random number generator.
Starting OpenBSD Secure Shell server... Starting OpenBSD Secure Shell server...
[ 32.843670] cloud-init[1053]: en_US.UTF-8... done [ OK ] Started OpenBSD Secure Shell server.
[ 32.880506] cloud-init[1053]: Generation complete.
[ OK ] Started Snappy daemon. [ OK ] Started Snappy daemon.
Starting Auto import assertions from block devices... Starting Auto import assertions from block devices...
[ OK ] Started OpenBSD Secure Shell server.
[ OK ] Started Auto import assertions from block devices. [ OK ] Started Auto import assertions from block devices.
[ OK ] Started LXD - container startup/shutdown.
[ OK ] Reached target Multi-User System.
[ OK ] Reached target Graphical Interface.
Starting Update UTMP about System Runlevel Changes...
[ OK ] Started Update UTMP about System Runlevel Changes.
Stopping OpenBSD Secure Shell server...
[ OK ] Stopped OpenBSD Secure Shell server.
Starting OpenBSD Secure Shell server...
[ OK ] Started OpenBSD Secure Shell server.
[ 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.
Ubuntu 16.04.3 LTS ubuntu-xenial ttyS0 Ubuntu 16.04.3 LTS ubuntu-xenial ttyS0
ubuntu-xenial login: <14>Jan 10 16:03:34 ec2: ubuntu-xenial login: [ 40.140064] cloud-init[1038]: Cloud-init v. 0.7.9 running 'modules:config' at Thu, 11 Jan 2018 12:31:34 +0000. Up 31.48 seconds.
<14>Jan 10 16:03:34 ec2: ############################################################# ci-info: no authorized ssh keys fingerprints found for user ubuntu.
<14>Jan 10 16:03:34 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS----- <14>Jan 11 12:31:44 ec2:
<14>Jan 10 16:03:34 ec2: 1024 SHA256:c2eN9DF2kIpZX50L3OWzFTa4MttmO0JlY5gZZgtwr5E root@ubuntu-xenial (DSA) <14>Jan 11 12:31:44 ec2: #############################################################
<14>Jan 10 16:03:34 ec2: 256 SHA256:yGhKvQgv6NnGVGDemcVUr/7OKu1q9mnO+aJzwBfOdfk root@ubuntu-xenial (ECDSA) <14>Jan 11 12:31:44 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
<14>Jan 10 16:03:34 ec2: 256 SHA256:XK5E/qNWCCddNP1CJXEJKzCtDrzn5vMyD1noBWN6x2o root@ubuntu-xenial (ED25519) <14>Jan 11 12:31:44 ec2: 1024 SHA256:3mMTMFxtvYRPDyDDHo/e9F5QVhqfLQO/9qiPSoP4zXE root@ubuntu-xenial (DSA)
<14>Jan 10 16:03:34 ec2: 2048 SHA256:2PJNGRceXZWnB4Q+XogrPrFDicobpAkaU/GqVugBU24 root@ubuntu-xenial (RSA) <14>Jan 11 12:31:44 ec2: 256 SHA256:TGn3WOt4BJ7GFh41U5y/3eYWp2+H4r3clNbLWf08cEo root@ubuntu-xenial (ECDSA)
<14>Jan 10 16:03:34 ec2: -----END SSH HOST KEY FINGERPRINTS----- <14>Jan 11 12:31:44 ec2: 256 SHA256:0LEvcQOpVrlULRDMRUjIuTKIiza4LLhoZANZ58sZPn8 root@ubuntu-xenial (ED25519)
<14>Jan 10 16:03:34 ec2: ############################################################# <14>Jan 11 12:31:44 ec2: 2048 SHA256:o0sNKi1WQqtE1KoTNwAAM14abegfgjm6q7qM7missYo root@ubuntu-xenial (RSA)
<14>Jan 11 12:31:44 ec2: -----END SSH HOST KEY FINGERPRINTS-----
<14>Jan 11 12:31:44 ec2: #############################################################
-----BEGIN SSH HOST KEY KEYS----- -----BEGIN SSH HOST KEY KEYS-----
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMGlfUVx3oNaWB87lo3tMMxufQ/nHy9OqPRRTKl46eEc4kgtbb+dCtg0kJkFBSc6evagLVrI3TGH5KMFMq0wRZk= root@ubuntu-xenial ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNwQngoyEP+4QjVe6pwrcMtdQQM7lisB1uPAnuhJiN+sxhzE9HPI6HYiWzi0rQRKa6R5BcJuUOa/hLmW0Oz599U= root@ubuntu-xenial
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAcDJT6ZiBpmtecQylYNyylt15uMZYJsEx8XZDzvuVt1 root@ubuntu-xenial ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEGFGfydIbuAZQ3zTUG3NHSagwIeWrD5GpeNKex1Vfzu root@ubuntu-xenial
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCcFZ3hP+cyS0lcK7oquVYI7IhskVJy1auaXyk9BjH8oK2iwEdci9pJaGeiNV8EDiOq2iePx5OuDiIDNaoBWztvl0aUcLOWzcMmKjrhytXYlUc43rp+BIPCBeZKToLFMlovI19nha8gCayy2IU3MtLX7DAsebj6RVdgOGrFZ8gewlah8v7M/i/KKwFcQ7LpqQhS8TQ9lWJeqI6lTjZPNc4h445cG5lk2LPrIzVVqETnuShZQ6K/red6lR1ImFmjkaxrdIhNMH8eH3W/2Nl0b8wqEWEhSPFubumD95Wug0ECYh4sutu6yZtMLNI9JEJYHtVlUAzi9V8+XKviaKhvAtaD root@ubuntu-xenial ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDnTsXwSg7UIi0QE+2+5/tGdRIjnWdlj0XvRlG3U4nBWPPSJ1E5vXKfmIsJCVXmyzEyLnhTguv4UKVqymVf1Yg3wUdqDnaFB86Ac1XJ9MGJ4EtlZYtIB5EZHzaGVnX7IIlST5TnZ+OQ5sEn10hs1ybz4TIGpqNSVLppV1RUmDGxsWTzW74wKZyFNPJaJh606TNJlImA8PnV1BVsF3+xfeQlp4wTlXHtDYif8SmaTQ0OuSA61Xa3RIjkZeItUw0ThicBXssWWr9NcV4LZ7vQdeC4Ce+VKeAg/LSsJHbZAZv4htcrZmQDGwX/wjl+Yv1d2COKilHC2MGkPmygFq5zb6Kz root@ubuntu-xenial
-----END SSH HOST KEY KEYS----- -----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. [ 41.478741] cloud-init[1346]: Cloud-init v. 0.7.9 running 'modules:final' at Thu, 11 Jan 2018 12:31:43 +0000. Up 40.46 seconds.
[ 36.119428] cloud-init[1341]: ci-info: no authorized ssh keys fingerprints found for user ubuntu. [ 41.479193] cloud-init[1346]: 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 [ 41.479420] cloud-init[1346]: Cloud-init v. 0.7.9 finished at Thu, 11 Jan 2018 12:31:44 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net]. Up 41.46 seconds
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment