2024-04-15T22:22:53.475 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T22:22:53.475 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589 --owner scheduled_teuthology@teuthology --name teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi --description orch/cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} --verbose -- /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589/orig.config.yaml 2024-04-15T22:22:53.508 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T22:22:53.592 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7657589' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: squid ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 workunit: branch: squid sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 7775 sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 sleep_before_teardown: 0 subset: 18/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 targets: smithi170.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFCGw3/u81eCNvXEfM2Q+DrbtjR7a+T7XEyu4Nxv3EuXoK3d7sPBkOveHlvpL9llrkglwESzfOokoQk0ppehcz0= smithi194.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCCKa4F+Xk17OSq5spfZRCEGF8OSQ52VJNnYUcS9IjJ1RBkNkHW5DC96A2lKVa9pGv/vUEPGpFeXx/CsQvVet74= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-15_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-15T22:22:53.592 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa; will attempt to use it 2024-04-15T22:22:53.593 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks 2024-04-15T22:22:53.593 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-15T22:22:53.595 INFO:teuthology.task.internal:Checking packages... 2024-04-15T22:22:53.616 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'a9a752df26c63acad72e1b3569fd79a515ca0765' 2024-04-15T22:22:53.616 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-15T22:22:53.616 INFO:teuthology.packaging:ref: None 2024-04-15T22:22:53.616 INFO:teuthology.packaging:tag: None 2024-04-15T22:22:53.616 INFO:teuthology.packaging:branch: squid 2024-04-15T22:22:53.616 INFO:teuthology.packaging:sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:22:53.616 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=squid 2024-04-15T22:22:53.793 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2114-ga9a752df-1jammy 2024-04-15T22:22:53.794 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-15T22:22:53.800 INFO:teuthology.task.internal:no buildpackages task found 2024-04-15T22:22:53.800 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-15T22:22:53.807 INFO:teuthology.task.internal:Saving configuration 2024-04-15T22:22:53.819 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-15T22:22:53.825 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:22:53.849 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi170.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 22:16:47.903313', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJQudHT99g2gVf8tcUMRFDhMPRvmdDpx8f4VuomI3C+T'} 2024-04-15T22:22:53.870 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi194.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 22:16:47.901801', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKl8OeXJYFXy+XkxJXKMlb4yK0icQE5G9PVcP98uow+G'} 2024-04-15T22:22:53.870 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-15T22:22:53.877 INFO:teuthology.task.internal:roles: ubuntu@smithi170.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-15T22:22:53.877 INFO:teuthology.task.internal:roles: ubuntu@smithi194.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-15T22:22:53.878 INFO:teuthology.run_tasks:Running task console_log... 2024-04-15T22:22:53.946 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fa50c938310>, signals=[15]) 2024-04-15T22:22:53.946 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T22:22:53.953 INFO:teuthology.task.internal:Opening connections... 2024-04-15T22:22:53.953 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi170.front.sepia.ceph.com 2024-04-15T22:22:53.955 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:22:54.037 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi194.front.sepia.ceph.com 2024-04-15T22:22:54.037 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi194.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:22:54.113 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T22:22:54.120 DEBUG:teuthology.orchestra.run.smithi170:> uname -m 2024-04-15T22:22:54.125 INFO:teuthology.orchestra.run.smithi170.stdout:x86_64 2024-04-15T22:22:54.126 DEBUG:teuthology.orchestra.run.smithi170:> cat /etc/os-release 2024-04-15T22:22:54.177 INFO:teuthology.orchestra.run.smithi170.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-15T22:22:54.177 INFO:teuthology.orchestra.run.smithi170.stdout:NAME="Ubuntu" 2024-04-15T22:22:54.177 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION_ID="22.04" 2024-04-15T22:22:54.178 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-15T22:22:54.178 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION_CODENAME=jammy 2024-04-15T22:22:54.178 INFO:teuthology.orchestra.run.smithi170.stdout:ID=ubuntu 2024-04-15T22:22:54.178 INFO:teuthology.orchestra.run.smithi170.stdout:ID_LIKE=debian 2024-04-15T22:22:54.178 INFO:teuthology.orchestra.run.smithi170.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-15T22:22:54.178 INFO:teuthology.orchestra.run.smithi170.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-15T22:22:54.178 INFO:teuthology.orchestra.run.smithi170.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-15T22:22:54.178 INFO:teuthology.orchestra.run.smithi170.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-15T22:22:54.178 INFO:teuthology.orchestra.run.smithi170.stdout:UBUNTU_CODENAME=jammy 2024-04-15T22:22:54.179 INFO:teuthology.lock.ops:Updating smithi170.front.sepia.ceph.com on lock server 2024-04-15T22:22:54.204 DEBUG:teuthology.orchestra.run.smithi194:> uname -m 2024-04-15T22:22:54.209 INFO:teuthology.orchestra.run.smithi194.stdout:x86_64 2024-04-15T22:22:54.209 DEBUG:teuthology.orchestra.run.smithi194:> cat /etc/os-release 2024-04-15T22:22:54.255 INFO:teuthology.orchestra.run.smithi194.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-15T22:22:54.255 INFO:teuthology.orchestra.run.smithi194.stdout:NAME="Ubuntu" 2024-04-15T22:22:54.255 INFO:teuthology.orchestra.run.smithi194.stdout:VERSION_ID="22.04" 2024-04-15T22:22:54.255 INFO:teuthology.orchestra.run.smithi194.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-15T22:22:54.255 INFO:teuthology.orchestra.run.smithi194.stdout:VERSION_CODENAME=jammy 2024-04-15T22:22:54.255 INFO:teuthology.orchestra.run.smithi194.stdout:ID=ubuntu 2024-04-15T22:22:54.255 INFO:teuthology.orchestra.run.smithi194.stdout:ID_LIKE=debian 2024-04-15T22:22:54.256 INFO:teuthology.orchestra.run.smithi194.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-15T22:22:54.256 INFO:teuthology.orchestra.run.smithi194.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-15T22:22:54.256 INFO:teuthology.orchestra.run.smithi194.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-15T22:22:54.256 INFO:teuthology.orchestra.run.smithi194.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-15T22:22:54.256 INFO:teuthology.orchestra.run.smithi194.stdout:UBUNTU_CODENAME=jammy 2024-04-15T22:22:54.256 INFO:teuthology.lock.ops:Updating smithi194.front.sepia.ceph.com on lock server 2024-04-15T22:22:54.279 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T22:22:54.287 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T22:22:54.292 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T22:22:54.292 DEBUG:teuthology.orchestra.run.smithi170:> test '!' -e /home/ubuntu/cephtest 2024-04-15T22:22:54.294 DEBUG:teuthology.orchestra.run.smithi194:> test '!' -e /home/ubuntu/cephtest 2024-04-15T22:22:54.302 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T22:22:54.310 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T22:22:54.310 DEBUG:teuthology.orchestra.run.smithi170:> test -z $(ls -A /var/lib/ceph) 2024-04-15T22:22:54.340 DEBUG:teuthology.orchestra.run.smithi194:> test -z $(ls -A /var/lib/ceph) 2024-04-15T22:22:54.350 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T22:22:54.407 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T22:22:54.421 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T22:22:54.422 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-15T22:22:54.422 DEBUG:teuthology.orchestra.run.smithi170:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T22:22:54.422 DEBUG:teuthology.orchestra.run.smithi194:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T22:22:54.427 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:22:54.427 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:22:54.428 DEBUG:teuthology.orchestra.run.smithi170:> uname -r 2024-04-15T22:22:54.428 DEBUG:teuthology.orchestra.run.smithi194:> uname -r 2024-04-15T22:22:54.475 INFO:teuthology.orchestra.run.smithi170.stdout:5.15.0-56-generic 2024-04-15T22:22:54.475 INFO:teuthology.task.kernel:Running kernel on smithi170: 5.15.0-56-generic 2024-04-15T22:22:54.475 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get clean 2024-04-15T22:22:54.476 INFO:teuthology.orchestra.run.smithi194.stdout:5.15.0-56-generic 2024-04-15T22:22:54.476 INFO:teuthology.task.kernel:Running kernel on smithi194: 5.15.0-56-generic 2024-04-15T22:22:54.476 DEBUG:teuthology.orchestra.run.smithi194:> sudo apt-get clean 2024-04-15T22:22:54.597 DEBUG:teuthology.orchestra.run.smithi194:> sudo apt-get update 2024-04-15T22:22:54.614 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get update 2024-04-15T22:22:54.795 INFO:teuthology.orchestra.run.smithi194.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-15T22:22:54.913 INFO:teuthology.orchestra.run.smithi194.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T22:22:54.921 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T22:22:54.921 INFO:teuthology.orchestra.run.smithi170.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-15T22:22:54.979 INFO:teuthology.orchestra.run.smithi170.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-15T22:22:54.980 INFO:teuthology.orchestra.run.smithi194.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-15T22:22:55.186 INFO:teuthology.orchestra.run.smithi194.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-15T22:22:55.310 INFO:teuthology.orchestra.run.smithi170.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-15T22:22:55.335 INFO:teuthology.orchestra.run.smithi194.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-15T22:22:55.341 INFO:teuthology.orchestra.run.smithi170.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-15T22:22:55.453 INFO:teuthology.orchestra.run.smithi194.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-15T22:22:55.462 INFO:teuthology.orchestra.run.smithi194.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-15T22:22:55.472 INFO:teuthology.orchestra.run.smithi194.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-15T22:22:55.472 INFO:teuthology.orchestra.run.smithi194.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-15T22:22:55.472 INFO:teuthology.orchestra.run.smithi194.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-15T22:22:55.479 INFO:teuthology.orchestra.run.smithi170.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-15T22:22:55.513 INFO:teuthology.orchestra.run.smithi194.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-15T22:22:55.519 INFO:teuthology.orchestra.run.smithi194.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-15T22:22:55.521 INFO:teuthology.orchestra.run.smithi194.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T22:22:55.525 INFO:teuthology.orchestra.run.smithi194.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-15T22:22:55.530 INFO:teuthology.orchestra.run.smithi194.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-15T22:22:55.543 INFO:teuthology.orchestra.run.smithi194.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-15T22:22:55.544 INFO:teuthology.orchestra.run.smithi194.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-15T22:22:55.570 INFO:teuthology.orchestra.run.smithi194.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-15T22:22:55.570 INFO:teuthology.orchestra.run.smithi194.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-15T22:22:55.571 INFO:teuthology.orchestra.run.smithi194.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-15T22:22:55.571 INFO:teuthology.orchestra.run.smithi194.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-15T22:22:55.677 INFO:teuthology.orchestra.run.smithi170.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-15T22:22:55.733 INFO:teuthology.orchestra.run.smithi170.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-15T22:22:55.751 INFO:teuthology.orchestra.run.smithi170.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-15T22:22:55.761 INFO:teuthology.orchestra.run.smithi170.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-15T22:22:55.761 INFO:teuthology.orchestra.run.smithi170.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-15T22:22:55.778 INFO:teuthology.orchestra.run.smithi194.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-15T22:22:55.818 INFO:teuthology.orchestra.run.smithi194.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-15T22:22:55.826 INFO:teuthology.orchestra.run.smithi170.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-15T22:22:55.833 INFO:teuthology.orchestra.run.smithi194.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-15T22:22:55.834 INFO:teuthology.orchestra.run.smithi194.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-15T22:22:55.836 INFO:teuthology.orchestra.run.smithi194.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-15T22:22:55.840 INFO:teuthology.orchestra.run.smithi170.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-15T22:22:55.841 INFO:teuthology.orchestra.run.smithi170.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-15T22:22:55.853 INFO:teuthology.orchestra.run.smithi170.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-15T22:22:55.855 INFO:teuthology.orchestra.run.smithi170.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-15T22:22:55.865 INFO:teuthology.orchestra.run.smithi170.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T22:22:55.886 INFO:teuthology.orchestra.run.smithi170.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-15T22:22:55.896 INFO:teuthology.orchestra.run.smithi194.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-15T22:22:55.901 INFO:teuthology.orchestra.run.smithi170.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-15T22:22:55.902 INFO:teuthology.orchestra.run.smithi170.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-15T22:22:55.902 INFO:teuthology.orchestra.run.smithi170.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-15T22:22:55.903 INFO:teuthology.orchestra.run.smithi194.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T22:22:55.909 INFO:teuthology.orchestra.run.smithi170.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T22:22:56.067 INFO:teuthology.orchestra.run.smithi194.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,075 kB] 2024-04-15T22:22:56.073 INFO:teuthology.orchestra.run.smithi170.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,075 kB] 2024-04-15T22:22:56.080 INFO:teuthology.orchestra.run.smithi170.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-15T22:22:56.490 INFO:teuthology.orchestra.run.smithi170.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-15T22:22:56.496 INFO:teuthology.orchestra.run.smithi170.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-15T22:22:56.510 INFO:teuthology.orchestra.run.smithi170.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-15T22:22:56.510 INFO:teuthology.orchestra.run.smithi170.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-15T22:22:56.514 INFO:teuthology.orchestra.run.smithi170.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-15T22:22:56.700 INFO:teuthology.orchestra.run.smithi194.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-15T22:22:56.701 INFO:teuthology.orchestra.run.smithi170.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-15T22:22:56.738 INFO:teuthology.orchestra.run.smithi194.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-15T22:22:56.738 INFO:teuthology.orchestra.run.smithi170.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-15T22:22:56.750 INFO:teuthology.orchestra.run.smithi194.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-15T22:22:56.751 INFO:teuthology.orchestra.run.smithi170.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-15T22:22:56.751 INFO:teuthology.orchestra.run.smithi194.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-15T22:22:56.752 INFO:teuthology.orchestra.run.smithi170.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-15T22:22:56.754 INFO:teuthology.orchestra.run.smithi194.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-15T22:22:56.755 INFO:teuthology.orchestra.run.smithi170.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-15T22:22:56.755 INFO:teuthology.orchestra.run.smithi194.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-15T22:22:56.755 INFO:teuthology.orchestra.run.smithi194.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-15T22:22:56.756 INFO:teuthology.orchestra.run.smithi170.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-15T22:22:56.756 INFO:teuthology.orchestra.run.smithi194.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-15T22:22:56.756 INFO:teuthology.orchestra.run.smithi170.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-15T22:22:56.756 INFO:teuthology.orchestra.run.smithi170.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-15T22:22:56.782 INFO:teuthology.orchestra.run.smithi170.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-15T22:22:56.783 INFO:teuthology.orchestra.run.smithi194.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-15T22:22:56.785 INFO:teuthology.orchestra.run.smithi194.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-15T22:22:56.786 INFO:teuthology.orchestra.run.smithi170.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-15T22:22:56.950 INFO:teuthology.orchestra.run.smithi194.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-15T22:22:56.950 INFO:teuthology.orchestra.run.smithi170.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-15T22:22:57.033 INFO:teuthology.orchestra.run.smithi194.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-15T22:22:57.033 INFO:teuthology.orchestra.run.smithi170.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-15T22:22:57.119 INFO:teuthology.orchestra.run.smithi194.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-15T22:22:57.146 INFO:teuthology.orchestra.run.smithi170.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-15T22:22:57.198 INFO:teuthology.orchestra.run.smithi170.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-15T22:22:57.199 INFO:teuthology.orchestra.run.smithi194.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-15T22:22:57.232 INFO:teuthology.orchestra.run.smithi194.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-15T22:22:57.232 INFO:teuthology.orchestra.run.smithi170.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-15T22:23:01.470 INFO:teuthology.orchestra.run.smithi194.stdout:Fetched 12.9 MB in 3s (4,997 kB/s) 2024-04-15T22:23:01.628 INFO:teuthology.orchestra.run.smithi170.stdout:Fetched 12.9 MB in 3s (5,039 kB/s) 2024-04-15T22:23:02.715 INFO:teuthology.orchestra.run.smithi194.stdout:Reading package lists... 2024-04-15T22:23:02.733 DEBUG:teuthology.orchestra.run.smithi194:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T22:23:02.793 INFO:teuthology.orchestra.run.smithi194.stdout:Reading package lists... 2024-04-15T22:23:02.991 INFO:teuthology.orchestra.run.smithi194.stdout:Building dependency tree... 2024-04-15T22:23:02.992 INFO:teuthology.orchestra.run.smithi194.stdout:Reading state information... 2024-04-15T22:23:03.000 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-04-15T22:23:03.017 DEBUG:teuthology.orchestra.run.smithi170:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T22:23:03.073 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-04-15T22:23:03.155 INFO:teuthology.orchestra.run.smithi194.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T22:23:03.155 INFO:teuthology.orchestra.run.smithi194.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T22:23:03.155 INFO:teuthology.orchestra.run.smithi194.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T22:23:03.155 INFO:teuthology.orchestra.run.smithi194.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T22:23:03.155 INFO:teuthology.orchestra.run.smithi194.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-15T22:23:03.156 INFO:teuthology.orchestra.run.smithi194.stdout: python2.7-minimal 2024-04-15T22:23:03.156 INFO:teuthology.orchestra.run.smithi194.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T22:23:03.156 INFO:teuthology.orchestra.run.smithi194.stdout:The following additional packages will be installed: 2024-04-15T22:23:03.156 INFO:teuthology.orchestra.run.smithi194.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T22:23:03.156 INFO:teuthology.orchestra.run.smithi194.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-15T22:23:03.157 INFO:teuthology.orchestra.run.smithi194.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-15T22:23:03.158 INFO:teuthology.orchestra.run.smithi194.stdout:Suggested packages: 2024-04-15T22:23:03.158 INFO:teuthology.orchestra.run.smithi194.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-15T22:23:03.158 INFO:teuthology.orchestra.run.smithi194.stdout:Recommended packages: 2024-04-15T22:23:03.158 INFO:teuthology.orchestra.run.smithi194.stdout: thermald 2024-04-15T22:23:03.203 INFO:teuthology.orchestra.run.smithi194.stdout:The following NEW packages will be installed: 2024-04-15T22:23:03.204 INFO:teuthology.orchestra.run.smithi194.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T22:23:03.204 INFO:teuthology.orchestra.run.smithi194.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-15T22:23:03.204 INFO:teuthology.orchestra.run.smithi194.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-15T22:23:03.205 INFO:teuthology.orchestra.run.smithi194.stdout:The following packages will be upgraded: 2024-04-15T22:23:03.206 INFO:teuthology.orchestra.run.smithi194.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-15T22:23:03.263 INFO:teuthology.orchestra.run.smithi170.stdout:Building dependency tree... 2024-04-15T22:23:03.263 INFO:teuthology.orchestra.run.smithi194.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T22:23:03.263 INFO:teuthology.orchestra.run.smithi194.stdout:Need to get 113 MB of archives. 2024-04-15T22:23:03.263 INFO:teuthology.orchestra.run.smithi194.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-15T22:23:03.263 INFO:teuthology.orchestra.run.smithi194.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-102-generic amd64 5.15.0-102.112 [22.7 MB] 2024-04-15T22:23:03.264 INFO:teuthology.orchestra.run.smithi170.stdout:Reading state information... 2024-04-15T22:23:03.429 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T22:23:03.429 INFO:teuthology.orchestra.run.smithi170.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T22:23:03.429 INFO:teuthology.orchestra.run.smithi170.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T22:23:03.430 INFO:teuthology.orchestra.run.smithi170.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T22:23:03.430 INFO:teuthology.orchestra.run.smithi170.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-15T22:23:03.430 INFO:teuthology.orchestra.run.smithi170.stdout: python2.7-minimal 2024-04-15T22:23:03.430 INFO:teuthology.orchestra.run.smithi170.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T22:23:03.431 INFO:teuthology.orchestra.run.smithi170.stdout:The following additional packages will be installed: 2024-04-15T22:23:03.431 INFO:teuthology.orchestra.run.smithi170.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T22:23:03.431 INFO:teuthology.orchestra.run.smithi170.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-15T22:23:03.432 INFO:teuthology.orchestra.run.smithi170.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-15T22:23:03.433 INFO:teuthology.orchestra.run.smithi170.stdout:Suggested packages: 2024-04-15T22:23:03.433 INFO:teuthology.orchestra.run.smithi170.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-15T22:23:03.433 INFO:teuthology.orchestra.run.smithi170.stdout:Recommended packages: 2024-04-15T22:23:03.433 INFO:teuthology.orchestra.run.smithi170.stdout: thermald 2024-04-15T22:23:03.485 INFO:teuthology.orchestra.run.smithi170.stdout:The following NEW packages will be installed: 2024-04-15T22:23:03.485 INFO:teuthology.orchestra.run.smithi170.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T22:23:03.485 INFO:teuthology.orchestra.run.smithi170.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-15T22:23:03.486 INFO:teuthology.orchestra.run.smithi170.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-15T22:23:03.487 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages will be upgraded: 2024-04-15T22:23:03.487 INFO:teuthology.orchestra.run.smithi170.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-15T22:23:03.575 INFO:teuthology.orchestra.run.smithi170.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T22:23:03.575 INFO:teuthology.orchestra.run.smithi170.stdout:Need to get 113 MB of archives. 2024-04-15T22:23:03.575 INFO:teuthology.orchestra.run.smithi170.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-15T22:23:03.575 INFO:teuthology.orchestra.run.smithi170.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-102-generic amd64 5.15.0-102.112 [22.7 MB] 2024-04-15T22:23:03.933 INFO:teuthology.orchestra.run.smithi194.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-102-generic amd64 5.15.0-102.112 [11.5 MB] 2024-04-15T22:23:04.277 INFO:teuthology.orchestra.run.smithi194.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-102-generic amd64 5.15.0-102.112 [63.9 MB] 2024-04-15T22:23:04.603 INFO:teuthology.orchestra.run.smithi170.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-102-generic amd64 5.15.0-102.112 [11.5 MB] 2024-04-15T22:23:05.029 INFO:teuthology.orchestra.run.smithi170.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-102-generic amd64 5.15.0-102.112 [63.9 MB] 2024-04-15T22:23:06.220 INFO:teuthology.orchestra.run.smithi194.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.102.99 [1,700 B] 2024-04-15T22:23:06.221 INFO:teuthology.orchestra.run.smithi194.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.102.99 [2,512 B] 2024-04-15T22:23:06.221 INFO:teuthology.orchestra.run.smithi194.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102 all 5.15.0-102.112 [12.4 MB] 2024-04-15T22:23:06.585 INFO:teuthology.orchestra.run.smithi194.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102-generic amd64 5.15.0-102.112 [2,877 kB] 2024-04-15T22:23:06.677 INFO:teuthology.orchestra.run.smithi194.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.102.99 [2,360 B] 2024-04-15T22:23:07.073 INFO:teuthology.orchestra.run.smithi194.stdout:Fetched 113 MB in 3s (32.7 MB/s) 2024-04-15T22:23:07.250 INFO:teuthology.orchestra.run.smithi194.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-15T22:23:07.284 INFO:teuthology.orchestra.run.smithi170.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.102.99 [1,700 B] 2024-04-15T22:23:07.285 INFO:teuthology.orchestra.run.smithi170.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.102.99 [2,512 B] 2024-04-15T22:23:07.285 INFO:teuthology.orchestra.run.smithi170.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102 all 5.15.0-102.112 [12.4 MB] 2024-04-15T22:23:07.507 INFO:teuthology.orchestra.run.smithi170.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102-generic amd64 5.15.0-102.112 [2,877 kB] 2024-04-15T22:23:07.564 INFO:teuthology.orchestra.run.smithi170.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.102.99 [2,360 B] 2024-04-15T22:23:07.956 INFO:teuthology.orchestra.run.smithi170.stdout:Fetched 113 MB in 4s (27.8 MB/s) 2024-04-15T22:23:08.136 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-15T22:23:09.136 INFO:teuthology.orchestra.run.smithi194.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-04-15T22:23:09.140 INFO:teuthology.orchestra.run.smithi194.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T22:23:09.221 INFO:teuthology.orchestra.run.smithi194.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:10.215 INFO:teuthology.orchestra.run.smithi170.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-04-15T22:23:10.219 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T22:23:10.408 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:11.230 INFO:teuthology.orchestra.run.smithi194.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-15T22:23:11.252 INFO:teuthology.orchestra.run.smithi194.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T22:23:11.336 INFO:teuthology.orchestra.run.smithi194.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:11.800 INFO:teuthology.orchestra.run.smithi194.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-15T22:23:11.820 INFO:teuthology.orchestra.run.smithi194.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T22:23:11.858 INFO:teuthology.orchestra.run.smithi194.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:13.060 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-15T22:23:13.081 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T22:23:13.159 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:13.655 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-15T22:23:13.675 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T22:23:13.713 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:18.324 INFO:teuthology.orchestra.run.smithi194.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T22:23:18.449 INFO:teuthology.orchestra.run.smithi194.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T22:23:18.723 INFO:teuthology.orchestra.run.smithi194.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T22:23:18.861 INFO:teuthology.orchestra.run.smithi194.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T22:23:19.155 INFO:teuthology.orchestra.run.smithi194.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-15T22:23:19.178 INFO:teuthology.orchestra.run.smithi194.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-15T22:23:19.222 INFO:teuthology.orchestra.run.smithi194.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T22:23:20.362 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T22:23:20.489 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T22:23:20.821 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T22:23:20.943 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T22:23:21.262 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-15T22:23:21.285 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-15T22:23:21.328 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T22:23:24.438 INFO:teuthology.orchestra.run.smithi194.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-15T22:23:24.475 INFO:teuthology.orchestra.run.smithi194.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T22:23:24.504 INFO:teuthology.orchestra.run.smithi194.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:27.013 INFO:teuthology.orchestra.run.smithi194.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T22:23:27.024 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-15T22:23:27.061 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T22:23:27.099 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:27.138 INFO:teuthology.orchestra.run.smithi194.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T22:23:27.472 INFO:teuthology.orchestra.run.smithi194.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T22:23:27.576 INFO:teuthology.orchestra.run.smithi194.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:27.677 INFO:teuthology.orchestra.run.smithi194.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-15T22:23:27.781 INFO:teuthology.orchestra.run.smithi194.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:29.114 INFO:teuthology.orchestra.run.smithi194.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-15T22:23:29.114 INFO:teuthology.orchestra.run.smithi194.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-15T22:23:29.114 INFO:teuthology.orchestra.run.smithi194.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-15T22:23:29.114 INFO:teuthology.orchestra.run.smithi194.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-15T22:23:29.265 INFO:teuthology.orchestra.run.smithi194.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:31.050 INFO:teuthology.orchestra.run.smithi194.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:31.269 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T22:23:31.386 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T22:23:31.736 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T22:23:31.858 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:31.984 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-15T22:23:32.154 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:32.418 INFO:teuthology.orchestra.run.smithi194.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-15T22:23:32.536 INFO:teuthology.orchestra.run.smithi194.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-15T22:23:32.993 INFO:teuthology.orchestra.run.smithi194.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:33.251 INFO:teuthology.orchestra.run.smithi194.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-15T22:23:33.251 INFO:teuthology.orchestra.run.smithi194.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-15T22:23:33.478 INFO:teuthology.orchestra.run.smithi170.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-15T22:23:33.478 INFO:teuthology.orchestra.run.smithi170.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-15T22:23:33.478 INFO:teuthology.orchestra.run.smithi170.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-15T22:23:33.478 INFO:teuthology.orchestra.run.smithi170.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-15T22:23:33.973 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:35.391 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:37.401 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-15T22:23:37.526 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-15T22:23:37.645 INFO:teuthology.orchestra.run.smithi170.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T22:23:37.697 INFO:teuthology.orchestra.run.smithi170.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-15T22:23:37.697 INFO:teuthology.orchestra.run.smithi170.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-15T22:23:47.209 INFO:teuthology.orchestra.run.smithi194.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-15T22:23:47.209 INFO:teuthology.orchestra.run.smithi194.stdout:Sourcing file `/etc/default/grub' 2024-04-15T22:23:47.215 INFO:teuthology.orchestra.run.smithi194.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T22:23:47.240 INFO:teuthology.orchestra.run.smithi194.stdout:Generating grub configuration file ... 2024-04-15T22:23:47.503 INFO:teuthology.orchestra.run.smithi194.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T22:23:47.521 INFO:teuthology.orchestra.run.smithi194.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T22:23:47.799 INFO:teuthology.orchestra.run.smithi194.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T22:23:47.804 INFO:teuthology.orchestra.run.smithi194.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T22:23:47.866 INFO:teuthology.orchestra.run.smithi194.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T22:23:47.872 INFO:teuthology.orchestra.run.smithi194.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T22:23:48.026 INFO:teuthology.orchestra.run.smithi194.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T22:23:48.026 INFO:teuthology.orchestra.run.smithi194.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T22:23:48.026 INFO:teuthology.orchestra.run.smithi194.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T22:23:48.059 INFO:teuthology.orchestra.run.smithi194.stdout:done 2024-04-15T22:23:48.541 DEBUG:teuthology.orchestra.run.smithi194:> dpkg -s linux-image-generic 2024-04-15T22:23:48.565 INFO:teuthology.orchestra.run.smithi194.stdout:Package: linux-image-generic 2024-04-15T22:23:48.565 INFO:teuthology.orchestra.run.smithi194.stdout:Status: install ok installed 2024-04-15T22:23:48.565 INFO:teuthology.orchestra.run.smithi194.stdout:Priority: optional 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Section: kernel 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Installed-Size: 21 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Architecture: amd64 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Source: linux-meta 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Version: 5.15.0.102.99 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Recommends: thermald 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout:Description: Generic Linux kernel image 2024-04-15T22:23:48.566 INFO:teuthology.orchestra.run.smithi194.stdout: This package will always depend on the latest generic kernel image 2024-04-15T22:23:48.567 INFO:teuthology.orchestra.run.smithi194.stdout: available. 2024-04-15T22:23:48.568 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-15T22:23:48.568 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T22:23:48.568 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T22:23:48.568 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T22:23:48.568 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi194.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T22:23:48.568 DEBUG:teuthology.orchestra.run.smithi194:> sudo apt-get clean 2024-04-15T22:23:48.775 DEBUG:teuthology.orchestra.run.smithi194:> sudo apt-get update 2024-04-15T22:23:48.900 INFO:teuthology.orchestra.run.smithi194.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T22:23:48.912 INFO:teuthology.orchestra.run.smithi194.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T22:23:48.933 INFO:teuthology.orchestra.run.smithi194.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T22:23:49.014 INFO:teuthology.orchestra.run.smithi194.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T22:23:50.249 INFO:teuthology.orchestra.run.smithi194.stdout:Reading package lists... 2024-04-15T22:23:50.266 DEBUG:teuthology.orchestra.run.smithi194:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T22:23:50.329 INFO:teuthology.orchestra.run.smithi194.stdout:Reading package lists... 2024-04-15T22:23:50.527 INFO:teuthology.orchestra.run.smithi194.stdout:Building dependency tree... 2024-04-15T22:23:50.528 INFO:teuthology.orchestra.run.smithi194.stdout:Reading state information... 2024-04-15T22:23:50.703 INFO:teuthology.orchestra.run.smithi194.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-15T22:23:50.703 INFO:teuthology.orchestra.run.smithi194.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T22:23:50.704 INFO:teuthology.orchestra.run.smithi194.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T22:23:50.704 INFO:teuthology.orchestra.run.smithi194.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T22:23:50.704 INFO:teuthology.orchestra.run.smithi194.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T22:23:50.704 INFO:teuthology.orchestra.run.smithi194.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T22:23:50.704 INFO:teuthology.orchestra.run.smithi194.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T22:23:50.704 INFO:teuthology.orchestra.run.smithi194.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T22:23:50.744 INFO:teuthology.orchestra.run.smithi194.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T22:23:50.746 DEBUG:teuthology.orchestra.run.smithi194:> dpkg -s linux-image-generic 2024-04-15T22:23:50.762 INFO:teuthology.orchestra.run.smithi194.stdout:Package: linux-image-generic 2024-04-15T22:23:50.762 INFO:teuthology.orchestra.run.smithi194.stdout:Status: install ok installed 2024-04-15T22:23:50.762 INFO:teuthology.orchestra.run.smithi194.stdout:Priority: optional 2024-04-15T22:23:50.762 INFO:teuthology.orchestra.run.smithi194.stdout:Section: kernel 2024-04-15T22:23:50.762 INFO:teuthology.orchestra.run.smithi194.stdout:Installed-Size: 21 2024-04-15T22:23:50.762 INFO:teuthology.orchestra.run.smithi194.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T22:23:50.762 INFO:teuthology.orchestra.run.smithi194.stdout:Architecture: amd64 2024-04-15T22:23:50.762 INFO:teuthology.orchestra.run.smithi194.stdout:Source: linux-meta 2024-04-15T22:23:50.763 INFO:teuthology.orchestra.run.smithi194.stdout:Version: 5.15.0.102.99 2024-04-15T22:23:50.763 INFO:teuthology.orchestra.run.smithi194.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T22:23:50.763 INFO:teuthology.orchestra.run.smithi194.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T22:23:50.763 INFO:teuthology.orchestra.run.smithi194.stdout:Recommends: thermald 2024-04-15T22:23:50.763 INFO:teuthology.orchestra.run.smithi194.stdout:Description: Generic Linux kernel image 2024-04-15T22:23:50.763 INFO:teuthology.orchestra.run.smithi194.stdout: This package will always depend on the latest generic kernel image 2024-04-15T22:23:50.763 INFO:teuthology.orchestra.run.smithi194.stdout: available. 2024-04-15T22:23:50.763 DEBUG:teuthology.orchestra.run.smithi194:> mktemp 2024-04-15T22:23:50.810 INFO:teuthology.orchestra.run.smithi194.stdout:/tmp/tmp.FHBef3zMl3 2024-04-15T22:23:50.810 DEBUG:teuthology.orchestra.run.smithi194:> sudo cp /boot/grub/grub.cfg /tmp/tmp.FHBef3zMl3 2024-04-15T22:23:50.866 DEBUG:teuthology.orchestra.run.smithi194:> sudo chmod 0666 /tmp/tmp.FHBef3zMl3 2024-04-15T22:23:51.004 DEBUG:teuthology.orchestra.remote:smithi194:/tmp/tmp.FHBef3zMl3 is 10KB 2024-04-15T22:23:51.017 DEBUG:teuthology.orchestra.run.smithi194:> rm -fr /tmp/tmp.FHBef3zMl3 2024-04-15T22:23:51.022 DEBUG:teuthology.orchestra.run.smithi194:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-15T22:23:51.082 DEBUG:teuthology.orchestra.run.smithi194:> set -ex 2024-04-15T22:23:51.082 DEBUG:teuthology.orchestra.run.smithi194:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-15T22:23:51.082 DEBUG:teuthology.orchestra.run.smithi194:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-15T22:23:51.149 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-15T22:23:51.149 DEBUG:teuthology.orchestra.run.smithi194:> sudo update-grub 2024-04-15T22:23:51.959 INFO:teuthology.orchestra.run.smithi170.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-15T22:23:51.959 INFO:teuthology.orchestra.run.smithi170.stdout:Sourcing file `/etc/default/grub' 2024-04-15T22:23:51.985 INFO:teuthology.orchestra.run.smithi170.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T22:23:52.002 INFO:teuthology.orchestra.run.smithi170.stdout:Generating grub configuration file ... 2024-04-15T22:23:52.250 INFO:teuthology.orchestra.run.smithi194.stderr:Sourcing file `/etc/default/grub' 2024-04-15T22:23:52.252 INFO:teuthology.orchestra.run.smithi194.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T22:23:52.254 INFO:teuthology.orchestra.run.smithi194.stderr:Generating grub configuration file ... 2024-04-15T22:23:52.380 INFO:teuthology.orchestra.run.smithi170.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T22:23:52.405 INFO:teuthology.orchestra.run.smithi170.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T22:23:52.430 INFO:teuthology.orchestra.run.smithi194.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T22:23:52.436 INFO:teuthology.orchestra.run.smithi194.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T22:23:52.667 INFO:teuthology.orchestra.run.smithi194.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T22:23:52.673 INFO:teuthology.orchestra.run.smithi194.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T22:23:52.713 INFO:teuthology.orchestra.run.smithi194.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T22:23:52.718 INFO:teuthology.orchestra.run.smithi194.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T22:23:52.790 INFO:teuthology.orchestra.run.smithi170.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T22:23:52.796 INFO:teuthology.orchestra.run.smithi170.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T22:23:52.831 INFO:teuthology.orchestra.run.smithi194.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T22:23:52.831 INFO:teuthology.orchestra.run.smithi194.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T22:23:52.832 INFO:teuthology.orchestra.run.smithi194.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T22:23:52.858 INFO:teuthology.orchestra.run.smithi194.stderr:done 2024-04-15T22:23:52.867 DEBUG:teuthology.orchestra.run.smithi194:> sudo shutdown -r now 2024-04-15T22:23:52.868 INFO:teuthology.orchestra.run.smithi170.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T22:23:52.872 INFO:teuthology.orchestra.run.smithi170.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T22:23:53.039 INFO:teuthology.orchestra.run.smithi170.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T22:23:53.039 INFO:teuthology.orchestra.run.smithi170.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T22:23:53.039 INFO:teuthology.orchestra.run.smithi170.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T22:23:53.077 INFO:teuthology.orchestra.run.smithi170.stdout:done 2024-04-15T22:23:53.549 DEBUG:teuthology.orchestra.run.smithi170:> dpkg -s linux-image-generic 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Package: linux-image-generic 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Status: install ok installed 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Priority: optional 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Section: kernel 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Installed-Size: 21 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Architecture: amd64 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Source: linux-meta 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Version: 5.15.0.102.99 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T22:23:53.570 INFO:teuthology.orchestra.run.smithi170.stdout:Recommends: thermald 2024-04-15T22:23:53.571 INFO:teuthology.orchestra.run.smithi170.stdout:Description: Generic Linux kernel image 2024-04-15T22:23:53.571 INFO:teuthology.orchestra.run.smithi170.stdout: This package will always depend on the latest generic kernel image 2024-04-15T22:23:53.571 INFO:teuthology.orchestra.run.smithi170.stdout: available. 2024-04-15T22:23:53.571 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-15T22:23:53.571 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T22:23:53.571 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T22:23:53.571 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T22:23:53.571 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi170.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T22:23:53.571 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get clean 2024-04-15T22:23:53.749 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get update 2024-04-15T22:23:53.945 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T22:23:53.970 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T22:23:54.005 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T22:23:54.009 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T22:23:55.315 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-04-15T22:23:55.331 DEBUG:teuthology.orchestra.run.smithi170:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T22:23:55.392 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-04-15T22:23:55.598 INFO:teuthology.orchestra.run.smithi170.stdout:Building dependency tree... 2024-04-15T22:23:55.599 INFO:teuthology.orchestra.run.smithi170.stdout:Reading state information... 2024-04-15T22:23:55.774 INFO:teuthology.orchestra.run.smithi170.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-15T22:23:55.774 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T22:23:55.774 INFO:teuthology.orchestra.run.smithi170.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T22:23:55.774 INFO:teuthology.orchestra.run.smithi170.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T22:23:55.774 INFO:teuthology.orchestra.run.smithi170.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T22:23:55.775 INFO:teuthology.orchestra.run.smithi170.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T22:23:55.775 INFO:teuthology.orchestra.run.smithi170.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T22:23:55.775 INFO:teuthology.orchestra.run.smithi170.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T22:23:55.813 INFO:teuthology.orchestra.run.smithi170.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T22:23:55.815 DEBUG:teuthology.orchestra.run.smithi170:> dpkg -s linux-image-generic 2024-04-15T22:23:55.828 INFO:teuthology.orchestra.run.smithi170.stdout:Package: linux-image-generic 2024-04-15T22:23:55.828 INFO:teuthology.orchestra.run.smithi170.stdout:Status: install ok installed 2024-04-15T22:23:55.828 INFO:teuthology.orchestra.run.smithi170.stdout:Priority: optional 2024-04-15T22:23:55.828 INFO:teuthology.orchestra.run.smithi170.stdout:Section: kernel 2024-04-15T22:23:55.828 INFO:teuthology.orchestra.run.smithi170.stdout:Installed-Size: 21 2024-04-15T22:23:55.828 INFO:teuthology.orchestra.run.smithi170.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T22:23:55.828 INFO:teuthology.orchestra.run.smithi170.stdout:Architecture: amd64 2024-04-15T22:23:55.829 INFO:teuthology.orchestra.run.smithi170.stdout:Source: linux-meta 2024-04-15T22:23:55.829 INFO:teuthology.orchestra.run.smithi170.stdout:Version: 5.15.0.102.99 2024-04-15T22:23:55.829 INFO:teuthology.orchestra.run.smithi170.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T22:23:55.829 INFO:teuthology.orchestra.run.smithi170.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T22:23:55.829 INFO:teuthology.orchestra.run.smithi170.stdout:Recommends: thermald 2024-04-15T22:23:55.829 INFO:teuthology.orchestra.run.smithi170.stdout:Description: Generic Linux kernel image 2024-04-15T22:23:55.829 INFO:teuthology.orchestra.run.smithi170.stdout: This package will always depend on the latest generic kernel image 2024-04-15T22:23:55.829 INFO:teuthology.orchestra.run.smithi170.stdout: available. 2024-04-15T22:23:55.829 DEBUG:teuthology.orchestra.run.smithi170:> mktemp 2024-04-15T22:23:55.872 INFO:teuthology.orchestra.run.smithi170.stdout:/tmp/tmp.QNgORhiRxD 2024-04-15T22:23:55.873 DEBUG:teuthology.orchestra.run.smithi170:> sudo cp /boot/grub/grub.cfg /tmp/tmp.QNgORhiRxD 2024-04-15T22:23:55.928 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 0666 /tmp/tmp.QNgORhiRxD 2024-04-15T22:23:56.048 DEBUG:teuthology.orchestra.remote:smithi170:/tmp/tmp.QNgORhiRxD is 10KB 2024-04-15T22:23:56.061 DEBUG:teuthology.orchestra.run.smithi170:> rm -fr /tmp/tmp.QNgORhiRxD 2024-04-15T22:23:56.066 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-15T22:23:56.121 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-15T22:23:56.121 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-15T22:23:56.121 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-15T22:23:56.188 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-15T22:23:56.189 DEBUG:teuthology.orchestra.run.smithi170:> sudo update-grub 2024-04-15T22:23:57.518 INFO:teuthology.orchestra.run.smithi170.stderr:Sourcing file `/etc/default/grub' 2024-04-15T22:23:57.519 INFO:teuthology.orchestra.run.smithi170.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T22:23:57.522 INFO:teuthology.orchestra.run.smithi170.stderr:Generating grub configuration file ... 2024-04-15T22:23:57.785 INFO:teuthology.orchestra.run.smithi170.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T22:23:57.791 INFO:teuthology.orchestra.run.smithi170.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T22:23:58.069 INFO:teuthology.orchestra.run.smithi170.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T22:23:58.074 INFO:teuthology.orchestra.run.smithi170.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T22:23:58.119 INFO:teuthology.orchestra.run.smithi170.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T22:23:58.124 INFO:teuthology.orchestra.run.smithi170.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T22:23:58.259 INFO:teuthology.orchestra.run.smithi170.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T22:23:58.259 INFO:teuthology.orchestra.run.smithi170.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T22:23:58.260 INFO:teuthology.orchestra.run.smithi170.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T22:23:58.281 INFO:teuthology.orchestra.run.smithi170.stderr:done 2024-04-15T22:23:58.283 DEBUG:teuthology.orchestra.run.smithi170:> sudo shutdown -r now 2024-04-15T22:24:22.870 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T22:24:22.871 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi194.front.sepia.ceph.com' 2024-04-15T22:24:22.871 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi194.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:24:28.292 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T22:24:28.292 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-04-15T22:24:28.293 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:24:41.247 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.194 2024-04-15T22:24:46.622 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.170 2024-04-15T22:24:50.251 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi194.front.sepia.ceph.com' 2024-04-15T22:24:50.252 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi194.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:24:53.310 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.194 2024-04-15T22:24:55.625 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-04-15T22:24:55.626 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:24:58.686 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.170 2024-04-15T22:25:05.313 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi194.front.sepia.ceph.com' 2024-04-15T22:25:05.314 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi194.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:25:10.692 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-04-15T22:25:10.693 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:25:23.743 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.194 2024-04-15T22:25:38.758 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi194.front.sepia.ceph.com' 2024-04-15T22:25:38.759 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi194.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:25:38.978 DEBUG:teuthology.orchestra.run.smithi194:> true 2024-04-15T22:25:39.525 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi194.front.sepia.ceph.com' 2024-04-15T22:25:39.526 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-102-generic"... 2024-04-15T22:25:39.526 DEBUG:teuthology.orchestra.run.smithi194:> uname -r 2024-04-15T22:25:39.574 INFO:teuthology.orchestra.run.smithi194.stdout:5.15.0-102-generic 2024-04-15T22:25:39.575 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-15T22:25:39.575 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T22:25:39.575 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-15T22:25:40.576 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T22:25:40.576 DEBUG:teuthology.orchestra.run.smithi194:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T22:25:40.914 INFO:teuthology.orchestra.run.smithi194.stdout:ttyS1 2024-04-15T22:25:40.944 DEBUG:teuthology.parallel:result is None 2024-04-15T22:25:42.858 DEBUG:teuthology.orchestra.run.smithi170:> true 2024-04-15T22:25:43.458 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-04-15T22:25:43.459 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-102-generic"... 2024-04-15T22:25:43.459 DEBUG:teuthology.orchestra.run.smithi170:> uname -r 2024-04-15T22:25:43.504 INFO:teuthology.orchestra.run.smithi170.stdout:5.15.0-102-generic 2024-04-15T22:25:43.504 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-15T22:25:43.504 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T22:25:43.504 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-15T22:25:44.505 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T22:25:44.505 DEBUG:teuthology.orchestra.run.smithi170:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T22:25:44.576 INFO:teuthology.orchestra.run.smithi170.stdout:ttyS1 2024-04-15T22:25:44.605 DEBUG:teuthology.parallel:result is None 2024-04-15T22:25:44.605 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T22:25:44.612 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T22:25:44.613 DEBUG:teuthology.orchestra.run.smithi170:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T22:25:44.615 DEBUG:teuthology.orchestra.run.smithi194:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T22:25:44.621 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T22:25:44.628 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T22:25:44.635 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T22:25:44.635 DEBUG:teuthology.orchestra.run.smithi170:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T22:25:44.661 DEBUG:teuthology.orchestra.run.smithi194:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T22:25:44.683 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T22:25:44.690 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T22:25:44.690 DEBUG:teuthology.orchestra.run.smithi170:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T22:25:44.717 DEBUG:teuthology.orchestra.run.smithi194:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T22:25:44.743 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:25:44.749 INFO:teuthology.orchestra.run.smithi194.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:25:44.751 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:25:44.759 INFO:teuthology.orchestra.run.smithi194.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:25:44.760 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T22:25:44.767 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T22:25:44.767 DEBUG:teuthology.orchestra.run.smithi170:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T22:25:44.801 DEBUG:teuthology.orchestra.run.smithi194:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T22:25:44.831 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T22:25:44.841 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T22:25:44.841 DEBUG:teuthology.orchestra.run.smithi170:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T22:25:44.857 DEBUG:teuthology.orchestra.run.smithi194:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T22:25:44.878 DEBUG:teuthology.orchestra.run.smithi170:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:25:44.908 DEBUG:teuthology.orchestra.run.smithi170:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:25:44.960 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-15T22:25:44.960 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T22:25:45.021 DEBUG:teuthology.orchestra.run.smithi194:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:25:45.027 DEBUG:teuthology.orchestra.run.smithi194:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:25:45.075 DEBUG:teuthology.orchestra.run.smithi194:> set -ex 2024-04-15T22:25:45.075 DEBUG:teuthology.orchestra.run.smithi194:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T22:25:45.138 DEBUG:teuthology.orchestra.run.smithi170:> sudo service rsyslog restart 2024-04-15T22:25:45.140 DEBUG:teuthology.orchestra.run.smithi194:> sudo service rsyslog restart 2024-04-15T22:25:45.213 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T22:25:45.224 INFO:teuthology.task.internal:Starting timer... 2024-04-15T22:25:45.224 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T22:25:45.239 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T22:25:45.248 DEBUG:teuthology.task.selinux:Excluding smithi170: OS 'ubuntu' does not support SELinux 2024-04-15T22:25:45.248 DEBUG:teuthology.task.selinux:Excluding smithi194: OS 'ubuntu' does not support SELinux 2024-04-15T22:25:45.248 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T22:25:45.248 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-04-15T22:25:45.248 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T22:25:45.248 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T22:25:45.259 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-15T22:25:45.264 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-15T22:25:45.386 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T22:25:45.402 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-04-15T22:25:45.404 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi170.front.sepia.ceph.com,smithi194.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T22:32:43.713 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi170.front.sepia.ceph.com'), Remote(name='ubuntu@smithi194.front.sepia.ceph.com')] 2024-04-15T22:32:43.714 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-04-15T22:32:43.715 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:32:43.798 DEBUG:teuthology.orchestra.run.smithi170:> true 2024-04-15T22:32:43.874 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-04-15T22:32:43.875 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi194.front.sepia.ceph.com' 2024-04-15T22:32:43.875 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi194.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:32:43.953 DEBUG:teuthology.orchestra.run.smithi194:> true 2024-04-15T22:32:44.030 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi194.front.sepia.ceph.com' 2024-04-15T22:32:44.031 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T22:32:44.041 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T22:32:44.041 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T22:32:44.042 DEBUG:teuthology.orchestra.run.smithi170:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:32:44.044 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T22:32:44.044 DEBUG:teuthology.orchestra.run.smithi194:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:32:44.070 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-15T22:32:44.070 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: Command line: ntpd -gq 2024-04-15T22:32:44.070 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: ---------------------------------------------------- 2024-04-15T22:32:44.070 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: ntp-4 is maintained by Network Time Foundation, 2024-04-15T22:32:44.070 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-15T22:32:44.070 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: corporation. Support and training for ntp-4 are 2024-04-15T22:32:44.071 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: available at https://www.nwtime.org/support 2024-04-15T22:32:44.071 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: ---------------------------------------------------- 2024-04-15T22:32:44.071 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: proto: precision = 0.043 usec (-24) 2024-04-15T22:32:44.071 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: basedate set to 2022-02-04 2024-04-15T22:32:44.071 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: gps base set to 2022-02-06 (week 2196) 2024-04-15T22:32:44.071 INFO:teuthology.orchestra.run.smithi170.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T22:32:44.071 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T22:32:44.072 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: restrict ::: KOD does nothing without LIMITED. 2024-04-15T22:32:44.072 INFO:teuthology.orchestra.run.smithi170.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-15T22:32:44.072 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: Listen and drop on 0 v6wildcard [::]:123 2024-04-15T22:32:44.073 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-15T22:32:44.073 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: Listen normally on 2 lo 127.0.0.1:123 2024-04-15T22:32:44.073 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: Listen normally on 3 enp3s0f1 172.21.15.170:123 2024-04-15T22:32:44.073 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: Listen normally on 4 lo [::1]:123 2024-04-15T22:32:44.073 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7255%5]:123 2024-04-15T22:32:44.073 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:44 ntpd[17158]: Listening on routing socket on fd #22 for interface updates 2024-04-15T22:32:44.103 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-15T22:32:44.103 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: Command line: ntpd -gq 2024-04-15T22:32:44.104 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: ---------------------------------------------------- 2024-04-15T22:32:44.104 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: ntp-4 is maintained by Network Time Foundation, 2024-04-15T22:32:44.104 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-15T22:32:44.104 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: corporation. Support and training for ntp-4 are 2024-04-15T22:32:44.104 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: available at https://www.nwtime.org/support 2024-04-15T22:32:44.104 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: ---------------------------------------------------- 2024-04-15T22:32:44.104 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: proto: precision = 0.061 usec (-24) 2024-04-15T22:32:44.105 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: basedate set to 2022-02-04 2024-04-15T22:32:44.105 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: gps base set to 2022-02-06 (week 2196) 2024-04-15T22:32:44.105 INFO:teuthology.orchestra.run.smithi194.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T22:32:44.105 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T22:32:44.105 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: restrict ::: KOD does nothing without LIMITED. 2024-04-15T22:32:44.105 INFO:teuthology.orchestra.run.smithi194.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-15T22:32:44.106 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: Listen and drop on 0 v6wildcard [::]:123 2024-04-15T22:32:44.106 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-15T22:32:44.106 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: Listen normally on 2 lo 127.0.0.1:123 2024-04-15T22:32:44.107 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: Listen normally on 3 enp3s0f1 172.21.15.194:123 2024-04-15T22:32:44.107 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: Listen normally on 4 lo [::1]:123 2024-04-15T22:32:44.107 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7ea5%5]:123 2024-04-15T22:32:44.107 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:44 ntpd[17161]: Listening on routing socket on fd #22 for interface updates 2024-04-15T22:32:45.070 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:45 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:45.070 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:45 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:45.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:45 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:45.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:45 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:45.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:45 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:45.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:45 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:45.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:45 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:45.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:45 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:45.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:45 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:45.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:45 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:45.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:45 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:45.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:45 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:45.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:45 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:45.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:45 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:46.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:46.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:46.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:46.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:46.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:46.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:46.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:46.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:46.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:46.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:46.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:46.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:46 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:47.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:47.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:47.073 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:47.073 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:47.073 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:47.073 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:47.073 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:47.073 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:47 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:47.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:47 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:47.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:47 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:47.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:47 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:47.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:47 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:47.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:47 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:47.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:47 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:48.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:48.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:48.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:48.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:48.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:48.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:48.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:48.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:48.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:48.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:48.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:48.106 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:48 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:49.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:49.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:49.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:49.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:49.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:49.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:49.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:49 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:49.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:49 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:49.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:49 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:49.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:49 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:49.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:49 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:49.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:49 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:49.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:49 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:50.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:50 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:51.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:51.071 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:51.072 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:51.073 INFO:teuthology.orchestra.run.smithi170.stdout:15 Apr 22:32:51 ntpd[17158]: ntpd: time slew -0.002433 s 2024-04-15T22:32:51.073 INFO:teuthology.orchestra.run.smithi170.stdout:ntpd: time slew -0.002433s 2024-04-15T22:32:51.073 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-15T22:32:51.073 INFO:teuthology.orchestra.run.smithi170.stderr:15 Apr 22:32:51 ntpd[17158]: can't open /var/log/ntpstats/loopstats.20240415: Permission denied 2024-04-15T22:32:51.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:51 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:51.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:51 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:51.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:51 ntpd[17161]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T22:32:51.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:51 ntpd[17161]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T22:32:51.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:51 ntpd[17161]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T22:32:51.104 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:51 ntpd[17161]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T22:32:51.105 INFO:teuthology.orchestra.run.smithi194.stdout:15 Apr 22:32:51 ntpd[17161]: ntpd: time slew +0.000307 s 2024-04-15T22:32:51.105 INFO:teuthology.orchestra.run.smithi194.stdout:ntpd: time slew +0.000307s 2024-04-15T22:32:51.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:51 ntpd[17161]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-15T22:32:51.105 INFO:teuthology.orchestra.run.smithi194.stderr:15 Apr 22:32:51 ntpd[17161]: can't open /var/log/ntpstats/loopstats.20240415: Permission denied 2024-04-15T22:32:51.115 INFO:teuthology.orchestra.run.smithi170.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T22:32:51.115 INFO:teuthology.orchestra.run.smithi170.stdout:============================================================================== 2024-04-15T22:32:51.115 INFO:teuthology.orchestra.run.smithi170.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:32:51.115 INFO:teuthology.orchestra.run.smithi170.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:32:51.115 INFO:teuthology.orchestra.run.smithi170.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:32:51.115 INFO:teuthology.orchestra.run.smithi170.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:32:51.223 INFO:teuthology.orchestra.run.smithi194.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T22:32:51.223 INFO:teuthology.orchestra.run.smithi194.stdout:============================================================================== 2024-04-15T22:32:51.223 INFO:teuthology.orchestra.run.smithi194.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:32:51.223 INFO:teuthology.orchestra.run.smithi194.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:32:51.223 INFO:teuthology.orchestra.run.smithi194.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:32:51.223 INFO:teuthology.orchestra.run.smithi194.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:32:51.224 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-15T22:32:51.237 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-15T22:32:51.237 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-15T22:32:51.237 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:32:51.242 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-15T22:32:51.242 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_1 2024-04-15T22:32:51.290 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T22:32:51.290 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:32:51.291 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 876 Links: 1 2024-04-15T22:32:51.291 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:32:51.291 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-04-15 22:29:29.677314876 +0000 2024-04-15T22:32:51.291 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-04-15 22:29:29.673314911 +0000 2024-04-15T22:32:51.291 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-04-15 22:29:29.673314911 +0000 2024-04-15T22:32:51.291 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-04-15T22:32:51.291 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T22:32:51.344 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-04-15T22:32:51.344 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-04-15T22:32:51.345 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000278607 s, 1.8 MB/s 2024-04-15T22:32:51.346 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T22:32:51.395 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_2 2024-04-15T22:32:51.442 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T22:32:51.442 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:32:51.442 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 897 Links: 1 2024-04-15T22:32:51.442 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:32:51.442 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-04-15 22:29:30.425308195 +0000 2024-04-15T22:32:51.442 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-04-15 22:29:30.185310339 +0000 2024-04-15T22:32:51.443 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-04-15 22:29:30.185310339 +0000 2024-04-15T22:32:51.443 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-04-15T22:32:51.443 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T22:32:51.496 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-04-15T22:32:51.497 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-04-15T22:32:51.497 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000235698 s, 2.2 MB/s 2024-04-15T22:32:51.498 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T22:32:51.548 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_3 2024-04-15T22:32:51.594 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T22:32:51.594 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:32:51.594 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 915 Links: 1 2024-04-15T22:32:51.594 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:32:51.594 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-04-15 22:29:30.645306230 +0000 2024-04-15T22:32:51.594 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-04-15 22:29:30.641306266 +0000 2024-04-15T22:32:51.595 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-04-15 22:29:30.641306266 +0000 2024-04-15T22:32:51.595 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-04-15T22:32:51.595 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T22:32:51.648 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-04-15T22:32:51.648 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-04-15T22:32:51.648 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000310591 s, 1.6 MB/s 2024-04-15T22:32:51.649 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T22:32:51.699 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_4 2024-04-15T22:32:51.746 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T22:32:51.746 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:32:51.746 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 929 Links: 1 2024-04-15T22:32:51.746 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:32:51.746 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-04-15 22:29:31.377299691 +0000 2024-04-15T22:32:51.746 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-04-15 22:29:31.133301870 +0000 2024-04-15T22:32:51.746 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-04-15 22:29:31.133301870 +0000 2024-04-15T22:32:51.746 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-04-15T22:32:51.746 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T22:32:51.804 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-04-15T22:32:51.804 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-04-15T22:32:51.804 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000188469 s, 2.7 MB/s 2024-04-15T22:32:51.805 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T22:32:51.855 DEBUG:teuthology.orchestra.run.smithi170:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-15T22:32:51.986 INFO:teuthology.orchestra.run.smithi170.stdout:loop 2024-04-15T22:32:51.987 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_1... 2024-04-15T22:32:51.988 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-15T22:32:52.005 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-04-15T22:32:52.025 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_11 2024-04-15T22:32:52.041 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_2... 2024-04-15T22:32:52.042 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-15T22:32:52.103 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-04-15T22:32:52.122 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_21 2024-04-15T22:32:52.138 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_3... 2024-04-15T22:32:52.139 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-15T22:32:52.203 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-04-15T22:32:52.221 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_31 2024-04-15T22:32:52.236 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_4... 2024-04-15T22:32:52.237 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-15T22:32:52.297 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-04-15T22:32:52.321 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_41 2024-04-15T22:32:52.337 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-15T22:32:52.338 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:32:52.387 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme list 2024-04-15T22:32:52.441 INFO:teuthology.orchestra.run.smithi170.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-15T22:32:52.441 INFO:teuthology.orchestra.run.smithi170.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-15T22:32:52.441 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme0n1 PHMB7476002R480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-04-15T22:32:52.441 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme1n1 2283cecddb4bdfaa681a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-15T22:32:52.441 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme2n1 f45197ea1169f77fd6cd Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-15T22:32:52.441 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme3n1 c49066722a09576ee0ed Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-15T22:32:52.442 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme4n1 37721e752d02ad16e932 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-15T22:32:52.442 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-15T22:32:52.443 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-15T22:32:52.443 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/scratch_devs 2024-04-15T22:32:52.497 DEBUG:teuthology.orchestra.run.smithi194:> set -ex 2024-04-15T22:32:52.497 DEBUG:teuthology.orchestra.run.smithi194:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:32:52.503 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-15T22:32:52.503 DEBUG:teuthology.orchestra.run.smithi194:> stat /dev/vg_nvme/lv_1 2024-04-15T22:32:52.552 INFO:teuthology.orchestra.run.smithi194.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T22:32:52.552 INFO:teuthology.orchestra.run.smithi194.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:32:52.552 INFO:teuthology.orchestra.run.smithi194.stdout:Device: 5h/5d Inode: 870 Links: 1 2024-04-15T22:32:52.552 INFO:teuthology.orchestra.run.smithi194.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:32:52.552 INFO:teuthology.orchestra.run.smithi194.stdout:Access: 2024-04-15 22:29:29.339370354 +0000 2024-04-15T22:32:52.552 INFO:teuthology.orchestra.run.smithi194.stdout:Modify: 2024-04-15 22:29:29.079372677 +0000 2024-04-15T22:32:52.552 INFO:teuthology.orchestra.run.smithi194.stdout:Change: 2024-04-15 22:29:29.079372677 +0000 2024-04-15T22:32:52.552 INFO:teuthology.orchestra.run.smithi194.stdout: Birth: - 2024-04-15T22:32:52.552 DEBUG:teuthology.orchestra.run.smithi194:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T22:32:52.606 INFO:teuthology.orchestra.run.smithi194.stderr:1+0 records in 2024-04-15T22:32:52.606 INFO:teuthology.orchestra.run.smithi194.stderr:1+0 records out 2024-04-15T22:32:52.606 INFO:teuthology.orchestra.run.smithi194.stderr:512 bytes copied, 0.000381201 s, 1.3 MB/s 2024-04-15T22:32:52.607 DEBUG:teuthology.orchestra.run.smithi194:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T22:32:52.657 DEBUG:teuthology.orchestra.run.smithi194:> stat /dev/vg_nvme/lv_2 2024-04-15T22:32:52.702 INFO:teuthology.orchestra.run.smithi194.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T22:32:52.703 INFO:teuthology.orchestra.run.smithi194.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:32:52.703 INFO:teuthology.orchestra.run.smithi194.stdout:Device: 5h/5d Inode: 882 Links: 1 2024-04-15T22:32:52.703 INFO:teuthology.orchestra.run.smithi194.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:32:52.703 INFO:teuthology.orchestra.run.smithi194.stdout:Access: 2024-04-15 22:29:29.835365924 +0000 2024-04-15T22:32:52.703 INFO:teuthology.orchestra.run.smithi194.stdout:Modify: 2024-04-15 22:29:29.595368069 +0000 2024-04-15T22:32:52.703 INFO:teuthology.orchestra.run.smithi194.stdout:Change: 2024-04-15 22:29:29.595368069 +0000 2024-04-15T22:32:52.703 INFO:teuthology.orchestra.run.smithi194.stdout: Birth: - 2024-04-15T22:32:52.703 DEBUG:teuthology.orchestra.run.smithi194:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T22:32:52.757 INFO:teuthology.orchestra.run.smithi194.stderr:1+0 records in 2024-04-15T22:32:52.758 INFO:teuthology.orchestra.run.smithi194.stderr:1+0 records out 2024-04-15T22:32:52.758 INFO:teuthology.orchestra.run.smithi194.stderr:512 bytes copied, 0.00041099 s, 1.2 MB/s 2024-04-15T22:32:52.759 DEBUG:teuthology.orchestra.run.smithi194:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T22:32:52.812 DEBUG:teuthology.orchestra.run.smithi194:> stat /dev/vg_nvme/lv_3 2024-04-15T22:32:52.859 INFO:teuthology.orchestra.run.smithi194.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T22:32:52.859 INFO:teuthology.orchestra.run.smithi194.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:32:52.859 INFO:teuthology.orchestra.run.smithi194.stdout:Device: 5h/5d Inode: 901 Links: 1 2024-04-15T22:32:52.859 INFO:teuthology.orchestra.run.smithi194.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:32:52.859 INFO:teuthology.orchestra.run.smithi194.stdout:Access: 2024-04-15 22:29:30.359361244 +0000 2024-04-15T22:32:52.859 INFO:teuthology.orchestra.run.smithi194.stdout:Modify: 2024-04-15 22:29:30.079363745 +0000 2024-04-15T22:32:52.859 INFO:teuthology.orchestra.run.smithi194.stdout:Change: 2024-04-15 22:29:30.079363745 +0000 2024-04-15T22:32:52.859 INFO:teuthology.orchestra.run.smithi194.stdout: Birth: - 2024-04-15T22:32:52.860 DEBUG:teuthology.orchestra.run.smithi194:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T22:32:52.913 INFO:teuthology.orchestra.run.smithi194.stderr:1+0 records in 2024-04-15T22:32:52.913 INFO:teuthology.orchestra.run.smithi194.stderr:1+0 records out 2024-04-15T22:32:52.913 INFO:teuthology.orchestra.run.smithi194.stderr:512 bytes copied, 0.000403781 s, 1.3 MB/s 2024-04-15T22:32:52.914 DEBUG:teuthology.orchestra.run.smithi194:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T22:32:52.968 DEBUG:teuthology.orchestra.run.smithi194:> stat /dev/vg_nvme/lv_4 2024-04-15T22:32:53.015 INFO:teuthology.orchestra.run.smithi194.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T22:32:53.015 INFO:teuthology.orchestra.run.smithi194.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:32:53.015 INFO:teuthology.orchestra.run.smithi194.stdout:Device: 5h/5d Inode: 922 Links: 1 2024-04-15T22:32:53.015 INFO:teuthology.orchestra.run.smithi194.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:32:53.015 INFO:teuthology.orchestra.run.smithi194.stdout:Access: 2024-04-15 22:29:30.855356813 +0000 2024-04-15T22:32:53.015 INFO:teuthology.orchestra.run.smithi194.stdout:Modify: 2024-04-15 22:29:30.587359208 +0000 2024-04-15T22:32:53.015 INFO:teuthology.orchestra.run.smithi194.stdout:Change: 2024-04-15 22:29:30.587359208 +0000 2024-04-15T22:32:53.015 INFO:teuthology.orchestra.run.smithi194.stdout: Birth: - 2024-04-15T22:32:53.015 DEBUG:teuthology.orchestra.run.smithi194:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T22:32:53.069 INFO:teuthology.orchestra.run.smithi194.stderr:1+0 records in 2024-04-15T22:32:53.069 INFO:teuthology.orchestra.run.smithi194.stderr:1+0 records out 2024-04-15T22:32:53.069 INFO:teuthology.orchestra.run.smithi194.stderr:512 bytes copied, 0.000381673 s, 1.3 MB/s 2024-04-15T22:32:53.071 DEBUG:teuthology.orchestra.run.smithi194:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T22:32:53.120 DEBUG:teuthology.orchestra.run.smithi194:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-15T22:32:53.244 INFO:teuthology.orchestra.run.smithi194.stdout:loop 2024-04-15T22:32:53.245 INFO:tasks.nvme_loop:Connecting nvme_loop smithi194:/dev/vg_nvme/lv_1... 2024-04-15T22:32:53.245 DEBUG:teuthology.orchestra.run.smithi194:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-15T22:32:53.261 INFO:teuthology.orchestra.run.smithi194.stdout:1 2024-04-15T22:32:53.279 INFO:teuthology.orchestra.run.smithi194.stdout:/dev/vg_nvme/lv_11 2024-04-15T22:32:53.294 INFO:tasks.nvme_loop:Connecting nvme_loop smithi194:/dev/vg_nvme/lv_2... 2024-04-15T22:32:53.294 DEBUG:teuthology.orchestra.run.smithi194:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-15T22:32:53.355 INFO:teuthology.orchestra.run.smithi194.stdout:1 2024-04-15T22:32:53.374 INFO:teuthology.orchestra.run.smithi194.stdout:/dev/vg_nvme/lv_21 2024-04-15T22:32:53.390 INFO:tasks.nvme_loop:Connecting nvme_loop smithi194:/dev/vg_nvme/lv_3... 2024-04-15T22:32:53.390 DEBUG:teuthology.orchestra.run.smithi194:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-15T22:32:53.447 INFO:teuthology.orchestra.run.smithi194.stdout:1 2024-04-15T22:32:53.467 INFO:teuthology.orchestra.run.smithi194.stdout:/dev/vg_nvme/lv_31 2024-04-15T22:32:53.482 INFO:tasks.nvme_loop:Connecting nvme_loop smithi194:/dev/vg_nvme/lv_4... 2024-04-15T22:32:53.482 DEBUG:teuthology.orchestra.run.smithi194:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-15T22:32:53.542 INFO:teuthology.orchestra.run.smithi194.stdout:1 2024-04-15T22:32:53.561 INFO:teuthology.orchestra.run.smithi194.stdout:/dev/vg_nvme/lv_41 2024-04-15T22:32:53.576 DEBUG:teuthology.orchestra.run.smithi194:> set -ex 2024-04-15T22:32:53.576 DEBUG:teuthology.orchestra.run.smithi194:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:32:53.623 DEBUG:teuthology.orchestra.run.smithi194:> sudo nvme list 2024-04-15T22:32:53.676 INFO:teuthology.orchestra.run.smithi194.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-15T22:32:53.676 INFO:teuthology.orchestra.run.smithi194.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-15T22:32:53.676 INFO:teuthology.orchestra.run.smithi194.stdout:/dev/nvme0n1 CVFT6240002A400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-15T22:32:53.676 INFO:teuthology.orchestra.run.smithi194.stdout:/dev/nvme1n1 52ef744b4aa9b690ff47 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-15T22:32:53.676 INFO:teuthology.orchestra.run.smithi194.stdout:/dev/nvme2n1 592ab915f4dce5d10754 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-15T22:32:53.676 INFO:teuthology.orchestra.run.smithi194.stdout:/dev/nvme3n1 9c3f004ad6d6d1716764 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-15T22:32:53.676 INFO:teuthology.orchestra.run.smithi194.stdout:/dev/nvme4n1 0635d63808f4ff44500d Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-15T22:32:53.677 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-15T22:32:53.677 DEBUG:teuthology.orchestra.run.smithi194:> set -ex 2024-04-15T22:32:53.677 DEBUG:teuthology.orchestra.run.smithi194:> sudo dd of=/scratch_devs 2024-04-15T22:32:53.730 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T22:32:53.818 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'} 2024-04-15T22:32:53.818 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:32:53.819 INFO:tasks.cephadm:Cluster fsid is 198a14e8-fb78-11ee-bc8f-c7b262605968 2024-04-15T22:32:53.819 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T22:32:53.819 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-15T22:32:53.819 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi170': '172.21.15.170', 'mon.smithi194': '172.21.15.194'} 2024-04-15T22:32:53.819 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T22:32:53.819 DEBUG:teuthology.orchestra.run.smithi170:> sudo hostname $(hostname -s) 2024-04-15T22:32:53.834 DEBUG:teuthology.orchestra.run.smithi194:> sudo hostname $(hostname -s) 2024-04-15T22:32:53.848 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T22:32:53.849 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:32:53.991 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/54895/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2114-ga9a752df', 'node_name': '172.21.2.9+braggi09', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2114-ga9a752df-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-04-14 16:20:13.371699', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-04-15T22:32:54.206 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref squid, sha1 a9a752df26c63acad72e1b3569fd79a515ca0765 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:32:54.207 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-04-15T22:32:54.207 DEBUG:teuthology.orchestra.run.smithi170:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T22:32:54.673 INFO:teuthology.orchestra.run.smithi170.stdout:-rw-rw-r-- 1 ubuntu ubuntu 775006 Apr 15 22:32 /home/ubuntu/cephtest/cephadm 2024-04-15T22:32:54.674 DEBUG:teuthology.orchestra.run.smithi194:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T22:32:55.149 INFO:teuthology.orchestra.run.smithi194.stdout:-rw-rw-r-- 1 ubuntu ubuntu 775006 Apr 15 22:32 /home/ubuntu/cephtest/cephadm 2024-04-15T22:32:55.149 DEBUG:teuthology.orchestra.run.smithi170:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T22:32:55.157 DEBUG:teuthology.orchestra.run.smithi194:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T22:32:55.176 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 on all hosts... 2024-04-15T22:32:55.177 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T22:32:55.201 DEBUG:teuthology.orchestra.run.smithi194:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T22:32:55.364 INFO:teuthology.orchestra.run.smithi170.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:32:55.373 INFO:teuthology.orchestra.run.smithi194.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:32:55.553 INFO:teuthology.orchestra.run.smithi194.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:32:55.553 INFO:teuthology.orchestra.run.smithi194.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 not found: manifest unknown: manifest unknown 2024-04-15T22:32:55.553 INFO:teuthology.orchestra.run.smithi194.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:32:55.574 INFO:teuthology.orchestra.run.smithi170.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:32:55.574 INFO:teuthology.orchestra.run.smithi170.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 not found: manifest unknown: manifest unknown 2024-04-15T22:32:55.574 INFO:teuthology.orchestra.run.smithi170.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:32:55.602 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:32:55.603 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi170 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:32:55.604 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T22:32:55.606 DEBUG:teuthology.misc:Transferring archived files from smithi170:/var/lib/ceph/198a14e8-fb78-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589/remote/smithi170/crash 2024-04-15T22:32:55.607 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /var/lib/ceph/198a14e8-fb78-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T22:32:55.619 INFO:teuthology.orchestra.run.smithi170.stderr:tar: /var/lib/ceph/198a14e8-fb78-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T22:32:55.619 INFO:teuthology.orchestra.run.smithi170.stderr:tar: Error is not recoverable: exiting now 2024-04-15T22:32:55.622 DEBUG:teuthology.misc:Transferring archived files from smithi194:/var/lib/ceph/198a14e8-fb78-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589/remote/smithi194/crash 2024-04-15T22:32:55.623 DEBUG:teuthology.orchestra.run.smithi194:> sudo tar c -f - -C /var/lib/ceph/198a14e8-fb78-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T22:32:55.636 INFO:teuthology.orchestra.run.smithi194.stderr:tar: /var/lib/ceph/198a14e8-fb78-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T22:32:55.636 INFO:teuthology.orchestra.run.smithi194.stderr:tar: Error is not recoverable: exiting now 2024-04-15T22:32:55.637 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T22:32:55.637 DEBUG:teuthology.orchestra.run.smithi170:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/198a14e8-fb78-11ee-bc8f-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-15T22:32:55.676 INFO:teuthology.orchestra.run.smithi170.stderr:grep: /var/log/ceph/198a14e8-fb78-11ee-bc8f-c7b262605968/ceph.log: No such file or directory 2024-04-15T22:32:55.677 INFO:tasks.cephadm:Compressing logs... 2024-04-15T22:32:55.677 DEBUG:teuthology.orchestra.run.smithi170:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T22:32:55.721 DEBUG:teuthology.orchestra.run.smithi194:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T22:32:55.731 INFO:teuthology.orchestra.run.smithi170.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-15T22:32:55.733 INFO:teuthology.orchestra.run.smithi194.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-15T22:32:55.736 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T22:32:55.737 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/cephadm.log: 69.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T22:32:55.739 INFO:teuthology.orchestra.run.smithi170.stderr: 2024-04-15T22:32:55.739 INFO:teuthology.orchestra.run.smithi170.stderr:real 0m0.016s 2024-04-15T22:32:55.739 INFO:teuthology.orchestra.run.smithi170.stderr:user 0m0.012s 2024-04-15T22:32:55.739 INFO:teuthology.orchestra.run.smithi170.stderr:sys 0m0.007s 2024-04-15T22:32:55.740 INFO:teuthology.orchestra.run.smithi194.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T22:32:55.740 INFO:teuthology.orchestra.run.smithi194.stderr:/var/log/ceph/cephadm.log: 70.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T22:32:55.742 INFO:teuthology.orchestra.run.smithi194.stderr: 2024-04-15T22:32:55.742 INFO:teuthology.orchestra.run.smithi194.stderr:real 0m0.016s 2024-04-15T22:32:55.742 INFO:teuthology.orchestra.run.smithi194.stderr:user 0m0.006s 2024-04-15T22:32:55.742 INFO:teuthology.orchestra.run.smithi194.stderr:sys 0m0.013s 2024-04-15T22:32:55.742 INFO:tasks.cephadm:Archiving logs... 2024-04-15T22:32:55.743 DEBUG:teuthology.misc:Transferring archived files from smithi170:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589/remote/smithi170/log 2024-04-15T22:32:55.743 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T22:32:55.796 DEBUG:teuthology.misc:Transferring archived files from smithi194:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589/remote/smithi194/log 2024-04-15T22:32:55.797 DEBUG:teuthology.orchestra.run.smithi194:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T22:32:55.809 INFO:tasks.cephadm:Removing cluster... 2024-04-15T22:32:55.810 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 198a14e8-fb78-11ee-bc8f-c7b262605968 --force 2024-04-15T22:32:56.002 INFO:teuthology.orchestra.run.smithi170.stdout:Deleting cluster with fsid: 198a14e8-fb78-11ee-bc8f-c7b262605968 2024-04-15T22:32:57.121 DEBUG:teuthology.orchestra.run.smithi194:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 198a14e8-fb78-11ee-bc8f-c7b262605968 --force 2024-04-15T22:32:57.285 INFO:teuthology.orchestra.run.smithi194.stdout:Deleting cluster with fsid: 198a14e8-fb78-11ee-bc8f-c7b262605968 2024-04-15T22:32:58.407 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T22:32:58.407 DEBUG:teuthology.orchestra.run.smithi170:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T22:32:58.413 DEBUG:teuthology.orchestra.run.smithi194:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T22:32:58.418 INFO:tasks.cephadm:Teardown complete 2024-04-15T22:32:58.418 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi170 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:32:58.609 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=1490b5254a804d4c9840628ed5e7eebb Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi170 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:32:58.612 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T22:32:58.620 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-15T22:32:58.627 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_1... 2024-04-15T22:32:58.628 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_1 2024-04-15T22:32:58.868 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-15T22:32:58.869 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:32:58.870 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_2... 2024-04-15T22:32:58.870 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_2 2024-04-15T22:32:59.112 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-15T22:32:59.114 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:32:59.114 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_3... 2024-04-15T22:32:59.114 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_3 2024-04-15T22:32:59.368 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-15T22:32:59.369 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:32:59.370 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_4... 2024-04-15T22:32:59.370 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_4 2024-04-15T22:32:59.600 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-15T22:32:59.601 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:32:59.602 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-15T22:32:59.602 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/scratch_devs 2024-04-15T22:32:59.614 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi194:/dev/vg_nvme/lv_1... 2024-04-15T22:32:59.615 DEBUG:teuthology.orchestra.run.smithi194:> sudo nvme disconnect -n lv_1 2024-04-15T22:32:59.831 INFO:teuthology.orchestra.run.smithi194.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-15T22:32:59.832 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:32:59.833 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi194:/dev/vg_nvme/lv_2... 2024-04-15T22:32:59.833 DEBUG:teuthology.orchestra.run.smithi194:> sudo nvme disconnect -n lv_2 2024-04-15T22:33:00.123 INFO:teuthology.orchestra.run.smithi194.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-15T22:33:00.124 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:33:00.125 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi194:/dev/vg_nvme/lv_3... 2024-04-15T22:33:00.125 DEBUG:teuthology.orchestra.run.smithi194:> sudo nvme disconnect -n lv_3 2024-04-15T22:33:00.379 INFO:teuthology.orchestra.run.smithi194.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-15T22:33:00.380 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:33:00.380 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi194:/dev/vg_nvme/lv_4... 2024-04-15T22:33:00.381 DEBUG:teuthology.orchestra.run.smithi194:> sudo nvme disconnect -n lv_4 2024-04-15T22:33:00.627 INFO:teuthology.orchestra.run.smithi194.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-15T22:33:00.628 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:33:00.628 DEBUG:teuthology.orchestra.run.smithi194:> set -ex 2024-04-15T22:33:00.629 DEBUG:teuthology.orchestra.run.smithi194:> sudo dd of=/scratch_devs 2024-04-15T22:33:00.641 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T22:33:00.659 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T22:33:00.659 DEBUG:teuthology.orchestra.run.smithi170:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:33:00.662 DEBUG:teuthology.orchestra.run.smithi194:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:33:00.674 INFO:teuthology.orchestra.run.smithi170.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T22:33:00.675 INFO:teuthology.orchestra.run.smithi170.stdout:============================================================================== 2024-04-15T22:33:00.675 INFO:teuthology.orchestra.run.smithi170.stdout: hv01.front.sepi 67.205.162.81 3 u 7 64 1 0.096 -1.916 0.000 2024-04-15T22:33:00.675 INFO:teuthology.orchestra.run.smithi170.stdout: hv02.front.sepi 63.231.80.2 3 u 7 64 1 0.087 -0.565 0.000 2024-04-15T22:33:00.676 INFO:teuthology.orchestra.run.smithi170.stdout: hv03.front.sepi 74.6.168.72 3 u 7 64 1 0.113 -0.079 0.000 2024-04-15T22:33:00.676 INFO:teuthology.orchestra.run.smithi170.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:33:00.692 INFO:teuthology.orchestra.run.smithi194.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T22:33:00.693 INFO:teuthology.orchestra.run.smithi194.stdout:============================================================================== 2024-04-15T22:33:00.693 INFO:teuthology.orchestra.run.smithi194.stdout: hv01.front.sepi 67.205.162.81 3 u 8 64 1 0.095 -1.566 0.000 2024-04-15T22:33:00.693 INFO:teuthology.orchestra.run.smithi194.stdout: hv02.front.sepi 63.231.80.2 3 u 8 64 1 0.091 -0.180 0.000 2024-04-15T22:33:00.693 INFO:teuthology.orchestra.run.smithi194.stdout: hv03.front.sepi 74.6.168.72 3 u 8 64 1 0.106 +0.248 0.000 2024-04-15T22:33:00.693 INFO:teuthology.orchestra.run.smithi194.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T22:33:00.694 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T22:33:00.702 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T22:33:00.703 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T22:33:00.711 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T22:33:00.719 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T22:33:00.727 INFO:teuthology.task.internal:Duration was 435.503138 seconds 2024-04-15T22:33:00.727 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T22:33:00.735 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T22:33:00.735 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T22:33:00.738 DEBUG:teuthology.orchestra.run.smithi194:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T22:33:00.774 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T22:33:00.774 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi170.front.sepia.ceph.com 2024-04-15T22:33:00.774 DEBUG:teuthology.orchestra.run.smithi170:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T22:33:00.820 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi194.front.sepia.ceph.com 2024-04-15T22:33:00.821 DEBUG:teuthology.orchestra.run.smithi194:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T22:33:00.831 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T22:33:00.831 DEBUG:teuthology.orchestra.run.smithi170:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T22:33:00.865 DEBUG:teuthology.orchestra.run.smithi194:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T22:33:00.898 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T22:33:00.899 DEBUG:teuthology.orchestra.run.smithi170:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T22:33:00.938 DEBUG:teuthology.orchestra.run.smithi194:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T22:33:00.993 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T22:33:01.002 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T22:33:01.002 DEBUG:teuthology.orchestra.run.smithi170:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T22:33:01.013 DEBUG:teuthology.orchestra.run.smithi194:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T22:33:01.023 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T22:33:01.032 DEBUG:teuthology.orchestra.run.smithi170:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:33:01.061 DEBUG:teuthology.orchestra.run.smithi194:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:33:01.068 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern = core 2024-04-15T22:33:01.075 INFO:teuthology.orchestra.run.smithi194.stdout:kernel.core_pattern = core 2024-04-15T22:33:01.095 DEBUG:teuthology.orchestra.run.smithi170:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:33:01.140 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:33:01.140 DEBUG:teuthology.orchestra.run.smithi194:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:33:01.144 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:33:01.145 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T22:33:01.154 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T22:33:01.154 DEBUG:teuthology.misc:Transferring archived files from smithi170:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589/remote/smithi170 2024-04-15T22:33:01.155 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T22:33:01.206 DEBUG:teuthology.misc:Transferring archived files from smithi194:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589/remote/smithi194 2024-04-15T22:33:01.206 DEBUG:teuthology.orchestra.run.smithi194:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T22:33:01.227 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T22:33:01.227 DEBUG:teuthology.orchestra.run.smithi170:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T22:33:01.245 DEBUG:teuthology.orchestra.run.smithi194:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T22:33:01.271 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T22:33:01.281 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T22:33:01.281 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T22:33:01.290 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T22:33:01.290 DEBUG:teuthology.orchestra.run.smithi170:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T22:33:01.293 DEBUG:teuthology.orchestra.run.smithi194:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T22:33:01.298 INFO:teuthology.orchestra.run.smithi170.stdout: 658496 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 22:33 /home/ubuntu/cephtest 2024-04-15T22:33:01.319 INFO:teuthology.orchestra.run.smithi194.stdout: 658633 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 22:33 /home/ubuntu/cephtest 2024-04-15T22:33:01.320 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T22:33:01.329 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T22:33:01.354 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T22:33:01.381 DEBUG:teuthology.nuke:shortname: smithi170 2024-04-15T22:33:01.382 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:33:01.407 DEBUG:teuthology.nuke:shortname: smithi194 2024-04-15T22:33:01.408 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:33:01.411 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi170.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 22:16:47.903313', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFCGw3/u81eCNvXEfM2Q+DrbtjR7a+T7XEyu4Nxv3EuXoK3d7sPBkOveHlvpL9llrkglwESzfOokoQk0ppehcz0='} 2024-04-15T22:33:01.436 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi194.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657589', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 22:16:47.901801', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCCKa4F+Xk17OSq5spfZRCEGF8OSQ52VJNnYUcS9IjJ1RBkNkHW5DC96A2lKVa9pGv/vUEPGpFeXx/CsQvVet74='} 2024-04-15T22:33:01.462 INFO:teuthology.orchestra.console.smithi170:Power off 2024-04-15T22:33:01.462 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T22:33:01.485 DEBUG:teuthology.orchestra.console.smithi170:power off output: Chassis Power Control: Down/Off 2024-04-15T22:33:01.485 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:33:01.501 INFO:teuthology.orchestra.console.smithi194:Power off 2024-04-15T22:33:01.502 DEBUG:teuthology.orchestra.console.smithi194:pexpect command: ipmitool -H smithi194.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T22:33:01.510 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is on 2024-04-15T22:33:01.523 DEBUG:teuthology.orchestra.console.smithi194:power off output: Chassis Power Control: Down/Off 2024-04-15T22:33:01.523 DEBUG:teuthology.orchestra.console.smithi194:pexpect command: ipmitool -H smithi194.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:33:01.547 DEBUG:teuthology.orchestra.console.smithi194:check power output: Chassis Power is on 2024-04-15T22:33:05.512 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:33:05.548 DEBUG:teuthology.orchestra.console.smithi194:pexpect command: ipmitool -H smithi194.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:33:05.622 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is on 2024-04-15T22:33:05.657 DEBUG:teuthology.orchestra.console.smithi194:check power output: Chassis Power is on 2024-04-15T22:33:09.626 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:33:09.657 DEBUG:teuthology.orchestra.console.smithi194:pexpect command: ipmitool -H smithi194.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:33:09.736 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is off 2024-04-15T22:33:09.765 DEBUG:teuthology.orchestra.console.smithi194:check power output: Chassis Power is off 2024-04-15T22:33:09.838 INFO:teuthology.orchestra.console.smithi170:Power off completed 2024-04-15T22:33:09.866 INFO:teuthology.orchestra.console.smithi194:Power off completed 2024-04-15T22:33:09.971 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 435.50313806533813 failure_reason: 'Command failed on smithi170 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull''' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=1490b5254a804d4c9840628ed5e7eebb status: fail success: false 2024-04-15T22:33:09.971 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T22:33:10.058 INFO:teuthology.run:FAIL