diff --git a/scripts/apache/telegraf_apache_template.conf b/scripts/apache/telegraf_apache_template.conf new file mode 100644 index 0000000000000000000000000000000000000000..99f334996bd9f67a4465cd27950978a2803d69d4 --- /dev/null +++ b/scripts/apache/telegraf_apache_template.conf @@ -0,0 +1,133 @@ +# Telegraf configuration + +# Telegraf is entirely plugin driven. All metrics are gathered from the +# declared inputs, and sent to the declared outputs. + +# Plugins must be declared in here to be active. +# To deactivate a plugin, comment out the name and any variables. + +# Use 'telegraf -config telegraf.conf -test' to see what metrics a config +# file would generate. + +# Global tags can be specified here in key="value" format. +[global_tags] + # location of the data centre + location="{{LOCATION}}" + # media service template id + sfc="{{SFC_ID}}" + # media service instance + sfc_i="{{SFC_ID_INSTANCE}}" + # service function type + sf="{{SF_ID}}" + # service function instance id + sf_i="{{SF_ID_INSTANCE}}" + # ipendpoint id aka surrogate instance + ipendpoint="{{IP_ENDPOINT_ID}}" + +# Configuration for telegraf agent +[agent] + ## Default data collection interval for all inputs + interval = "10s" + ## Rounds collection interval to 'interval' + ## ie, if interval="10s" then always collect on :00, :10, :20, etc. + round_interval = true + + ## Telegraf will cache metric_buffer_limit metrics for each output, and will + ## flush this buffer on a successful write. + metric_buffer_limit = 1000 + ## Flush the buffer whenever full, regardless of flush_interval. + flush_buffer_when_full = true + + ## Collection jitter is used to jitter the collection by a random amount. + ## Each plugin will sleep for a random time within jitter before collecting. + ## This can be used to avoid many plugins querying things like sysfs at the + ## same time, which can have a measurable effect on the system. + collection_jitter = "0s" + + ## Default flushing interval for all outputs. You shouldn't set this below + ## interval. Maximum flush_interval will be flush_interval + flush_jitter + flush_interval = "10s" + ## Jitter the flush interval by a random amount. This is primarily to avoid + ## large write spikes for users running a large number of telegraf instances. + ## ie, a jitter of 5s and interval 10s means flushes will happen every 10-15s + flush_jitter = "0s" + + ## Logging configuration: + ## Run telegraf in debug mode + debug = false + ## Run telegraf in quiet mode + quiet = false + ## Specify the log file name. The empty string means to log to stdout. + logfile = "G:/Telegraf/telegraf.log" + + ## Override default hostname, if empty use os.Hostname() + hostname = "" + + +############################################################################### +# OUTPUTS # +############################################################################### + +# Configuration for influxdb server to send metrics to +[[outputs.influxdb]] + # The full HTTP or UDP endpoint URL for your InfluxDB instance. + # Multiple urls can be specified but it is assumed that they are part of the same + # cluster, this means that only ONE of the urls will be written to each interval. + # urls = ["udp://127.0.0.1:8089"] # UDP endpoint example + urls = ["{{INFLUXDB_URL}}"] # required + # The target database for metrics (telegraf will create it if not exists) + database = "{{DATABASE_NAME}}" # required + # Precision of writes, valid values are "ns", "us" (or "µs"), "ms", "s", "m", "h". + # note: using second precision greatly helps InfluxDB compression + precision = "s" + + ## Write timeout (for the InfluxDB client), formatted as a string. + ## If not provided, will default to 5s. 0s means no timeout (not recommended). + timeout = "5s" + # username = "telegraf" + # password = "metricsmetricsmetricsmetrics" + # Set the user agent for HTTP POSTs (can be useful for log differentiation) + # user_agent = "telegraf" + # Set UDP payload size, defaults to InfluxDB UDP Client default (512 bytes) + # udp_payload = 512 + + +############################################################################### +# INPUTS # +############################################################################### +# # Influx HTTP write listener +[[inputs.http_listener]] + ## Address and port to host HTTP listener on + service_address = ":8186" + + ## timeouts + read_timeout = "10s" + write_timeout = "10s" + + ## HTTPS + #tls_cert= "/etc/telegraf/cert.pem" + #tls_key = "/etc/telegraf/key.pem" + + ## MTLS + #tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"] + +# Read Apache status information (mod_status) +[[inputs.apache]] + ## An array of URLs to gather from, must be directed at the machine + ## readable version of the mod_status page including the auto query string. + ## Default is "http://localhost/server-status?auto". + urls = ["http://localhost/server-status?auto"] + + ## Credentials for basic HTTP authentication. + # username = "myuser" + # password = "mypassword" + + ## Maximum time to receive response. + # response_timeout = "5s" + + ## Optional SSL Config + # ssl_ca = "/etc/telegraf/ca.pem" + # ssl_cert = "/etc/telegraf/cert.pem" + # ssl_key = "/etc/telegraf/key.pem" + ## Use SSL but skip chain & host verification + # insecure_skip_verify = false \ No newline at end of file diff --git a/scripts/mongo/install-mongo.sh b/scripts/mongo/install-mongo.sh new file mode 100644 index 0000000000000000000000000000000000000000..ceac35bb7b4b292e369ba28d95c4462da00df8f7 --- /dev/null +++ b/scripts/mongo/install-mongo.sh @@ -0,0 +1,35 @@ +#!/bin/bash +#///////////////////////////////////////////////////////////////////////// +#// +#// (c) University of Southampton IT Innovation Centre, 2017 +#// +#// Copyright in this software belongs to University of Southampton +#// IT Innovation Centre of Gamma House, Enterprise Road, +#// Chilworth Science Park, Southampton, SO16 7NS, UK. +#// +#// This software may not be used, sold, licensed, transferred, copied +#// or reproduced in whole or in part in any manner or form or in or +#// on any media by any person other than in accordance with the terms +#// of the Licence Agreement supplied with the software, or otherwise +#// without the prior written consent of the copyright owners. +#// +#// This software is distributed WITHOUT ANY WARRANTY, without even the +#// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +#// PURPOSE, except where stated in the Licence Agreement supplied with +#// the software. +#// +#// Created By : Michael Boniface +#// Created Date : 23/01/2018 +#// Created for Project : FLAME +#// +#///////////////////////////////////////////////////////////////////////// + +# Install apache +sudo apt-get update +sudo curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.2.tgz +sudo tar -zxvf mongodb-linux-x86_64-3.6.2.tgz +sudo mkdir -p mongodb +sudo cp -R -n mongodb-linux-x86_64-3.6.2/ mongodb +# Not sure if we need this, or how to do it. +#add the following line to your shell’s rc file (e.g. ~/.bashrc): +#export PATH=<mongodb-install-directory>/bin:$PATH \ No newline at end of file diff --git a/scripts/mongo/telegraf_mongo_template.conf b/scripts/mongo/telegraf_mongo_template.conf new file mode 100644 index 0000000000000000000000000000000000000000..e65c22f60894f586a0da06038b085885235aba63 --- /dev/null +++ b/scripts/mongo/telegraf_mongo_template.conf @@ -0,0 +1,128 @@ +# Telegraf configuration + +# Telegraf is entirely plugin driven. All metrics are gathered from the +# declared inputs, and sent to the declared outputs. + +# Plugins must be declared in here to be active. +# To deactivate a plugin, comment out the name and any variables. + +# Use 'telegraf -config telegraf.conf -test' to see what metrics a config +# file would generate. + +# Global tags can be specified here in key="value" format. +[global_tags] + # location of the data centre + location="{{LOCATION}}" + # media service template id + sfc="{{SFC_ID}}" + # media service instance + sfc_i="{{SFC_ID_INSTANCE}}" + # service function type + sf="{{SF_ID}}" + # service function instance id + sf_i="{{SF_ID_INSTANCE}}" + # ipendpoint id aka surrogate instance + ipendpoint="{{IP_ENDPOINT_ID}}" + +# Configuration for telegraf agent +[agent] + ## Default data collection interval for all inputs + interval = "10s" + ## Rounds collection interval to 'interval' + ## ie, if interval="10s" then always collect on :00, :10, :20, etc. + round_interval = true + + ## Telegraf will cache metric_buffer_limit metrics for each output, and will + ## flush this buffer on a successful write. + metric_buffer_limit = 1000 + ## Flush the buffer whenever full, regardless of flush_interval. + flush_buffer_when_full = true + + ## Collection jitter is used to jitter the collection by a random amount. + ## Each plugin will sleep for a random time within jitter before collecting. + ## This can be used to avoid many plugins querying things like sysfs at the + ## same time, which can have a measurable effect on the system. + collection_jitter = "0s" + + ## Default flushing interval for all outputs. You shouldn't set this below + ## interval. Maximum flush_interval will be flush_interval + flush_jitter + flush_interval = "10s" + ## Jitter the flush interval by a random amount. This is primarily to avoid + ## large write spikes for users running a large number of telegraf instances. + ## ie, a jitter of 5s and interval 10s means flushes will happen every 10-15s + flush_jitter = "0s" + + ## Logging configuration: + ## Run telegraf in debug mode + debug = false + ## Run telegraf in quiet mode + quiet = false + ## Specify the log file name. The empty string means to log to stdout. + logfile = "G:/Telegraf/telegraf.log" + + ## Override default hostname, if empty use os.Hostname() + hostname = "" + + +############################################################################### +# OUTPUTS # +############################################################################### + +# Configuration for influxdb server to send metrics to +[[outputs.influxdb]] + # The full HTTP or UDP endpoint URL for your InfluxDB instance. + # Multiple urls can be specified but it is assumed that they are part of the same + # cluster, this means that only ONE of the urls will be written to each interval. + # urls = ["udp://127.0.0.1:8089"] # UDP endpoint example + urls = ["{{INFLUXDB_URL}}"] # required + # The target database for metrics (telegraf will create it if not exists) + database = "{{DATABASE_NAME}}" # required + # Precision of writes, valid values are "ns", "us" (or "µs"), "ms", "s", "m", "h". + # note: using second precision greatly helps InfluxDB compression + precision = "s" + + ## Write timeout (for the InfluxDB client), formatted as a string. + ## If not provided, will default to 5s. 0s means no timeout (not recommended). + timeout = "5s" + # username = "telegraf" + # password = "metricsmetricsmetricsmetrics" + # Set the user agent for HTTP POSTs (can be useful for log differentiation) + # user_agent = "telegraf" + # Set UDP payload size, defaults to InfluxDB UDP Client default (512 bytes) + # udp_payload = 512 + + +############################################################################### +# INPUTS # +############################################################################### +# # Influx HTTP write listener +[[inputs.http_listener]] + ## Address and port to host HTTP listener on + service_address = ":8186" + + ## timeouts + read_timeout = "10s" + write_timeout = "10s" + + ## HTTPS + #tls_cert= "/etc/telegraf/cert.pem" + #tls_key = "/etc/telegraf/key.pem" + + ## MTLS + #tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"] + +[[inputs.mongodb]] + ## An array of URLs of the form: + ## "mongodb://" [user ":" pass "@"] host [ ":" port] + ## For example: + ## mongodb://user:auth_key@10.10.3.30:27017, + ## mongodb://10.10.3.33:18832, + servers = ["mongodb://127.0.0.1:27017"] + gather_perdb_stats = false + + ## Optional SSL Config + # ssl_ca = "/etc/telegraf/ca.pem" + # ssl_cert = "/etc/telegraf/cert.pem" + # ssl_key = "/etc/telegraf/key.pem" + ## Use SSL but skip chain & host verification + # insecure_skip_verify = false \ No newline at end of file diff --git a/scripts/nginx/install-nginx.sh b/scripts/nginx/install-nginx.sh new file mode 100644 index 0000000000000000000000000000000000000000..e64072619eff85bda68eeb1610493213aca64606 --- /dev/null +++ b/scripts/nginx/install-nginx.sh @@ -0,0 +1,29 @@ +#!/bin/bash +#///////////////////////////////////////////////////////////////////////// +#// +#// (c) University of Southampton IT Innovation Centre, 2017 +#// +#// Copyright in this software belongs to University of Southampton +#// IT Innovation Centre of Gamma House, Enterprise Road, +#// Chilworth Science Park, Southampton, SO16 7NS, UK. +#// +#// This software may not be used, sold, licensed, transferred, copied +#// or reproduced in whole or in part in any manner or form or in or +#// on any media by any person other than in accordance with the terms +#// of the Licence Agreement supplied with the software, or otherwise +#// without the prior written consent of the copyright owners. +#// +#// This software is distributed WITHOUT ANY WARRANTY, without even the +#// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +#// PURPOSE, except where stated in the Licence Agreement supplied with +#// the software. +#// +#// Created By : Michael Boniface +#// Created Date : 23/01/2018 +#// Created for Project : FLAME +#// +#///////////////////////////////////////////////////////////////////////// + +# Install apache +sudo apt-get update +sudo apt-get install nginx \ No newline at end of file diff --git a/scripts/nginx/telegraf_nginx_template.conf b/scripts/nginx/telegraf_nginx_template.conf new file mode 100644 index 0000000000000000000000000000000000000000..31c97d16ee761205e56d77adba38f74d950705bb --- /dev/null +++ b/scripts/nginx/telegraf_nginx_template.conf @@ -0,0 +1,127 @@ +# Telegraf configuration + +# Telegraf is entirely plugin driven. All metrics are gathered from the +# declared inputs, and sent to the declared outputs. + +# Plugins must be declared in here to be active. +# To deactivate a plugin, comment out the name and any variables. + +# Use 'telegraf -config telegraf.conf -test' to see what metrics a config +# file would generate. + +# Global tags can be specified here in key="value" format. +[global_tags] + # location of the data centre + location="{{LOCATION}}" + # media service template id + sfc="{{SFC_ID}}" + # media service instance + sfc_i="{{SFC_ID_INSTANCE}}" + # service function type + sf="{{SF_ID}}" + # service function instance id + sf_i="{{SF_ID_INSTANCE}}" + # ipendpoint id aka surrogate instance + ipendpoint="{{IP_ENDPOINT_ID}}" + +# Configuration for telegraf agent +[agent] + ## Default data collection interval for all inputs + interval = "10s" + ## Rounds collection interval to 'interval' + ## ie, if interval="10s" then always collect on :00, :10, :20, etc. + round_interval = true + + ## Telegraf will cache metric_buffer_limit metrics for each output, and will + ## flush this buffer on a successful write. + metric_buffer_limit = 1000 + ## Flush the buffer whenever full, regardless of flush_interval. + flush_buffer_when_full = true + + ## Collection jitter is used to jitter the collection by a random amount. + ## Each plugin will sleep for a random time within jitter before collecting. + ## This can be used to avoid many plugins querying things like sysfs at the + ## same time, which can have a measurable effect on the system. + collection_jitter = "0s" + + ## Default flushing interval for all outputs. You shouldn't set this below + ## interval. Maximum flush_interval will be flush_interval + flush_jitter + flush_interval = "10s" + ## Jitter the flush interval by a random amount. This is primarily to avoid + ## large write spikes for users running a large number of telegraf instances. + ## ie, a jitter of 5s and interval 10s means flushes will happen every 10-15s + flush_jitter = "0s" + + ## Logging configuration: + ## Run telegraf in debug mode + debug = false + ## Run telegraf in quiet mode + quiet = false + ## Specify the log file name. The empty string means to log to stdout. + logfile = "G:/Telegraf/telegraf.log" + + ## Override default hostname, if empty use os.Hostname() + hostname = "" + + +############################################################################### +# OUTPUTS # +############################################################################### + +# Configuration for influxdb server to send metrics to +[[outputs.influxdb]] + # The full HTTP or UDP endpoint URL for your InfluxDB instance. + # Multiple urls can be specified but it is assumed that they are part of the same + # cluster, this means that only ONE of the urls will be written to each interval. + # urls = ["udp://127.0.0.1:8089"] # UDP endpoint example + urls = ["{{INFLUXDB_URL}}"] # required + # The target database for metrics (telegraf will create it if not exists) + database = "{{DATABASE_NAME}}" # required + # Precision of writes, valid values are "ns", "us" (or "µs"), "ms", "s", "m", "h". + # note: using second precision greatly helps InfluxDB compression + precision = "s" + + ## Write timeout (for the InfluxDB client), formatted as a string. + ## If not provided, will default to 5s. 0s means no timeout (not recommended). + timeout = "5s" + # username = "telegraf" + # password = "metricsmetricsmetricsmetrics" + # Set the user agent for HTTP POSTs (can be useful for log differentiation) + # user_agent = "telegraf" + # Set UDP payload size, defaults to InfluxDB UDP Client default (512 bytes) + # udp_payload = 512 + + +############################################################################### +# INPUTS # +############################################################################### +# # Influx HTTP write listener +[[inputs.http_listener]] + ## Address and port to host HTTP listener on + service_address = ":8186" + + ## timeouts + read_timeout = "10s" + write_timeout = "10s" + + ## HTTPS + #tls_cert= "/etc/telegraf/cert.pem" + #tls_key = "/etc/telegraf/key.pem" + + ## MTLS + #tls_allowed_cacerts = ["/etc/telegraf/clientca.pem"] + +# Read Nginx's basic status information (ngx_http_stub_status_module) +[[inputs.nginx]] + ## An array of Nginx stub_status URI to gather stats. + urls = ["http://localhost/server_status"] + + ## Optional SSL Config + # ssl_ca = "/etc/telegraf/ca.pem" + # ssl_cert = "/etc/telegraf/cert.pem" + # ssl_key = "/etc/telegraf/key.pem" + ## Use SSL but skip chain & host verification + # insecure_skip_verify = false + + ## HTTP response timeout (default: 5s) + response_timeout = "5s" \ No newline at end of file diff --git a/ubuntu-xenial-16.04-cloudimg-console.log b/ubuntu-xenial-16.04-cloudimg-console.log new file mode 100644 index 0000000000000000000000000000000000000000..d937730067d9af69a30f028f9e212c4a3aff6eb2 --- /dev/null +++ b/ubuntu-xenial-16.04-cloudimg-console.log @@ -0,0 +1,709 @@ +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Initializing cgroup subsys cpuacct +[ 0.000000] Linux version 4.4.0-98-generic (buildd@lcy01-03) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) ) #121-Ubuntu SMP Tue Oct 10 14:24:03 UTC 2017 (Ubuntu 4.4.0-98.121-generic 4.4.90) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-98-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0 +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Centaur CentaurHauls +[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers' +[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. +[ 0.000000] x86/fpu: Using 'lazy' FPU context switches. +[ 0.000000] e820: BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable +[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved +[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffeffff] usable +[ 0.000000] BIOS-e820: [mem 0x000000007fff0000-0x000000007fffffff] ACPI data +[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] SMBIOS 2.5 present. +[ 0.000000] Hypervisor detected: KVM +[ 0.000000] e820: last_pfn = 0x7fff0 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR: Disabled +[ 0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too. +[ 0.000000] CPU MTRRs all blank - virtualized system. +[ 0.000000] x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC +[ 0.000000] found SMP MP-table at [mem 0x0009fff0-0x0009ffff] mapped at [ffff88000009fff0] +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] RAMDISK: [mem 0x36ac6000-0x3755afff] +[ 0.000000] ACPI: Early table checksum verification disabled +[ 0.000000] ACPI: RSDP 0x00000000000E0000 000024 (v02 VBOX ) +[ 0.000000] ACPI: XSDT 0x000000007FFF0030 00003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061) +[ 0.000000] ACPI: FACP 0x000000007FFF00F0 0000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061) +[ 0.000000] ACPI: DSDT 0x000000007FFF0470 0021FF (v02 VBOX VBOXBIOS 00000002 INTL 20100528) +[ 0.000000] ACPI: FACS 0x000000007FFF0200 000040 +[ 0.000000] ACPI: FACS 0x000000007FFF0200 000040 +[ 0.000000] ACPI: APIC 0x000000007FFF0240 000054 (v02 VBOX VBOXAPIC 00000001 ASL 00000061) +[ 0.000000] ACPI: SSDT 0x000000007FFF02A0 0001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528) +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000007ffeffff] +[ 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 3501521582 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] +[ 0.000000] DMA32 [mem 0x0000000001000000-0x000000007ffeffff] +[ 0.000000] Normal empty +[ 0.000000] Device empty +[ 0.000000] Movable zone start for each node +[ 0.000000] Early memory node ranges +[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff] +[ 0.000000] node 0: [mem 0x0000000000100000-0x000000007ffeffff] +[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffeffff] +[ 0.000000] ACPI: PM-Timer IO Port: 0x4008 +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs +[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] +[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] +[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff] +[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff] +[ 0.000000] e820: [mem 0x80000000-0xfebfffff] available for PCI devices +[ 0.000000] Booting paravirtualized kernel on KVM +[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns +[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 34 pages/cpu @ffff88007fc00000 s98328 r8192 d32744 u2097152 +[ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes) +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 515961 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-98-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0 +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Memory: 2034056K/2096696K available (8484K kernel code, 1294K rwdata, 3988K rodata, 1492K init, 1316K bss, 62640K reserved, 0K cma-reserved) +[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] Build-time adjustment of leaf fanout to 64. +[ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1. +[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1 +[ 0.000000] NR_IRQS:33024 nr_irqs:256 16 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty1] enabled +[ 0.000000] console [ttyS0] enabled +[ 0.000000] tsc: Detected 2693.760 MHz processor +[ 1.801543] Calibrating delay loop (skipped) preset value.. 5387.52 BogoMIPS (lpj=10775040) +[ 1.804867] pid_max: default: 32768 minimum: 301 +[ 1.812316] ACPI: Core revision 20150930 +[ 1.817648] ACPI: 2 ACPI AML tables successfully acquired and loaded +[ 1.820032] Security Framework initialized +[ 1.821907] Yama: becoming mindful. +[ 1.822547] AppArmor: AppArmor initialized +[ 1.824972] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 1.832244] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 1.837174] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) +[ 1.838184] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) +[ 1.839364] Initializing cgroup subsys io +[ 1.840092] Initializing cgroup subsys memory +[ 1.840824] Initializing cgroup subsys devices +[ 1.843028] Initializing cgroup subsys freezer +[ 1.884553] Initializing cgroup subsys net_cls +[ 1.919414] Initializing cgroup subsys perf_event +[ 1.922644] Initializing cgroup subsys net_prio +[ 1.923396] Initializing cgroup subsys hugetlb +[ 1.924155] Initializing cgroup subsys pids +[ 1.929982] CPU: Physical Processor ID: 0 +[ 1.932727] mce: CPU supports 0 MCE banks +[ 1.933439] process: using mwait in idle threads +[ 1.934203] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024 +[ 1.936333] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4 +[ 1.954880] Freeing SMP alternatives memory: 32K +[ 1.970673] ftrace: allocating 32154 entries in 126 pages +[ 2.018614] smpboot: APIC(0) Converting physical 0 to logical package 0 +[ 2.052627] smpboot: Max logical packages: 1 +[ 2.054564] x2apic enabled +[ 2.064264] Switched APIC routing to physical x2apic. +[ 2.067321] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 2.175623] smpboot: CPU0: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz (family: 0x6, model: 0x45, stepping: 0x1) +[ 2.192499] Performance Events: unsupported p6 CPU model 69 no PMU driver, software events only. +[ 2.206747] KVM setup paravirtual spinlock +[ 2.209593] x86: Booted up 1 node, 1 CPUs +[ 2.213806] smpboot: Total of 1 processors activated (5387.52 BogoMIPS) +[ 2.214998] devtmpfs: initialized +[ 2.216988] evm: security.selinux +[ 2.217598] evm: security.SMACK64 +[ 2.220241] evm: security.SMACK64EXEC +[ 2.220931] evm: security.SMACK64TRANSMUTE +[ 2.221668] evm: security.SMACK64MMAP +[ 2.222309] evm: security.ima +[ 2.222993] evm: security.capability +[ 2.229130] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns +[ 2.230706] futex hash table entries: 256 (order: 2, 16384 bytes) +[ 2.233959] pinctrl core: initialized pinctrl subsystem +[ 2.234905] RTC time: 13:30:19, date: 01/30/18 +[ 2.235756] NET: Registered protocol family 16 +[ 2.238844] cpuidle: using governor ladder +[ 2.239560] cpuidle: using governor menu +[ 2.240240] PCCT header not found. +[ 2.240904] ACPI: bus type PCI registered +[ 2.245543] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 +[ 2.246599] PCI: Using configuration type 1 for base access +[ 2.248502] ACPI: Added _OSI(Module Device) +[ 2.250394] ACPI: Added _OSI(Processor Device) +[ 2.253689] ACPI: Added _OSI(3.0 _SCP Extensions) +[ 2.254464] ACPI: Added _OSI(Processor Aggregator Device) +[ 2.257763] ACPI: Executed 1 blocks of module-level executable AML code +[ 2.260724] ACPI: Interpreter enabled +[ 2.270208] ACPI: (supports S0 S5) +[ 2.270836] ACPI: Using IOAPIC for interrupt routing +[ 2.273050] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 2.277771] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 2.360209] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI] +[ 2.379920] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI] +[ 2.387764] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. +[ 2.392000] PCI host bridge to bus 0000:00 +[ 2.442177] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] +[ 2.476975] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] +[ 2.477995] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] +[ 2.483240] pci_bus 0000:00: root bus resource [mem 0x80000000-0xffdfffff window] +[ 2.484512] pci_bus 0000:00: root bus resource [bus 00-ff] +[ 2.490060] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] +[ 2.596852] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] +[ 2.597850] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] +[ 2.630778] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] +[ 2.670968] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI +[ 2.714410] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB +[ 2.730579] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11) +[ 2.741617] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11) +[ 2.748903] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11) +[ 2.759105] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11) +[ 2.785026] ACPI: Enabled 2 GPEs in block 00 to 07 +[ 2.786041] vgaarb: setting as boot device: PCI:0000:00:02.0 +[ 2.786928] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 2.793797] vgaarb: loaded +[ 2.813786] vgaarb: bridge control possible 0000:00:02.0 +[ 2.816059] SCSI subsystem initialized +[ 2.818328] ACPI: bus type USB registered +[ 2.819038] usbcore: registered new interface driver usbfs +[ 2.819903] usbcore: registered new interface driver hub +[ 2.824840] usbcore: registered new device driver usb +[ 2.827810] PCI: Using ACPI for IRQ routing +[ 2.828789] NetLabel: Initializing +[ 2.829408] NetLabel: domain hash size = 128 +[ 2.831534] NetLabel: protocols = UNLABELED CIPSOv4 +[ 2.832343] NetLabel: unlabeled traffic allowed by default +[ 2.849552] amd_nb: Cannot enumerate AMD northbridges +[ 2.854007] clocksource: Switched to clocksource kvm-clock +[ 2.860769] AppArmor: AppArmor Filesystem Enabled +[ 2.878681] pnp: PnP ACPI init +[ 2.880025] pnp: PnP ACPI: found 3 devices +[ 2.894692] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns +[ 2.965379] NET: Registered protocol family 2 +[ 2.966220] TCP established hash table entries: 16384 (order: 5, 131072 bytes) +[ 2.967780] TCP bind hash table entries: 16384 (order: 6, 262144 bytes) +[ 2.972272] TCP: Hash tables configured (established 16384 bind 16384) +[ 2.987627] UDP hash table entries: 1024 (order: 3, 32768 bytes) +[ 2.995158] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes) +[ 3.125085] NET: Registered protocol family 1 +[ 3.188361] pci 0000:00:00.0: Limiting direct PCI/PCI transfers +[ 3.215442] pci 0000:00:01.0: Activating ISA DMA hang workarounds +[ 3.219036] Unpacking initramfs... +[ 4.897324] Freeing initrd memory: 10836K +[ 4.951293] RAPL PMU detected, API unit is 2^-32 Joules, 4 fixed counters 10737418240 ms ovfl timer +[ 4.976044] hw unit of domain pp0-core 2^-0 Joules +[ 4.978129] hw unit of domain package 2^-0 Joules +[ 5.002506] hw unit of domain dram 2^-0 Joules +[ 5.028810] hw unit of domain pp1-gpu 2^-0 Joules +[ 5.046351] platform rtc_cmos: registered platform RTC device (no PNP device found) +[ 5.048736] Scanning for low memory corruption every 60 seconds +[ 5.049856] audit: initializing netlink subsys (disabled) +[ 5.052675] audit: type=2000 audit(1517319025.427:1): initialized +[ 5.077115] Initialise system trusted keyring +[ 5.111839] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 5.118086] zbud: loaded +[ 5.118810] VFS: Disk quotas dquot_6.6.0 +[ 5.119516] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 5.120739] squashfs: version 4.0 (2009/01/31) Phillip Lougher +[ 5.123283] fuse init (API version 7.23) +[ 5.141019] Key type big_key registered +[ 5.141716] Allocating IMA MOK and blacklist keyrings. +[ 5.142743] Key type asymmetric registered +[ 5.144579] Asymmetric key parser 'x509' registered +[ 5.145441] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) +[ 5.149327] io scheduler noop registered +[ 5.151423] io scheduler deadline registered (default) +[ 5.152270] io scheduler cfq registered +[ 5.153012] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 5.153877] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 5.155052] ACPI: AC Adapter [AC] (on-line) +[ 5.243798] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 +[ 5.274833] ACPI: Power Button [PWRF] +[ 5.275564] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1 +[ 5.278213] ACPI: Sleep Button [SLPF] +[ 5.279538] ACPI: Battery Slot [BAT0] (battery present) +[ 5.294886] GHES: HEST is not enabled! +[ 5.298581] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 5.324579] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A +[ 5.338317] Linux agpgart interface v0.103 +[ 5.341823] loop: module loaded +[ 5.352359] scsi host0: ata_piix +[ 5.361598] scsi host1: ata_piix +[ 5.365206] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14 +[ 5.376254] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15 +[ 5.379600] libphy: Fixed MDIO Bus: probed +[ 5.382612] tun: Universal TUN/TAP device driver, 1.6 +[ 5.388441] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> +[ 5.393697] PPP generic driver version 2.4.2 +[ 5.399024] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 5.410310] ehci-pci: EHCI PCI platform driver +[ 5.412538] ehci-platform: EHCI generic platform driver +[ 5.414879] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 5.417452] ohci-pci: OHCI PCI platform driver +[ 5.422725] ohci-platform: OHCI generic platform driver +[ 5.425891] uhci_hcd: USB Universal Host Controller Interface driver +[ 5.434706] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12 +[ 5.447911] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 5.453606] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 5.460562] mousedev: PS/2 mouse device common for all mice +[ 5.463113] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 +[ 5.469983] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0 +[ 5.482733] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram +[ 5.487312] i2c /dev entries driver +[ 5.488087] device-mapper: uevent: version 1.0.3 +[ 5.519077] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com +[ 5.546960] ledtrig-cpu: registered to indicate activity on CPUs +[ 5.561111] NET: Registered protocol family 10 +[ 5.572992] NET: Registered protocol family 17 +[ 5.578903] Key type dns_resolver registered +[ 5.581664] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x0 +[ 5.584771] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba +[ 5.588720] registered taskstats version 1 +[ 5.602838] Loading compiled-in X.509 certificates +[ 5.614762] Loaded X.509 cert 'Build time autogenerated kernel key: 7431eaeda5a51458aeb00f8de0f18f89e178d882' +[ 5.619684] zswap: loaded using pool lzo/zbud +[ 5.630374] Key type trusted registered +[ 5.652030] Key type encrypted registered +[ 5.652748] AppArmor: AppArmor sha1 policy hashing enabled +[ 5.653613] ima: No TPM chip found, activating TPM-bypass! +[ 5.659776] evm: HMAC attrs: 0x1 +[ 5.660628] Magic number: 2:81:535 +[ 5.661289] tty ttyS15: hash matches +[ 5.661972] rtc_cmos rtc_cmos: setting system clock to 2018-01-30 13:30:23 UTC (1517319023) +[ 5.669256] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 5.670201] EDD information not available. +[ 5.672198] Freeing unused kernel memory: 1492K +[ 5.709230] Write protecting the kernel read-only data: 14336k +[ 5.710473] Freeing unused kernel memory: 1744K +[ 5.714408] Freeing unused kernel memory: 108K +Loading, please wait... +[ 5.726898] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available) +starting version[ 5.730852] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available) + 229 +[ 5.787523] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available) +[ 5.944168] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available) +[ 5.993134] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available) +[ 6.015127] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available) +[ 6.029260] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available) +[ 6.035056] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available) +[ 6.055120] tsc: Refined TSC clocksource calibration: 2693.728 MHz +[ 6.059860] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26d4197c97e, max_idle_ns: 440795305288 ns +[ 6.132284] random: udevadm: uninitialized urandom read (16 bytes read, 2 bits of entropy available) +[ 6.152777] random: systemd-udevd: uninitialized urandom read (16 bytes read, 2 bits of entropy available) +[ 6.256254] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI +[ 6.267999] e1000: Copyright (c) 1999-2006 Intel Corporation. +[ 6.275811] Fusion MPT base driver 3.04.20 +[ 6.350550] Copyright (c) 1999-2008 LSI Corporation +[ 6.453246] AVX version of gcm_enc/dec engaged. +[ 6.468051] AES CTR mode by8 optimization enabled +[ 6.500455] Fusion MPT SPI Host driver 3.04.20 +[ 6.634733] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4 +[ 6.866418] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:0a:1a:84:64:1f +[ 6.912462] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection +[ 6.914009] mptbase: ioc0: Initiating bringup +[ 6.979180] ioc0: LSI53C1030 A0: Capabilities={Initiator} +[ 7.166274] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20 +[ 7.354084] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5 +[ 7.372024] scsi target2:0:0: Beginning Domain Validation +[ 7.477063] scsi target2:0:0: Domain Validation skipping write tests +[ 7.490630] scsi target2:0:0: Ending Domain Validation +[ 7.521536] scsi target2:0:0: asynchronous +[ 7.566535] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5 +[ 7.617625] scsi target2:0:1: Beginning Domain Validation +[ 7.684007] scsi target2:0:1: Domain Validation skipping write tests +[ 7.693762] scsi target2:0:1: Ending Domain Validation +[ 7.719708] scsi target2:0:1: asynchronous +[ 7.823755] sd 2:0:0:0: Attached scsi generic sg0 type 0 +[ 7.896552] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB) +[ 7.899998] sd 2:0:0:0: [sda] Write Protect is off +[ 7.900845] sd 2:0:0:0: [sda] Incomplete mode parameter data +[ 7.903844] sd 2:0:0:0: [sda] Assuming drive cache: write through +[ 7.948742] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB) +[ 7.953781] sd 2:0:1:0: Attached scsi generic sg1 type 0 +[ 7.984325] sd 2:0:1:0: [sdb] Write Protect is off +[ 7.987954] e1000 0000:00:08.0 eth1: (PCI:33MHz:32-bit) 08:00:27:ba:ba:06 +[ 7.990771] e1000 0000:00:08.0 eth1: Intel(R) PRO/1000 Network Connection +[ 8.013996] sd 2:0:1:0: [sdb] Incomplete mode parameter data +[ 8.027577] sd 2:0:1:0: [sdb] Assuming drive cache: write through +[ 8.033195] e1000 0000:00:08.0 enp0s8: renamed from eth1 +[ 8.035274] e1000 0000:00:03.0 enp0s3: renamed from eth0 +[ 8.071002] sda: sda1 +[ 8.135140] sd 2:0:1:0: [sdb] Attached SCSI disk +[ 8.189045] sd 2:0:0:0: [sda] Attached SCSI disk +[ 9.478177] floppy0: no floppy controllers found +Begin: Loading e[ 10.833185] md: linear personality registered for level -1 +ssential drivers[ 10.928977] md: multipath personality registered for level -4 + ... [ 10.976483] md: raid0 personality registered for level 0 +[ 11.011042] md: raid1 personality registered for level 1 +[ 11.098412] raid6: sse2x1 gen() 8102 MB/s +[ 11.218243] raid6: sse2x1 xor() 7087 MB/s +[ 11.302033] raid6: sse2x2 gen() 11583 MB/s +[ 11.378202] raid6: sse2x2 xor() 8230 MB/s +[ 11.474379] raid6: sse2x4 gen() 13879 MB/s +[ 11.566220] raid6: sse2x4 xor() 9431 MB/s +[ 11.620347] raid6: using algorithm sse2x4 gen() 13879 MB/s +[ 11.622716] raid6: .... xor() 9431 MB/s, rmw enabled +[ 11.690217] raid6: using ssse3x2 recovery algorithm +[ 11.694349] xor: automatically using best checksumming function: +[ 11.774208] avx : 20167.000 MB/sec +[ 11.804257] async_tx: api initialized (async) +[ 11.824291] md: raid6 personality registered for level 6 +[ 11.871461] md: raid5 personality registered for level 5 +[ 11.872304] md: raid4 personality registered for level 4 +[ 11.877805] 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-[ 11.931124] Btrfs loaded +premount ... Scanning for Btrfs filesystems +done. +Warning: fsck not present, so skipping root file system +[ 12.166940] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +done. +Begin: Running /scripts/local-bottom ... done. +Begin: Running /scripts/init-bottom ... done. +[ 12.997141] random: nonblocking pool is initialized +[ 13.150814] 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) +[ 13.236639] systemd[1]: Detected virtualization oracle. +[ 13.241441] systemd[1]: Detected architecture x86-64. + +Welcome to [1mUbuntu 16.04.3 LTS[0m! + +[ 13.356055] systemd[1]: Set hostname to <ubuntu>. +[ 13.457876] systemd[1]: Initializing machine ID from random generator. +[ 13.515313] systemd[1]: Installed transient /etc/machine-id file. +[ 14.743253] systemd[1]: Started Trigger resolvconf update for networkd DNS. +[[0;32m OK [0m] Started Trigger resolvconf update for networkd DNS. +[ 14.934219] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe. +[[0;32m OK [0m] Listening on /dev/initctl Compatibility Named Pipe. +[ 14.994283] systemd[1]: Listening on Journal Audit Socket. +[[0;32m OK [0m] Listening on Journal Audit Socket. +[ 15.067639] systemd[1]: Listening on Journal Socket (/dev/log). +[[0;32m OK [0m] Listening on Journal Socket (/dev/log). +[ 15.148436] systemd[1]: Created slice System Slice. +[[0;32m OK [0m] Created slice System Slice. +[ 15.268021] systemd[1]: Created slice system-serial\x2dgetty.slice. +[[0;32m OK [0m] Created slice system-serial\x2dgetty.slice. +[ 15.407411] systemd[1]: Listening on LVM2 metadata daemon socket. +[[0;32m OK [0m] Listening on LVM2 metadata daemon socket. +[ 15.479266] systemd[1]: Listening on Device-mapper event daemon FIFOs. +[[0;32m OK [0m] Listening on Device-mapper event daemon FIFOs. +[ 15.545303] systemd[1]: Reached target Swap. +[[0;32m OK [0m] Reached target Swap. +[ 15.574474] systemd[1]: Reached target Encrypted Volumes. +[[0;32m OK [0m] Reached target Encrypted Volumes. +[ 15.673800] systemd[1]: Started Forward Password Requests to Wall Directory Watch. +[[0;32m OK [0m] Started Forward Password Requests to Wall Directory Watch. +[ 15.730491] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. +[[0;32m OK [0m] Set up automount Arbitrary Executab...ats File System Automount Point. +[ 15.834585] systemd[1]: Reached target User and Group Name Lookups. +[[0;32m OK [0m] Reached target User and Group Name Lookups. +[ 15.974767] systemd[1]: Listening on udev Kernel Socket. +[[0;32m OK [0m] Listening on udev Kernel Socket. +[ 16.026734] systemd[1]: Listening on udev Control Socket. +[[0;32m OK [0m] Listening on udev Control Socket. +[ 16.130951] systemd[1]: Listening on Syslog Socket. +[[0;32m OK [0m] Listening on Syslog Socket. +[ 16.184238] systemd[1]: Listening on Journal Socket. +[[0;32m OK [0m] Listening on Journal Socket. +[ 16.194636] systemd[1]: Starting Remount Root and Kernel File Systems... + Starting Remount Root and Kernel File Systems... +[ 16.206368] systemd[1]: Starting Uncomplicated firewall... + Starting Uncomplicated firewall... +[ 16.269469] EXT4-fs (sda1): re-mounted. Opts: (null) +[ 16.303183] systemd[1]: Starting Journal Service... + Starting Journal Service... +[ 16.438796] 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.603590] systemd[1]: Starting Nameserver information manager... + Starting Nameserver information manager... +[ 16.666736] systemd[1]: Starting Set console keymap... + Starting Set console keymap... +[ 16.752259] systemd[1]: Mounting Debug File System... + Mounting Debug File System... +[ 16.828070] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... + Starting Monitoring of LVM2 mirrors... dmeventd or progress polling... +[ 17.042476] systemd[1]: Listening on LVM2 poll daemon socket. +[[0;32m OK [0m] Listening on LVM2 poll daemon socket. +[ 17.182532] systemd[1]: Created slice User and Session Slice. +[[0;32m OK [0m] Created slice User and Session Slice. +[ 17.302749] systemd[1]: Reached target Slices. +[[0;32m OK [0m] Reached target Slices. +[ 17.440398] systemd[1]: Starting Load Kernel Modules... + Starting Load Kernel Modules... +[ 17.490092] systemd[1]: Mounting POSIX Message Queue File System... + Mounting POSIX Message Queue File System... +[ 17.589199] systemd[1]: Mounting Huge Pages File System... + Mounting Huge Pages File System... +[ 17.593883] systemd[1]: Mounted Debug File System. +[[0;32m OK [0m] Mounted Debug File System. +[ 17.655328] systemd[1]: Mounted Huge Pages File System. +[[0;32m OK [0m] Mounted Huge Pages File System. +[ 17.671109] systemd[1]: Mounted POSIX Message Queue File System. +[[0;32m OK [0m] Mounted POSIX[ 17.687214] Loading iSCSI transport class v2.0-870. + Message Queue File System. +[ 17.717301] iscsi: registered transport (tcp) +[ 17.726370] systemd[1]: Started Journal Service. +[[0;32m OK [0m] Started Journal Service. +[[0;32m OK [0[ 17.857807] iscsi: registered transport (iser) +m] Started Remount Root and Kernel File Systems. +[[0;32m OK [0m] Started Uncomplicated firewall. +[[0;32m OK [0m] Started Create list of required sta...ce nodes for the current kernel. +[[0;32m OK [0m] Started Set console keymap. +[[0;32m OK [0m] Started Load Kernel Modules. +[[0;32m OK [0m] Started Nameserver information manager. +[[0;32m OK [0m] Started LVM2 metadata daemon. + Mounting FUSE Control File System... + Starting Apply Kernel Variables... + Starting Create Static Device Nodes in /dev... + Starting udev Coldplug all Devices... + Starting Load/Save Random Seed... + Starting Initial cloud-init job (pre-networking)... + Starting Flush Journal to Persistent Storage... +[[0;32m OK [0m] Mounted FUSE Control File System. +[[0;32m OK [0m] Started Apply Kernel Variables. +[[0;32m OK [0m] Started Load/Save Random Seed. +[[0;32m OK [0m] Started Create Static Device Nodes in /dev. +[[0;32m OK [0m] Started udev Coldplug all Devices. + Starting udev Kernel Device Manager... +[[0;32m OK [0m] Started Monitoring of LVM2 mirrors,...ng dmeventd or progress polling. +[[0;32m OK [0m] Started Flush Journal to Persistent Storage. +[[0;32m OK [0m] Started udev Kernel Device Manager. +[[0;32m OK [0m] Started Dispatch Password Requests to Console Directory Watch. +[[0;32m OK [0m] Reached target Local File Systems (Pre). +[[0;32m OK [0m] Reached target Local File Systems. + Starting Set console font and keymap... + Starting Tell Plymouth To Write Out Runtime Data... + Starting LSB: AppArmor initialization... + Starting Commit a transient machine-id on disk... + Starting Create Volatile Files and Directories... +[[0;32m OK [0m] Started Commit a transient machine-id on disk. +[[0;32m OK [0m] Started Tell Plymouth To Write Out Runtime Data. +[[0;32m OK [0m] Found device /dev/ttyS0. +[[0;32m OK [0m] Started Create Volatile Files and Directories. +[[0;32m OK [0m] Reached target System Time Synchronized. + Starting Update UTMP about System Boot/Shutdown... +[[0;32m OK [0m] Started Update UTMP about System Boot/Shutdown. +[[0;32m OK [0m] Started Set console font and keymap. +[[0;32m OK [0m] Created slice system-getty.slice. +[[0;32m OK [0m] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. +[[0;32m OK [0m] Started LSB: AppArmor initialization. +[ 23.077252] cloud-init[467]: Cloud-init v. 0.7.9 running 'init-local' at Tue, 30 Jan 2018 13:30:42 +0000. Up 22.56 seconds. +[[0;32m OK [0m] Started Initial cloud-init job (pre-networking). +[[0;32m OK [0m] Reached target Network (Pre). + Starting Raise network interfaces... +[[0;32m OK [0m] Started Raise network interfaces. +[[0;32m OK [0m] Reached target Network. + Starting Initial cloud-init job (metadata service crawler)... +[ 26.140688] cloud-init[970]: Cloud-init v. 0.7.9 running 'init' at Tue, 30 Jan 2018 13:30:44 +0000. Up 24.08 seconds. +[ 26.157051] cloud-init[970]: ci-info: +++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++ +[ 26.169074] cloud-init[970]: ci-info: +--------+-------+---------------------------+---------------+-------+-------------------+ +[ 26.204675] cloud-init[970]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address | +[ 26.220789] cloud-init[970]: ci-info: +--------+-------+---------------------------+---------------+-------+-------------------+ +[[0;32m OK [0m] Started Initial cloud-init job (metadata service crawler). +[ 26.235873] cloud-init[970]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | . | . | +[ 26.251722] cloud-init[970]: ci-info: | lo | True | ::1/128 | . | host | . | +[ 26.276593] cloud-init[970]: ci-info: | enp0s8 | False | . | . | . | 08:00:27:ba:ba:06 | +[ 26.299306] cloud-init[970]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | . | 02:0a:1a:84:64:1f | +[[0;32m OK [0m] Reached target Cloud-config availability. +[ 26.309641] cloud-init[970]: ci-info: | enp0s3 | True | fe80::a:1aff:fe84:641f/64 | . | link | 02:0a:1a:84:64:1f | +[ 26.327488] cloud-init[970]: ci-info: +--------+-------+---------------------------+---------------+-------+-------------------+ +[[0;32m OK [0m] Reached target System Initialization. +[[0;32m OK [0m] Started Timer to automatically refresh installed snaps. +[ 26.366121] cloud-init[970]: ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++ +[[0;32m OK [0m] Listening on D-Bus System Message Bus Socket. +[ 26.427899] cloud-init[970]: ci-info: +-------+-------------+----------+---------------+-----------+-------+ +[ 26.514741] cloud-init[970]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags | +[[0;32m OK [0m] Listening on UUID daemon activation socket. + Starting Socket activation for snappy daemon. +[ 26.591672] cloud-init[970]: ci-info: +-------+-------------+----------+---------------+-----------+-------+ +[ 26.681465] cloud-init[970]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | enp0s3 | UG | +[[0;32m OK [0m] Listening on ACPID Listen Socket. +[ 26.738122] cloud-init[970]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | enp0s3 | U | +[ 26.813248] cloud-init[970]: ci-info: +-------+-------------+----------+---------------+-----------+-------+ +[ 26.848276] cloud-init[970]: Generating public/private rsa key pair. +[ 26.885066] cloud-init[970]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key. + Starting LXD - unix socket. +[[0;32m OK [0m] Started Daily Cleanup of Temporary Directories. +[ 26.903472] cloud-init[970]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub. +[ 26.988420] cloud-init[970]: The key fingerprint is: +[[0;32m OK [0m] Started ACPI Events Check. +[[0;32m OK [0m] Reached target Paths. +[ 27.017963] cloud-init[970]: SHA256:P9yzG/OQmw5H803bcImTPV9ZysSowhjWB5ERcqK2vFc root@ubuntu-xenial +[[0;32m OK [0m] Started Timer to automatically fetch and run repair assertions. +[[0;32m OK [0m] Reached target Network is Online. +[ 27.096453] cloud-init[970]: The key's randomart image is: +[ 27.200285] cloud-init[970]: +---[RSA 2048]----+ +[[0;32m OK [0m] Started Daily apt download activities. +[[0;32m OK [0m] Started Daily apt upgrade and clean activities. +[ 27.238766] [[0;32m OK [0m] Reached target Timers. + Starting iSCSI initiator daemon (iscsid)... +[[0;32m OK [0m] Listening on Socket activation for snappy daemon. +[[0;32m OK [0m] Listening on LXD - unix socket. +[[0;32m OK [0m] Reached target Sockets. +[[0;32m OK [0m] Reached target Basic System. +cloud-init[970]: | o *= | + Starting Pollinate to seed the pseudo random number generator... + Starting Apply the settings specified in cloud-config... +[ 27.331802] cloud-init[970]: | . =.. o | +[[0;32m OK [0m[ 27.364279] cloud-init[970]: | o o . . . o .| +[ 27.364320] cloud-init[970]: | o o + . . o+.+| +[ 27.364346] cloud-init[970]: | o . E . o++=+| +[ 27.364394] cloud-init[970]: | . . + o +.=*| +[ 27.364422] cloud-init[970]: | . . = O ..+| +[ 27.364446] cloud-init[970]: | . + X | +[ 27.364471] cloud-init[970]: | .*.. | +[ 27.364495] cloud-init[970]: +----[SHA256]-----+ +[ 27.364519] cloud-init[970]: Generating public/private dsa key pair. +[ 27.364550] cloud-init[970]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key. +[ 27.364576] cloud-init[970]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub. +[ 27.364601] cloud-init[970]: The key fingerprint is: +[ 27.364626] cloud-init[970]: SHA256:J1jFeXkvPMwAQLk/WwV28ctqH2dh94KPw6MVRKAFrTw root@ubuntu-xenial +[ 27.364650] cloud-init[970]: The key's randomart image is: +[ 27.364676] cloud-init[970]: +---[DSA 1024]----+ +[ 27.364700] cloud-init[970]: | .+*=+.... | +[ 27.364724] cloud-init[970]: | .++.* o. | +[ 27.364749] cloud-init[970]: | .oo o.O ..| +[ 27.364774] cloud-init[970]: | oE . O o| +[ 27.364799] cloud-init[970]: | . So. .. B.| +[ 27.364823] cloud-init[970]: | oo .oo +| +[ 27.364847] cloud-init[970]: | =oo..+| +[ 27.364872] cloud-init[970]: | ..=o.oo| +[ 27.364896] cloud-init[970]: | ...o.. | +[ 27.364920] cloud-init[970]: +----[SHA256]-----+ +[ 27.364944] cloud-init[970]: Generating public/private ecdsa key pair. +[ 27.364968] cloud-init[970]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key. +[ 27.364993] cloud-init[970]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub. +[ 27.365020] cloud-init[970]: The key fingerprint is: +[ 27.365044] cloud-init[970]: SHA256:6PvcR4H4+m8ZGNq8LAujZidM8dKTspaGpapJrzCRKoE root@ubuntu-xenial +[ 27.365069] cloud-init[970]: The key's randomart image is: +[ 27.365092] cloud-init[970]: +---[ECDSA 256]---+ +[ 27.365118] cloud-init[970]: | | +[ 27.365142] cloud-init[970]: | | +[ 27.365166] cloud-init[970]: | . . | +[ 27.365191] cloud-init[970]: |.. . .. o . | +[ 27.365214] cloud-init[970]: |E +..S= o . | +[ 27.365239] cloud-init[970]: |.o =.= . = o | +[ 27.365263] cloud-init[970]: |=. * =+. o o o | +[ 27.365286] cloud-init[970]: |+o+ X..=o.o + | +[ 27.365312] cloud-init[970]: |=o.*.o..++o+. | +] Started Regular background program processing daemon. + Starting /etc/rc.local Compatibility... +[[0;32m OK [0m] Started FUSE filesystem for LXC. + Starting LSB: Record successful boot for GRUB... +[[0;32m OK [0m] Started Deferred execution scheduler. + Starting Accounts Service... + Starting LSB: MD monitoring daemon... + Starting System Logging Service... + Starting LXD - container startup/shutdown... +[ 27.366915] cloud-init[970]: +----[SHA256]-----+ +[ 27.617953] cloud-init[970]: Generating public/private ed25519 key pair. +[ 27.628521] cloud-init[970]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key. +[ 27.633158] cloud-init[970]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub. +[[0;32m OK [0m[ 27.652361] cloud-init[970]: The key fingerprint is: +[ 27.652676] cloud-init[970]: SHA256:anps6jEGZiSIDfn9WEF2S/alOXMvQ3OItxyPcTjUjjo root@ubuntu-xenial +[ 27.652730] cloud-init[970]: The key's randomart image is: +[ 27.652764] cloud-init[970]: +--[ED25519 256]--+ +[ 27.652792] cloud-init[970]: |.. .o + o. | +[ 27.652819] cloud-init[970]: |+o ..+ o * o. | +[ 27.652845] cloud-init[970]: |+.o. .. B @oo | +[ 27.652878] cloud-init[970]: | o. . . B.%. | +[ 27.652903] cloud-init[970]: | + + S .* o | +[ 27.652953] cloud-init[970]: | o .. .. E o | +[ 27.652980] cloud-init[970]: | +.o . | +[ 27.653006] cloud-init[970]: | . =+ | +[ 27.653693] cloud-init[970]: | .++ | +[ 27.653740] cloud-init[970]: +----[SHA256]-----+ +] Started ACPI event daemon. +[[0;32m OK [0m] Started Unattended Upgrades Shutdown. + Starting Login Service... +[[0;32m OK [0m] Started D-Bus System Message Bus. + Starting Snappy daemon... +[[0;32m OK [0m] Started System Logging Service. +[[0;32m OK [0m] Started /etc/rc.local Compatibility. +[[0;32m OK [0m] Started Login Service. +[ 28.732182] cloud-init[1070]: Generating locales (this might take a while)... +[[0;32m OK [0m] Started iSCSI initiator daemon (iscsid). + Starting Login to default iSCSI targets... +[[0;32m OK [0m] Started LSB: Record successful boot for GRUB. +[[0;32m OK [0m] Started Login to default iSCSI targets. +[[0;32m OK [0m] Reached target Remote File Systems (Pre). +[[0;32m OK [0m] Reached target Remote File Systems. + Starting Permit User Sessions... + 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: VirtualBox Linux Additions... +[[0;32m OK [0m] Started Permit User Sessions. +[[0;32m OK [0m] Started LSB: Set the CPU Frequency Scaling governor to "ondemand". +[[0;32m OK [0m] Started LSB: MD monitoring daemon. + Starting Authenticate and Authorize Users to Run Privileged Tasks... + Starting Hold until boot process finishes up... + Starting Terminate Plymouth Boot Screen... +[[0;32m OK [0m] Started Hold until boot process finishes up. +[[0;32m OK [0m] Started Terminate Plymouth Boot Screen. +[[0;32m OK [0m] Started Getty on tty1. +[[0;32m OK [0m] Started Serial Getty on ttyS0. +[[0;32m OK [0m] Reached target Login Prompts. + Starting Set console scheme... +[[0;32m OK [0m] Started LSB: daemon to balance interrupts for SMP systems. +[[0;32m OK [0m] Started LSB: automatic crash report generation. +[[0;32m OK [0m] Started Set console scheme. +[[0;32m OK [0m] Started Authenticate and Authorize Users to Run Privileged Tasks. +[[0;32m OK [0m] Started Accounts Service. +[[0;32m OK [0m] Started LSB: VirtualBox Linux Additions. +[ 32.352537] cloud-init[1070]: en_US.UTF-8... done +[ 32.400574] cloud-init[1070]: Generation complete. +[[0;32m OK [0m] Started LXD - container startup/shutdown. +[[0;32m OK [0m] Started Snappy daemon. + Starting Auto import assertions from block devices... +[[0;32m OK [0m] Started Auto import assertions from block devices. +[[0;32m OK [0m] Started Pollinate to seed the pseudo random number generator. + Starting OpenBSD Secure Shell server... +[[0;32m OK [0m] Stopped OpenBSD Secure Shell server. + Starting OpenBSD Secure Shell server... +[[0;32m OK [0m] Started OpenBSD Secure Shell server. +[[0;32m OK [0m] Reached target Multi-User System. +[[0;32m OK [0m] Reached target Graphical Interface. + Starting Update UTMP about System Runlevel Changes... +[[0;32m OK [0m] Started Update UTMP about System Runlevel Changes. +[ 35.633982] cloud-init[1070]: Cloud-init v. 0.7.9 running 'modules:config' at Tue, 30 Jan 2018 13:30:48 +0000. Up 27.81 seconds. +ci-info: no authorized ssh keys fingerprints found for user ubuntu. +<14>Jan 30 13:30:56 ec2: +<14>Jan 30 13:30:56 ec2: ############################################################# +<14>Jan 30 13:30:56 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS----- +<14>Jan 30 13:30:56 ec2: 1024 SHA256:J1jFeXkvPMwAQLk/WwV28ctqH2dh94KPw6MVRKAFrTw root@ubuntu-xenial (DSA) +<14>Jan 30 13:30:56 ec2: 256 SHA256:6PvcR4H4+m8ZGNq8LAujZidM8dKTspaGpapJrzCRKoE root@ubuntu-xenial (ECDSA) +<14>Jan 30 13:30:56 ec2: 256 SHA256:anps6jEGZiSIDfn9WEF2S/alOXMvQ3OItxyPcTjUjjo root@ubuntu-xenial (ED25519) +<14>Jan 30 13:30:56 ec2: 2048 SHA256:P9yzG/OQmw5H803bcImTPV9ZysSowhjWB5ERcqK2vFc root@ubuntu-xenial (RSA) +<14>Jan 30 13:30:56 ec2: -----END SSH HOST KEY FINGERPRINTS----- +<14>Jan 30 13:30:56 ec2: ############################################################# +-----BEGIN SSH HOST KEY KEYS----- +ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIOkqY8cnLFWMetlZWS61O+OO6W08VEZuWfCkx9cFWiFPd/MBN7dKxF0CHPBXRIXU/qYPPMOS+dtowrygVCQ6Ys= root@ubuntu-xenial +ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPtLXY64mowbfQ6tLx2nutnERuAa4gFaPfRBs/VpMWt+ root@ubuntu-xenial +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDw0zhdrN1P6cLf/+ehskVQ6RfZcazjxIv0U5GUzlrHjCWaB5RfY/4WFhRepyl7+RdYgi6apdTYFEgXDC9rEd2px0fYGpYKw5MraYkpvU5wtBTCkcyrIoQ1rB4u7LWBftx6nFXJV2NrlPiEx2FKBUiRYQV0v7EkTcWrEOLJvP1MxwtxTIBA43wL3WO1Igu/hCEgqYAmxlhpqacSgpeEhO+04Sv9yfNzJGTcJ5tcsMjYiJVpwcHsaFb7qEnQ/cqvNJ2g5eCuzCzzwkx4tpSzFxZQu1Ma9XVqzBj56jMv5MUnNljSiUuM6+1zrjDcVAgq4ybkgTyn0YDgOLyYfW/xL61v root@ubuntu-xenial +-----END SSH HOST KEY KEYS----- +[ 36.246574] cloud-init[1362]: Cloud-init v. 0.7.9 running 'modules:final' at Tue, 30 Jan 2018 13:30:56 +0000. Up 35.98 seconds. +[ 36.247076] cloud-init[1362]: ci-info: no authorized ssh keys fingerprints found for user ubuntu. +[ 36.247162] cloud-init[1362]: Cloud-init v. 0.7.9 finished at Tue, 30 Jan 2018 13:30:56 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net]. Up 36.23 seconds + +Ubuntu 16.04.3 LTS ubuntu-xenial ttyS0 + +ubuntu-xenial login: \ No newline at end of file