2024-08-08T18:54:19.374 INFO:root:teuthology version: 0.0.1.dev416+g7ca9115 2024-08-08T18:54:19.394 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-08-08T18:54:19.474 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi/7844217 branch: wip-guits-main-2024-08-08-1205 description: orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: gabrioux@ibm.com first_in_suite: false job_id: '7844217' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-guits-main-2024-08-08-1205 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\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: de50a7c969c464f1af48fc4fd9870c061342194a ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: de50a7c969c464f1af48fc4fd9870c061342194a selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: wip-guits-main-2024-08-08-1205 sha1: de50a7c969c464f1af48fc4fd9870c061342194a owner: scheduled_gabrioux@teuthology priority: 70 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 5979 sha1: de50a7c969c464f1af48fc4fd9870c061342194a sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: wip-guits-main-2024-08-08-1205 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: de50a7c969c464f1af48fc4fd9870c061342194a targets: smithi062.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCVSdz6CqkrUv5Z2ergtkXTEKyGtyPlnYywAENNBMw47fpKc4Y51pTwblGTJtI5EYTAAPla3rGcWbDVjZwue9xM= smithi131.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFY+BEKuKJmJMHlBsXtZ5NMM8o755wTPpCuFLUpYbxINwI4TzmuIQJ7TTtek4ZgG8TfvwyQ5gMPM+mKz/+b66UU= tasks: - pexec: all: - sudo dnf install nvmetcli nvme-cli -y - 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 --cluster-id foo --pseudo-path /foouser --user-id foouser - 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}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/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 /foouser - 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: 7ca9115d33cdacbcf2252d46e62914563516007c timestamp: 2024-08-08_17:54:46 tube: smithi user: gabrioux verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.4074525 2024-08-08T18:54:19.474 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa; will attempt to use it 2024-08-08T18:54:19.475 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks 2024-08-08T18:54:19.475 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-08-08T18:54:19.477 INFO:teuthology.task.internal:Checking packages... 2024-08-08T18:54:19.501 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'de50a7c969c464f1af48fc4fd9870c061342194a' 2024-08-08T18:54:19.501 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-08-08T18:54:19.501 INFO:teuthology.packaging:ref: None 2024-08-08T18:54:19.501 INFO:teuthology.packaging:tag: None 2024-08-08T18:54:19.501 INFO:teuthology.packaging:branch: wip-guits-main-2024-08-08-1205 2024-08-08T18:54:19.501 INFO:teuthology.packaging:sha1: de50a7c969c464f1af48fc4fd9870c061342194a 2024-08-08T18:54:19.501 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-guits-main-2024-08-08-1205 2024-08-08T18:54:19.641 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-5695.gde50a7c9 2024-08-08T18:54:19.643 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-08-08T18:54:19.649 INFO:teuthology.task.internal:no buildpackages task found 2024-08-08T18:54:19.650 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-08-08T18:54:19.671 INFO:teuthology.task.internal:Saving configuration 2024-08-08T18:54:19.685 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-08-08T18:54:19.692 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-08-08T18:54:19.714 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi062.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi/7844217', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-08-08 18:49:21.660075', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCVSdz6CqkrUv5Z2ergtkXTEKyGtyPlnYywAENNBMw47fpKc4Y51pTwblGTJtI5EYTAAPla3rGcWbDVjZwue9xM='} 2024-08-08T18:54:19.737 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi131.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi/7844217', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-08-08 18:49:21.661943', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFY+BEKuKJmJMHlBsXtZ5NMM8o755wTPpCuFLUpYbxINwI4TzmuIQJ7TTtek4ZgG8TfvwyQ5gMPM+mKz/+b66UU='} 2024-08-08T18:54:19.737 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-08-08T18:54:19.743 INFO:teuthology.task.internal:roles: ubuntu@smithi062.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-08-08T18:54:19.743 INFO:teuthology.task.internal:roles: ubuntu@smithi131.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-08-08T18:54:19.743 INFO:teuthology.run_tasks:Running task console_log... 2024-08-08T18:54:19.804 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fe92374fbe0>, signals=[15]) 2024-08-08T18:54:19.804 INFO:teuthology.run_tasks:Running task internal.connect... 2024-08-08T18:54:19.810 INFO:teuthology.task.internal:Opening connections... 2024-08-08T18:54:19.810 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi062.front.sepia.ceph.com 2024-08-08T18:54:19.811 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-08T18:54:19.893 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi131.front.sepia.ceph.com 2024-08-08T18:54:19.895 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi131.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-08T18:54:19.985 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-08-08T18:54:19.992 DEBUG:teuthology.orchestra.run.smithi062:> uname -m 2024-08-08T18:54:20.010 INFO:teuthology.orchestra.run.smithi062.stdout:x86_64 2024-08-08T18:54:20.010 DEBUG:teuthology.orchestra.run.smithi062:> cat /etc/os-release 2024-08-08T18:54:20.068 INFO:teuthology.orchestra.run.smithi062.stdout:NAME="CentOS Stream" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:VERSION="9" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:ID="centos" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:ID_LIKE="rhel fedora" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:VERSION_ID="9" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:PLATFORM_ID="platform:el9" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:PRETTY_NAME="CentOS Stream 9" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:ANSI_COLOR="0;31" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:LOGO="fedora-logo-icon" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:HOME_URL="https://centos.org/" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-08-08T18:54:20.069 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-08-08T18:54:20.070 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-08-08T18:54:20.070 INFO:teuthology.lock.ops:Updating smithi062.front.sepia.ceph.com on lock server 2024-08-08T18:54:20.092 DEBUG:teuthology.orchestra.run.smithi131:> uname -m 2024-08-08T18:54:20.109 INFO:teuthology.orchestra.run.smithi131.stdout:x86_64 2024-08-08T18:54:20.110 DEBUG:teuthology.orchestra.run.smithi131:> cat /etc/os-release 2024-08-08T18:54:20.166 INFO:teuthology.orchestra.run.smithi131.stdout:NAME="CentOS Stream" 2024-08-08T18:54:20.166 INFO:teuthology.orchestra.run.smithi131.stdout:VERSION="9" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:ID="centos" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:ID_LIKE="rhel fedora" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:VERSION_ID="9" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:PLATFORM_ID="platform:el9" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:PRETTY_NAME="CentOS Stream 9" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:ANSI_COLOR="0;31" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:LOGO="fedora-logo-icon" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:HOME_URL="https://centos.org/" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-08-08T18:54:20.167 INFO:teuthology.orchestra.run.smithi131.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-08-08T18:54:20.168 INFO:teuthology.lock.ops:Updating smithi131.front.sepia.ceph.com on lock server 2024-08-08T18:54:20.192 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-08-08T18:54:20.199 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-08-08T18:54:20.234 INFO:teuthology.task.internal:Checking for old test directory... 2024-08-08T18:54:20.234 DEBUG:teuthology.orchestra.run.smithi062:> test '!' -e /home/ubuntu/cephtest 2024-08-08T18:54:20.237 DEBUG:teuthology.orchestra.run.smithi131:> test '!' -e /home/ubuntu/cephtest 2024-08-08T18:54:20.253 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-08-08T18:54:20.325 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-08-08T18:54:20.325 DEBUG:teuthology.orchestra.run.smithi062:> test -z $(ls -A /var/lib/ceph) 2024-08-08T18:54:20.328 DEBUG:teuthology.orchestra.run.smithi131:> test -z $(ls -A /var/lib/ceph) 2024-08-08T18:54:20.351 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-08-08T18:54:20.402 INFO:teuthology.run_tasks:Running task kernel... 2024-08-08T18:54:20.416 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-08-08T18:54:20.416 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-08-08T18:54:20.416 DEBUG:teuthology.orchestra.run.smithi062:> test -f /run/.containerenv -o -f /.dockerenv 2024-08-08T18:54:20.416 DEBUG:teuthology.orchestra.run.smithi131:> test -f /run/.containerenv -o -f /.dockerenv 2024-08-08T18:54:20.432 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-08T18:54:20.433 DEBUG:teuthology.orchestra.run.smithi131:> uname -r 2024-08-08T18:54:20.433 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-08T18:54:20.434 DEBUG:teuthology.orchestra.run.smithi062:> uname -r 2024-08-08T18:54:20.489 INFO:teuthology.orchestra.run.smithi131.stdout:5.14.0-437.el9.x86_64 2024-08-08T18:54:20.490 INFO:teuthology.task.kernel:Running kernel on smithi131: 5.14.0-437.el9.x86_64 2024-08-08T18:54:20.490 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum install -y kernel 2024-08-08T18:54:20.491 INFO:teuthology.orchestra.run.smithi062.stdout:5.14.0-437.el9.x86_64 2024-08-08T18:54:20.492 INFO:teuthology.task.kernel:Running kernel on smithi062: 5.14.0-437.el9.x86_64 2024-08-08T18:54:20.492 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum install -y kernel 2024-08-08T18:54:23.458 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - BaseOS 5.9 MB/s | 8.2 MB 00:01 2024-08-08T18:54:23.836 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - BaseOS 4.8 MB/s | 8.2 MB 00:01 2024-08-08T18:54:25.476 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - AppStream 23 MB/s | 20 MB 00:00 2024-08-08T18:54:30.820 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - CRB 4.6 MB/s | 6.6 MB 00:01 2024-08-08T18:54:32.302 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - Extras packages 82 kB/s | 18 kB 00:00 2024-08-08T18:54:33.639 INFO:teuthology.orchestra.run.smithi062.stdout:Extra Packages for Enterprise Linux 18 MB/s | 22 MB 00:01 2024-08-08T18:54:38.003 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - AppStream 1.5 MB/s | 20 MB 00:13 2024-08-08T18:54:39.229 INFO:teuthology.orchestra.run.smithi062.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-08-08T18:54:41.351 INFO:teuthology.orchestra.run.smithi062.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-08-08T18:54:41.352 INFO:teuthology.orchestra.run.smithi062.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-08-08T18:54:41.450 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-08-08T18:54:41.459 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-08-08T18:54:41.459 INFO:teuthology.orchestra.run.smithi062.stdout: Package Architecture Version Repository Size 2024-08-08T18:54:41.459 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-08-08T18:54:41.459 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-08-08T18:54:41.459 INFO:teuthology.orchestra.run.smithi062.stdout: kernel x86_64 5.14.0-480.el9 baseos 1.5 M 2024-08-08T18:54:41.459 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-08-08T18:54:41.459 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-core x86_64 5.14.0-480.el9 baseos 17 M 2024-08-08T18:54:41.459 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules x86_64 5.14.0-480.el9 baseos 36 M 2024-08-08T18:54:41.459 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules-core x86_64 5.14.0-480.el9 baseos 30 M 2024-08-08T18:54:41.460 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T18:54:41.460 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-08-08T18:54:41.460 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-08-08T18:54:41.460 INFO:teuthology.orchestra.run.smithi062.stdout:Install 4 Packages 2024-08-08T18:54:41.460 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T18:54:41.460 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 84 M 2024-08-08T18:54:41.461 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 126 M 2024-08-08T18:54:41.461 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-08-08T18:54:42.528 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - CRB 9.2 MB/s | 6.6 MB 00:00 2024-08-08T18:54:42.554 INFO:teuthology.orchestra.run.smithi062.stdout:(1/4): kernel-5.14.0-480.el9.x86_64.rpm 1.6 MB/s | 1.5 MB 00:00 2024-08-08T18:54:43.046 INFO:teuthology.orchestra.run.smithi062.stdout:(2/4): kernel-core-5.14.0-480.el9.x86_64.rpm 12 MB/s | 17 MB 00:01 2024-08-08T18:54:43.822 INFO:teuthology.orchestra.run.smithi062.stdout:(3/4): kernel-modules-5.14.0-480.el9.x86_64.rpm 16 MB/s | 36 MB 00:02 2024-08-08T18:54:44.221 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - Extras packages 40 kB/s | 18 kB 00:00 2024-08-08T18:54:45.241 INFO:teuthology.orchestra.run.smithi131.stdout:Extra Packages for Enterprise Linux 25 MB/s | 22 MB 00:00 2024-08-08T18:54:45.513 INFO:teuthology.orchestra.run.smithi062.stdout:(4/4): kernel-modules-core-5.14.0-480.el9.x86_6 10 MB/s | 30 MB 00:02 2024-08-08T18:54:45.513 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-08-08T18:54:45.514 INFO:teuthology.orchestra.run.smithi062.stdout:Total 21 MB/s | 84 MB 00:04 2024-08-08T18:54:46.282 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-08-08T18:54:46.694 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-08-08T18:54:46.694 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-08-08T18:54:47.719 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-08-08T18:54:47.719 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-08-08T18:54:50.368 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-08-08T18:54:50.514 INFO:teuthology.orchestra.run.smithi131.stdout:lab-extras 20 kB/s | 1.7 kB 00:00 2024-08-08T18:54:51.064 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-modules-core-5.14.0-480.el9.x86_64 1/4 2024-08-08T18:54:51.163 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-core-5.14.0-480.el9.x86_64 2/4 2024-08-08T18:54:52.554 INFO:teuthology.orchestra.run.smithi131.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-08-08T18:54:52.554 INFO:teuthology.orchestra.run.smithi131.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-08-08T18:54:52.647 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-08T18:54:52.653 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-08T18:54:52.653 INFO:teuthology.orchestra.run.smithi131.stdout: Package Architecture Version Repository Size 2024-08-08T18:54:52.653 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-08T18:54:52.653 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout: kernel x86_64 5.14.0-480.el9 baseos 1.5 M 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout: kernel-core x86_64 5.14.0-480.el9 baseos 17 M 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout: kernel-modules x86_64 5.14.0-480.el9 baseos 36 M 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout: kernel-modules-core x86_64 5.14.0-480.el9 baseos 30 M 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout:Install 4 Packages 2024-08-08T18:54:52.654 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T18:54:52.655 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 84 M 2024-08-08T18:54:52.655 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 126 M 2024-08-08T18:54:52.655 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-08T18:54:53.890 INFO:teuthology.orchestra.run.smithi131.stdout:(1/4): kernel-5.14.0-480.el9.x86_64.rpm 1.3 MB/s | 1.5 MB 00:01 2024-08-08T18:54:53.962 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-core-5.14.0-480.el9.x86_64 2/4 2024-08-08T18:54:54.121 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-modules-5.14.0-480.el9.x86_64 3/4 2024-08-08T18:54:59.333 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-modules-5.14.0-480.el9.x86_64 3/4 2024-08-08T18:54:59.398 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:55:04.625 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-modules-core-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:55:11.380 INFO:teuthology.orchestra.run.smithi131.stdout:(2/4): kernel-core-5.14.0-480.el9.x86_64.rpm 941 kB/s | 17 MB 00:18 2024-08-08T18:55:29.803 INFO:teuthology.orchestra.run.smithi131.stdout:(3/4): kernel-modules-core-5.14.0-480.el9.x86_6 853 kB/s | 30 MB 00:35 2024-08-08T18:55:32.645 INFO:teuthology.orchestra.run.smithi131.stdout:(4/4): kernel-modules-5.14.0-480.el9.x86_64.rpm 922 kB/s | 36 MB 00:39 2024-08-08T18:55:32.645 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-08T18:55:32.645 INFO:teuthology.orchestra.run.smithi131.stdout:Total 2.1 MB/s | 84 MB 00:39 2024-08-08T18:55:33.374 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-08T18:55:33.736 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-08T18:55:33.736 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-08T18:55:34.738 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-08T18:55:34.738 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-08T18:55:36.025 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-core-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:55:36.067 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-modules-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:55:36.350 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:55:36.351 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-5.14.0-480.el9.x86_64 1/4 2024-08-08T18:55:36.351 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-core-5.14.0-480.el9.x86_64 2/4 2024-08-08T18:55:36.351 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-modules-5.14.0-480.el9.x86_64 3/4 2024-08-08T18:55:37.172 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-modules-core-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:55:37.172 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T18:55:37.172 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-08-08T18:55:37.172 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-5.14.0-480.el9.x86_64 2024-08-08T18:55:37.172 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-core-5.14.0-480.el9.x86_64 2024-08-08T18:55:37.172 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules-5.14.0-480.el9.x86_64 2024-08-08T18:55:37.172 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules-core-5.14.0-480.el9.x86_64 2024-08-08T18:55:37.172 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T18:55:37.173 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-08-08T18:55:37.228 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-08T18:55:37.546 DEBUG:teuthology.orchestra.run.smithi062:> rpm -q kernel | sort -rV | head -n 1 2024-08-08T18:55:37.676 INFO:teuthology.orchestra.run.smithi062.stdout:kernel-5.14.0-480.el9.x86_64 2024-08-08T18:55:37.676 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-480.el9.x86_64 2024-08-08T18:55:37.677 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-437.el9.x86_64 Expected: 5.14.0-480.el9.x86_64 2024-08-08T18:55:37.677 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-08-08T18:55:37.677 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-08-08T18:55:37.677 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-08-08T18:55:37.677 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi062.front.sepia.ceph.com, path=None, version=distro) 2024-08-08T18:55:37.678 DEBUG:teuthology.orchestra.run.smithi062:> rpm -q kernel | sort -rV | head -n 1 2024-08-08T18:55:37.736 INFO:teuthology.orchestra.run.smithi062.stdout:kernel-5.14.0-480.el9.x86_64 2024-08-08T18:55:37.737 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-480.el9.x86_64 2024-08-08T18:55:37.737 DEBUG:teuthology.orchestra.run.smithi062:> sudo rpm -qi grub2-tools 2024-08-08T18:55:37.774 INFO:teuthology.orchestra.run.smithi062.stdout:Name : grub2-tools 2024-08-08T18:55:37.774 INFO:teuthology.orchestra.run.smithi062.stdout:Epoch : 1 2024-08-08T18:55:37.774 INFO:teuthology.orchestra.run.smithi062.stdout:Version : 2.06 2024-08-08T18:55:37.775 INFO:teuthology.orchestra.run.smithi062.stdout:Release : 68.el9 2024-08-08T18:55:37.775 INFO:teuthology.orchestra.run.smithi062.stdout:Architecture: x86_64 2024-08-08T18:55:37.775 INFO:teuthology.orchestra.run.smithi062.stdout:Install Date: Fri 19 Apr 2024 09:32:39 PM UTC 2024-08-08T18:55:37.775 INFO:teuthology.orchestra.run.smithi062.stdout:Group : Unspecified 2024-08-08T18:55:37.775 INFO:teuthology.orchestra.run.smithi062.stdout:Size : 8264254 2024-08-08T18:55:37.775 INFO:teuthology.orchestra.run.smithi062.stdout:License : GPLv3+ 2024-08-08T18:55:37.776 INFO:teuthology.orchestra.run.smithi062.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-08-08T18:55:37.776 INFO:teuthology.orchestra.run.smithi062.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-08-08T18:55:37.776 INFO:teuthology.orchestra.run.smithi062.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-08-08T18:55:37.776 INFO:teuthology.orchestra.run.smithi062.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-08-08T18:55:37.776 INFO:teuthology.orchestra.run.smithi062.stdout:Packager : builder@centos.org 2024-08-08T18:55:37.777 INFO:teuthology.orchestra.run.smithi062.stdout:Vendor : CentOS 2024-08-08T18:55:37.777 INFO:teuthology.orchestra.run.smithi062.stdout:URL : http://www.gnu.org/software/grub/ 2024-08-08T18:55:37.777 INFO:teuthology.orchestra.run.smithi062.stdout:Summary : Support tools for GRUB. 2024-08-08T18:55:37.777 INFO:teuthology.orchestra.run.smithi062.stdout:Description : 2024-08-08T18:55:37.777 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T18:55:37.777 INFO:teuthology.orchestra.run.smithi062.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-08-08T18:55:37.778 INFO:teuthology.orchestra.run.smithi062.stdout:customizable bootloader with modular architecture. It supports a rich 2024-08-08T18:55:37.778 INFO:teuthology.orchestra.run.smithi062.stdout:variety of kernel formats, file systems, computer architectures and 2024-08-08T18:55:37.778 INFO:teuthology.orchestra.run.smithi062.stdout:hardware devices. 2024-08-08T18:55:37.778 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T18:55:37.778 INFO:teuthology.orchestra.run.smithi062.stdout:This subpackage provides tools for support of all platforms. 2024-08-08T18:55:37.780 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-08-08T18:55:37.780 INFO:teuthology.task.kernel:Updating grub on smithi062 to boot 5.14.0-480.el9.x86_64 2024-08-08T18:55:37.780 DEBUG:teuthology.orchestra.run.smithi062:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-08-08T18:55:37.950 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : kernel-modules-core-5.14.0-480.el9.x86_64 1/4 2024-08-08T18:55:38.047 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : kernel-core-5.14.0-480.el9.x86_64 2/4 2024-08-08T18:55:38.451 INFO:teuthology.orchestra.run.smithi062.stderr:Generating grub configuration file ... 2024-08-08T18:55:39.852 INFO:teuthology.orchestra.run.smithi062.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-08-08T18:55:39.880 INFO:teuthology.orchestra.run.smithi062.stderr:done 2024-08-08T18:55:39.883 DEBUG:teuthology.orchestra.run.smithi062:> mktemp 2024-08-08T18:55:39.902 INFO:teuthology.orchestra.run.smithi062.stdout:/tmp/tmp.QGURSj6ZnS 2024-08-08T18:55:39.902 DEBUG:teuthology.orchestra.run.smithi062:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.QGURSj6ZnS 2024-08-08T18:55:39.969 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod 0666 /tmp/tmp.QGURSj6ZnS 2024-08-08T18:55:40.108 DEBUG:teuthology.orchestra.remote:smithi062:/tmp/tmp.QGURSj6ZnS is 6KB 2024-08-08T18:55:40.158 DEBUG:teuthology.orchestra.run.smithi062:> rm -fr /tmp/tmp.QGURSj6ZnS 2024-08-08T18:55:40.173 DEBUG:teuthology.orchestra.run.smithi062:> sudo /bin/ls /boot/loader/entries || true 2024-08-08T18:55:40.234 INFO:teuthology.orchestra.run.smithi062.stdout:7fc8828e06d0482694bcf4a447d13cb6-0-rescue.conf 2024-08-08T18:55:40.234 INFO:teuthology.orchestra.run.smithi062.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-239.el9.x86_64.conf 2024-08-08T18:55:40.235 INFO:teuthology.orchestra.run.smithi062.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-437.el9.x86_64.conf 2024-08-08T18:55:40.235 INFO:teuthology.orchestra.run.smithi062.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-480.el9.x86_64.conf 2024-08-08T18:55:40.236 DEBUG:teuthology.orchestra.run.smithi062:> sudo grub2-set-default 7fc8828e06d0482694bcf4a447d13cb6-5.14.0-480.el9.x86_64 2024-08-08T18:55:40.378 DEBUG:teuthology.orchestra.run.smithi062:> sudo shutdown -r now 2024-08-08T18:55:40.702 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: kernel-core-5.14.0-480.el9.x86_64 2/4 2024-08-08T18:55:40.857 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : kernel-modules-5.14.0-480.el9.x86_64 3/4 2024-08-08T18:55:45.676 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: kernel-modules-5.14.0-480.el9.x86_64 3/4 2024-08-08T18:55:45.816 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : kernel-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:55:50.661 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: kernel-modules-core-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:56:10.381 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-08-08T18:56:10.382 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-08-08T18:56:10.383 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-08T18:56:20.468 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: kernel-core-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:56:20.507 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: kernel-modules-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:56:20.893 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: kernel-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:56:20.893 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : kernel-5.14.0-480.el9.x86_64 1/4 2024-08-08T18:56:20.894 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : kernel-core-5.14.0-480.el9.x86_64 2/4 2024-08-08T18:56:20.894 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : kernel-modules-5.14.0-480.el9.x86_64 3/4 2024-08-08T18:56:21.709 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : kernel-modules-core-5.14.0-480.el9.x86_64 4/4 2024-08-08T18:56:21.709 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T18:56:21.709 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-08T18:56:21.709 INFO:teuthology.orchestra.run.smithi131.stdout: kernel-5.14.0-480.el9.x86_64 2024-08-08T18:56:21.709 INFO:teuthology.orchestra.run.smithi131.stdout: kernel-core-5.14.0-480.el9.x86_64 2024-08-08T18:56:21.709 INFO:teuthology.orchestra.run.smithi131.stdout: kernel-modules-5.14.0-480.el9.x86_64 2024-08-08T18:56:21.709 INFO:teuthology.orchestra.run.smithi131.stdout: kernel-modules-core-5.14.0-480.el9.x86_64 2024-08-08T18:56:21.709 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T18:56:21.709 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-08T18:56:22.106 DEBUG:teuthology.orchestra.run.smithi131:> rpm -q kernel | sort -rV | head -n 1 2024-08-08T18:56:22.193 INFO:teuthology.orchestra.run.smithi131.stdout:kernel-5.14.0-480.el9.x86_64 2024-08-08T18:56:22.193 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-480.el9.x86_64 2024-08-08T18:56:22.193 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-437.el9.x86_64 Expected: 5.14.0-480.el9.x86_64 2024-08-08T18:56:22.193 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-08-08T18:56:22.193 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-08-08T18:56:22.194 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-08-08T18:56:22.194 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi131.front.sepia.ceph.com, path=None, version=distro) 2024-08-08T18:56:22.194 DEBUG:teuthology.orchestra.run.smithi131:> rpm -q kernel | sort -rV | head -n 1 2024-08-08T18:56:22.250 INFO:teuthology.orchestra.run.smithi131.stdout:kernel-5.14.0-480.el9.x86_64 2024-08-08T18:56:22.251 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-480.el9.x86_64 2024-08-08T18:56:22.251 DEBUG:teuthology.orchestra.run.smithi131:> sudo rpm -qi grub2-tools 2024-08-08T18:56:22.290 INFO:teuthology.orchestra.run.smithi131.stdout:Name : grub2-tools 2024-08-08T18:56:22.290 INFO:teuthology.orchestra.run.smithi131.stdout:Epoch : 1 2024-08-08T18:56:22.290 INFO:teuthology.orchestra.run.smithi131.stdout:Version : 2.06 2024-08-08T18:56:22.290 INFO:teuthology.orchestra.run.smithi131.stdout:Release : 68.el9 2024-08-08T18:56:22.290 INFO:teuthology.orchestra.run.smithi131.stdout:Architecture: x86_64 2024-08-08T18:56:22.290 INFO:teuthology.orchestra.run.smithi131.stdout:Install Date: Fri 19 Apr 2024 09:32:39 PM UTC 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Group : Unspecified 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Size : 8264254 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:License : GPLv3+ 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Packager : builder@centos.org 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Vendor : CentOS 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:URL : http://www.gnu.org/software/grub/ 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Summary : Support tools for GRUB. 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout:Description : 2024-08-08T18:56:22.291 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T18:56:22.292 INFO:teuthology.orchestra.run.smithi131.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-08-08T18:56:22.292 INFO:teuthology.orchestra.run.smithi131.stdout:customizable bootloader with modular architecture. It supports a rich 2024-08-08T18:56:22.292 INFO:teuthology.orchestra.run.smithi131.stdout:variety of kernel formats, file systems, computer architectures and 2024-08-08T18:56:22.292 INFO:teuthology.orchestra.run.smithi131.stdout:hardware devices. 2024-08-08T18:56:22.292 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T18:56:22.292 INFO:teuthology.orchestra.run.smithi131.stdout:This subpackage provides tools for support of all platforms. 2024-08-08T18:56:22.293 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-08-08T18:56:22.293 INFO:teuthology.task.kernel:Updating grub on smithi131 to boot 5.14.0-480.el9.x86_64 2024-08-08T18:56:22.293 DEBUG:teuthology.orchestra.run.smithi131:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-08-08T18:56:22.891 INFO:teuthology.orchestra.run.smithi131.stderr:Generating grub configuration file ... 2024-08-08T18:56:24.245 INFO:teuthology.orchestra.run.smithi131.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-08-08T18:56:24.278 INFO:teuthology.orchestra.run.smithi131.stderr:done 2024-08-08T18:56:24.280 DEBUG:teuthology.orchestra.run.smithi131:> mktemp 2024-08-08T18:56:24.295 INFO:teuthology.orchestra.run.smithi131.stdout:/tmp/tmp.fUpVb15O7V 2024-08-08T18:56:24.295 DEBUG:teuthology.orchestra.run.smithi131:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.fUpVb15O7V 2024-08-08T18:56:24.360 DEBUG:teuthology.orchestra.run.smithi131:> sudo chmod 0666 /tmp/tmp.fUpVb15O7V 2024-08-08T18:56:24.491 DEBUG:teuthology.orchestra.remote:smithi131:/tmp/tmp.fUpVb15O7V is 6KB 2024-08-08T18:56:24.539 DEBUG:teuthology.orchestra.run.smithi131:> rm -fr /tmp/tmp.fUpVb15O7V 2024-08-08T18:56:24.553 DEBUG:teuthology.orchestra.run.smithi131:> sudo /bin/ls /boot/loader/entries || true 2024-08-08T18:56:24.621 INFO:teuthology.orchestra.run.smithi131.stdout:7fc8828e06d0482694bcf4a447d13cb6-0-rescue.conf 2024-08-08T18:56:24.622 INFO:teuthology.orchestra.run.smithi131.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-239.el9.x86_64.conf 2024-08-08T18:56:24.622 INFO:teuthology.orchestra.run.smithi131.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-437.el9.x86_64.conf 2024-08-08T18:56:24.622 INFO:teuthology.orchestra.run.smithi131.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-480.el9.x86_64.conf 2024-08-08T18:56:24.623 DEBUG:teuthology.orchestra.run.smithi131:> sudo grub2-set-default 7fc8828e06d0482694bcf4a447d13cb6-5.14.0-480.el9.x86_64 2024-08-08T18:56:24.767 DEBUG:teuthology.orchestra.run.smithi131:> sudo shutdown -r now 2024-08-08T18:56:54.788 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-08-08T18:56:54.788 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi131.front.sepia.ceph.com' 2024-08-08T18:56:54.789 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi131.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-08T18:57:10.399 DEBUG:teuthology.orchestra.remote:timed out 2024-08-08T18:57:19.407 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-08-08T18:57:19.408 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-08T18:57:19.940 DEBUG:teuthology.orchestra.run.smithi062:> true 2024-08-08T18:57:20.335 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-08-08T18:57:20.335 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-480.el9.x86_64"... 2024-08-08T18:57:20.335 DEBUG:teuthology.orchestra.run.smithi062:> uname -r 2024-08-08T18:57:20.395 INFO:teuthology.orchestra.run.smithi062.stdout:5.14.0-480.el9.x86_64 2024-08-08T18:57:20.396 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-480.el9.x86_64 vs 5.14.0-480.el9.x86_64 2024-08-08T18:57:20.396 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-08-08T18:57:20.396 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-08-08T18:57:21.397 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-08-08T18:57:21.397 DEBUG:teuthology.orchestra.run.smithi062:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-08-08T18:57:21.482 INFO:teuthology.orchestra.run.smithi062.stdout:ttyS1 2024-08-08T18:57:21.541 DEBUG:teuthology.parallel:result is None 2024-08-08T18:57:54.793 DEBUG:teuthology.orchestra.remote:timed out 2024-08-08T18:58:03.794 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi131.front.sepia.ceph.com' 2024-08-08T18:58:03.795 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi131.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-08T18:58:04.203 DEBUG:teuthology.orchestra.run.smithi131:> true 2024-08-08T18:58:04.580 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi131.front.sepia.ceph.com' 2024-08-08T18:58:04.580 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-480.el9.x86_64"... 2024-08-08T18:58:04.580 DEBUG:teuthology.orchestra.run.smithi131:> uname -r 2024-08-08T18:58:04.595 INFO:teuthology.orchestra.run.smithi131.stdout:5.14.0-480.el9.x86_64 2024-08-08T18:58:04.596 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-480.el9.x86_64 vs 5.14.0-480.el9.x86_64 2024-08-08T18:58:04.596 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-08-08T18:58:04.596 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-08-08T18:58:05.596 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-08-08T18:58:05.597 DEBUG:teuthology.orchestra.run.smithi131:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-08-08T18:58:05.671 INFO:teuthology.orchestra.run.smithi131.stdout:ttyS1 2024-08-08T18:58:05.719 DEBUG:teuthology.parallel:result is None 2024-08-08T18:58:05.719 INFO:teuthology.run_tasks:Running task internal.base... 2024-08-08T18:58:05.726 INFO:teuthology.task.internal:Creating test directory... 2024-08-08T18:58:05.726 DEBUG:teuthology.orchestra.run.smithi062:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-08-08T18:58:05.729 DEBUG:teuthology.orchestra.run.smithi131:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-08-08T18:58:05.747 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-08-08T18:58:05.753 INFO:teuthology.run_tasks:Running task internal.archive... 2024-08-08T18:58:05.762 INFO:teuthology.task.internal:Creating archive directory... 2024-08-08T18:58:05.763 DEBUG:teuthology.orchestra.run.smithi062:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-08-08T18:58:05.789 DEBUG:teuthology.orchestra.run.smithi131:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-08-08T18:58:05.821 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-08-08T18:58:05.827 INFO:teuthology.task.internal:Enabling coredump saving... 2024-08-08T18:58:05.827 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T18:58:05.860 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T18:58:05.886 INFO:teuthology.orchestra.run.smithi131.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-08T18:58:05.896 INFO:teuthology.orchestra.run.smithi131.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-08T18:58:05.898 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-08T18:58:05.910 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-08T18:58:05.912 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-08-08T18:58:05.921 INFO:teuthology.task.internal:Configuring sudo... 2024-08-08T18:58:05.921 DEBUG:teuthology.orchestra.run.smithi062:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-08-08T18:58:05.956 DEBUG:teuthology.orchestra.run.smithi131:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-08-08T18:58:05.982 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-08-08T18:58:05.994 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-08-08T18:58:05.994 DEBUG:teuthology.orchestra.run.smithi062:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-08-08T18:58:06.025 DEBUG:teuthology.orchestra.run.smithi131:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-08-08T18:58:06.041 DEBUG:teuthology.orchestra.run.smithi062:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-08T18:58:06.129 DEBUG:teuthology.orchestra.run.smithi062:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-08T18:58:06.174 DEBUG:teuthology.orchestra.run.smithi062:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-08T18:58:06.260 DEBUG:teuthology.orchestra.run.smithi062:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-08T18:58:06.303 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-08-08T18:58:06.304 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-08-08T18:58:06.372 DEBUG:teuthology.orchestra.run.smithi131:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-08T18:58:06.416 DEBUG:teuthology.orchestra.run.smithi131:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-08T18:58:06.466 DEBUG:teuthology.orchestra.run.smithi131:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-08T18:58:06.552 DEBUG:teuthology.orchestra.run.smithi131:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-08T18:58:06.597 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-08T18:58:06.597 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-08-08T18:58:06.665 DEBUG:teuthology.orchestra.run.smithi062:> sudo service rsyslog restart 2024-08-08T18:58:06.668 DEBUG:teuthology.orchestra.run.smithi131:> sudo service rsyslog restart 2024-08-08T18:58:06.723 INFO:teuthology.orchestra.run.smithi062.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-08T18:58:06.758 INFO:teuthology.orchestra.run.smithi131.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-08T18:58:07.154 INFO:teuthology.run_tasks:Running task internal.timer... 2024-08-08T18:58:07.163 INFO:teuthology.task.internal:Starting timer... 2024-08-08T18:58:07.163 INFO:teuthology.run_tasks:Running task pcp... 2024-08-08T18:58:07.175 INFO:teuthology.run_tasks:Running task selinux... 2024-08-08T18:58:07.184 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0', 'scontext=system_u:system_r:getty_t:s0']} 2024-08-08T18:58:07.184 DEBUG:teuthology.orchestra.run.smithi062:> sudo service auditd rotate 2024-08-08T18:58:07.239 INFO:teuthology.orchestra.run.smithi062.stdout:Rotating logs: 2024-08-08T18:58:07.241 DEBUG:teuthology.orchestra.run.smithi131:> sudo service auditd rotate 2024-08-08T18:58:07.384 INFO:teuthology.orchestra.run.smithi131.stdout:Rotating logs: 2024-08-08T18:58:07.386 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-08-08T18:58:07.386 DEBUG:teuthology.orchestra.run.smithi062:> /usr/sbin/getenforce 2024-08-08T18:58:07.424 INFO:teuthology.orchestra.run.smithi062.stdout:Permissive 2024-08-08T18:58:07.424 DEBUG:teuthology.orchestra.run.smithi131:> /usr/sbin/getenforce 2024-08-08T18:58:07.480 INFO:teuthology.orchestra.run.smithi131.stdout:Permissive 2024-08-08T18:58:07.480 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi062.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi131.front.sepia.ceph.com': 'permissive'} 2024-08-08T18:58:07.480 DEBUG:teuthology.orchestra.run.smithi062:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-08-08T18:58:07.508 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-08T18:58:07.509 DEBUG:teuthology.orchestra.run.smithi131:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-08-08T18:58:07.584 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-08T18:58:07.584 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-08-08T18:58:07.584 DEBUG:teuthology.orchestra.run.smithi062:> sudo /usr/sbin/setenforce permissive 2024-08-08T18:58:07.613 DEBUG:teuthology.orchestra.run.smithi131:> sudo /usr/sbin/setenforce permissive 2024-08-08T18:58:07.830 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-08-08T18:58:07.844 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-08-08T18:58:07.856 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-08-08T18:58:07.857 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi062.front.sepia.ceph.com,smithi131.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-08-08T19:02:48.202 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi062.front.sepia.ceph.com'), Remote(name='ubuntu@smithi131.front.sepia.ceph.com')] 2024-08-08T19:02:48.203 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-08-08T19:02:48.205 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-08T19:02:48.281 DEBUG:teuthology.orchestra.run.smithi062:> true 2024-08-08T19:02:48.358 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-08-08T19:02:48.358 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi131.front.sepia.ceph.com' 2024-08-08T19:02:48.359 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi131.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-08T19:02:48.435 DEBUG:teuthology.orchestra.run.smithi131:> true 2024-08-08T19:02:48.514 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi131.front.sepia.ceph.com' 2024-08-08T19:02:48.514 INFO:teuthology.run_tasks:Running task clock... 2024-08-08T19:02:48.525 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-08-08T19:02:48.525 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-08-08T19:02:48.526 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T19:02:48.528 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-08-08T19:02:48.528 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T19:02:48.555 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-08-08T19:02:48.570 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-08-08T19:02:48.583 INFO:teuthology.orchestra.run.smithi131.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-08-08T19:02:48.595 INFO:teuthology.orchestra.run.smithi062.stderr:sudo: ntpd: command not found 2024-08-08T19:02:48.597 INFO:teuthology.orchestra.run.smithi131.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-08-08T19:02:48.607 INFO:teuthology.orchestra.run.smithi062.stdout:506 Cannot talk to daemon 2024-08-08T19:02:48.621 INFO:teuthology.orchestra.run.smithi131.stderr:sudo: ntpd: command not found 2024-08-08T19:02:48.621 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-08-08T19:02:48.632 INFO:teuthology.orchestra.run.smithi131.stdout:506 Cannot talk to daemon 2024-08-08T19:02:48.636 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-08-08T19:02:48.646 INFO:teuthology.orchestra.run.smithi131.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-08-08T19:02:48.660 INFO:teuthology.orchestra.run.smithi131.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-08-08T19:02:48.698 INFO:teuthology.orchestra.run.smithi062.stderr:bash: line 1: ntpq: command not found 2024-08-08T19:02:48.701 INFO:teuthology.orchestra.run.smithi062.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-08T19:02:48.701 INFO:teuthology.orchestra.run.smithi062.stdout:=============================================================================== 2024-08-08T19:02:48.701 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:02:48.701 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:02:48.701 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:02:48.702 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:02:48.722 INFO:teuthology.orchestra.run.smithi131.stderr:bash: line 1: ntpq: command not found 2024-08-08T19:02:48.725 INFO:teuthology.orchestra.run.smithi131.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-08T19:02:48.725 INFO:teuthology.orchestra.run.smithi131.stdout:=============================================================================== 2024-08-08T19:02:48.726 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:02:48.726 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:02:48.726 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:02:48.726 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:02:48.727 INFO:teuthology.run_tasks:Running task pexec... 2024-08-08T19:02:48.738 INFO:teuthology.task.pexec:Executing custom commands... 2024-08-08T19:02:48.739 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi062.front.sepia.ceph.com 2024-08-08T19:02:48.739 DEBUG:teuthology.orchestra.run.smithi062:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-08-08T19:02:48.739 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi131.front.sepia.ceph.com 2024-08-08T19:02:48.740 DEBUG:teuthology.orchestra.run.smithi131:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-08-08T19:02:49.333 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:06 ago on Thu 08 Aug 2024 07:01:43 PM UTC. 2024-08-08T19:02:49.335 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:13 ago on Thu 08 Aug 2024 07:01:36 PM UTC. 2024-08-08T19:02:49.420 INFO:teuthology.orchestra.run.smithi062.stdout:Package nvme-cli-2.6-5.el9.x86_64 is already installed. 2024-08-08T19:02:49.420 INFO:teuthology.orchestra.run.smithi131.stdout:Package nvme-cli-2.6-5.el9.x86_64 is already installed. 2024-08-08T19:02:49.460 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-08T19:02:49.464 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-08-08T19:02:49.477 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-08T19:02:49.477 INFO:teuthology.orchestra.run.smithi131.stdout: Package Architecture Version Repository Size 2024-08-08T19:02:49.477 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-08T19:02:49.477 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-08T19:02:49.477 INFO:teuthology.orchestra.run.smithi131.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout:Upgrading: 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout: libnvme x86_64 1.9-2.el9 baseos 106 k 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout: nvme-cli x86_64 2.9.1-3.el9 baseos 903 k 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout:Install 4 Packages 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout:Upgrade 2 Packages 2024-08-08T19:02:49.478 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T19:02:49.479 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 2.0 M 2024-08-08T19:02:49.479 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout: Package Architecture Version Repository Size 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout:Upgrading: 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout: libnvme x86_64 1.9-2.el9 baseos 106 k 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout: nvme-cli x86_64 2.9.1-3.el9 baseos 903 k 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:02:49.480 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-08-08T19:02:49.481 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-08-08T19:02:49.481 INFO:teuthology.orchestra.run.smithi062.stdout:Install 4 Packages 2024-08-08T19:02:49.481 INFO:teuthology.orchestra.run.smithi062.stdout:Upgrade 2 Packages 2024-08-08T19:02:49.481 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:02:49.481 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 2.0 M 2024-08-08T19:02:49.481 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-08-08T19:02:49.669 INFO:teuthology.orchestra.run.smithi062.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 368 kB/s | 44 kB 00:00 2024-08-08T19:02:49.695 INFO:teuthology.orchestra.run.smithi062.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 490 kB/s | 72 kB 00:00 2024-08-08T19:02:49.720 INFO:teuthology.orchestra.run.smithi062.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 491 kB/s | 84 kB 00:00 2024-08-08T19:02:49.779 INFO:teuthology.orchestra.run.smithi062.stdout:(4/6): libnvme-1.9-2.el9.x86_64.rpm 1.2 MB/s | 106 kB 00:00 2024-08-08T19:02:49.829 INFO:teuthology.orchestra.run.smithi062.stdout:(5/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 5.1 MB/s | 837 kB 00:00 2024-08-08T19:02:49.879 INFO:teuthology.orchestra.run.smithi062.stdout:(6/6): nvme-cli-2.9.1-3.el9.x86_64.rpm 5.6 MB/s | 903 kB 00:00 2024-08-08T19:02:49.880 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-08-08T19:02:49.880 INFO:teuthology.orchestra.run.smithi062.stdout:Total 5.0 MB/s | 2.0 MB 00:00 2024-08-08T19:02:49.956 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-08-08T19:02:49.972 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-08-08T19:02:49.973 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-08-08T19:02:50.185 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-08-08T19:02:50.185 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-08-08T19:02:50.201 INFO:teuthology.orchestra.run.smithi131.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 99 kB/s | 44 kB 00:00 2024-08-08T19:02:50.252 INFO:teuthology.orchestra.run.smithi131.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 144 kB/s | 72 kB 00:00 2024-08-08T19:02:50.294 INFO:teuthology.orchestra.run.smithi131.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 156 kB/s | 84 kB 00:00 2024-08-08T19:02:50.547 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-08-08T19:02:50.644 INFO:teuthology.orchestra.run.smithi131.stdout:(4/6): libnvme-1.9-2.el9.x86_64.rpm 271 kB/s | 106 kB 00:00 2024-08-08T19:02:50.678 INFO:teuthology.orchestra.run.smithi131.stdout:(5/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 1.7 MB/s | 837 kB 00:00 2024-08-08T19:02:50.720 INFO:teuthology.orchestra.run.smithi131.stdout:(6/6): nvme-cli-2.9.1-3.el9.x86_64.rpm 2.1 MB/s | 903 kB 00:00 2024-08-08T19:02:50.722 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-08T19:02:50.722 INFO:teuthology.orchestra.run.smithi131.stdout:Total 1.6 MB/s | 2.0 MB 00:01 2024-08-08T19:02:50.772 INFO:teuthology.orchestra.run.smithi062.stdout: Upgrading : libnvme-1.9-2.el9.x86_64 1/8 2024-08-08T19:02:50.799 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-08T19:02:50.815 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-08T19:02:50.816 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-08T19:02:50.835 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 2/8 2024-08-08T19:02:50.869 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/8 2024-08-08T19:02:50.902 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/8 2024-08-08T19:02:50.926 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : nvmetcli-0.7-3.el9.noarch 5/8 2024-08-08T19:02:51.049 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-08T19:02:51.049 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-08T19:02:51.205 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 5/8 2024-08-08T19:02:51.288 INFO:teuthology.orchestra.run.smithi062.stdout: Upgrading : nvme-cli-2.9.1-3.el9.x86_64 6/8 2024-08-08T19:02:51.393 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-08T19:02:51.603 INFO:teuthology.orchestra.run.smithi131.stdout: Upgrading : libnvme-1.9-2.el9.x86_64 1/8 2024-08-08T19:02:51.609 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: nvme-cli-2.9.1-3.el9.x86_64 6/8 2024-08-08T19:02:51.640 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : nvme-cli-2.6-5.el9.x86_64 7/8 2024-08-08T19:02:51.658 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 2/8 2024-08-08T19:02:51.693 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/8 2024-08-08T19:02:51.726 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/8 2024-08-08T19:02:51.742 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : libnvme-1.6-1.el9.x86_64 8/8 2024-08-08T19:02:51.759 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : nvmetcli-0.7-3.el9.noarch 5/8 2024-08-08T19:02:52.016 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 5/8 2024-08-08T19:02:52.079 INFO:teuthology.orchestra.run.smithi131.stdout: Upgrading : nvme-cli-2.9.1-3.el9.x86_64 6/8 2024-08-08T19:02:52.368 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: nvme-cli-2.9.1-3.el9.x86_64 6/8 2024-08-08T19:02:52.399 INFO:teuthology.orchestra.run.smithi131.stdout: Cleanup : nvme-cli-2.6-5.el9.x86_64 7/8 2024-08-08T19:02:52.488 INFO:teuthology.orchestra.run.smithi131.stdout: Cleanup : libnvme-1.6-1.el9.x86_64 8/8 2024-08-08T19:02:52.624 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: libnvme-1.6-1.el9.x86_64 8/8 2024-08-08T19:02:52.624 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 1/8 2024-08-08T19:02:52.625 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 2/8 2024-08-08T19:02:52.625 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 3/8 2024-08-08T19:02:52.625 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 4/8 2024-08-08T19:02:52.625 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libnvme-1.9-2.el9.x86_64 5/8 2024-08-08T19:02:52.625 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libnvme-1.6-1.el9.x86_64 6/8 2024-08-08T19:02:52.625 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : nvme-cli-2.9.1-3.el9.x86_64 7/8 2024-08-08T19:02:52.965 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : nvme-cli-2.6-5.el9.x86_64 8/8 2024-08-08T19:02:52.965 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:02:52.965 INFO:teuthology.orchestra.run.smithi062.stdout:Upgraded: 2024-08-08T19:02:52.965 INFO:teuthology.orchestra.run.smithi062.stdout: libnvme-1.9-2.el9.x86_64 nvme-cli-2.9.1-3.el9.x86_64 2024-08-08T19:02:52.965 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-08-08T19:02:52.965 INFO:teuthology.orchestra.run.smithi062.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-08-08T19:02:52.965 INFO:teuthology.orchestra.run.smithi062.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-08-08T19:02:52.965 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:02:52.966 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-08-08T19:02:53.288 DEBUG:teuthology.parallel:result is None 2024-08-08T19:02:53.364 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: libnvme-1.6-1.el9.x86_64 8/8 2024-08-08T19:02:53.364 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 1/8 2024-08-08T19:02:53.364 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 2/8 2024-08-08T19:02:53.364 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 3/8 2024-08-08T19:02:53.364 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 4/8 2024-08-08T19:02:53.364 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libnvme-1.9-2.el9.x86_64 5/8 2024-08-08T19:02:53.364 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libnvme-1.6-1.el9.x86_64 6/8 2024-08-08T19:02:53.365 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : nvme-cli-2.9.1-3.el9.x86_64 7/8 2024-08-08T19:02:53.705 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : nvme-cli-2.6-5.el9.x86_64 8/8 2024-08-08T19:02:53.705 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T19:02:53.705 INFO:teuthology.orchestra.run.smithi131.stdout:Upgraded: 2024-08-08T19:02:53.705 INFO:teuthology.orchestra.run.smithi131.stdout: libnvme-1.9-2.el9.x86_64 nvme-cli-2.9.1-3.el9.x86_64 2024-08-08T19:02:53.705 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-08T19:02:53.705 INFO:teuthology.orchestra.run.smithi131.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-08-08T19:02:53.705 INFO:teuthology.orchestra.run.smithi131.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-08-08T19:02:53.706 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-08T19:02:53.706 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-08T19:02:54.064 DEBUG:teuthology.parallel:result is None 2024-08-08T19:02:54.064 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-08-08T19:02:54.075 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-08-08T19:02:54.075 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-08-08T19:02:54.075 DEBUG:teuthology.orchestra.run.smithi062:> dd if=/scratch_devs of=/dev/stdout 2024-08-08T19:02:54.098 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-08-08T19:02:54.099 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/vg_nvme/lv_1 2024-08-08T19:02:54.157 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-08-08T19:02:54.157 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-08-08T19:02:54.158 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 989 Links: 1 2024-08-08T19:02:54.158 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-08-08T19:02:54.158 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:device_t:s0 2024-08-08T19:02:54.158 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-08-08 19:02:51.988412931 +0000 2024-08-08T19:02:54.158 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-08-08 19:02:51.745416850 +0000 2024-08-08T19:02:54.158 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-08-08 19:02:51.745416850 +0000 2024-08-08T19:02:54.158 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-08-08 19:02:51.745416850 +0000 2024-08-08T19:02:54.158 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-08-08T19:02:54.230 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-08-08T19:02:54.230 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-08-08T19:02:54.230 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000261713 s, 2.0 MB/s 2024-08-08T19:02:54.231 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-08-08T19:02:54.292 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/vg_nvme/lv_2 2024-08-08T19:02:54.351 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-08-08T19:02:54.351 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-08-08T19:02:54.351 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 975 Links: 1 2024-08-08T19:02:54.351 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-08-08T19:02:54.351 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:device_t:s0 2024-08-08T19:02:54.351 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-08-08 19:02:51.988412931 +0000 2024-08-08T19:02:54.351 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-08-08 19:02:51.744416866 +0000 2024-08-08T19:02:54.351 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-08-08 19:02:51.744416866 +0000 2024-08-08T19:02:54.352 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-08-08 19:02:51.744416866 +0000 2024-08-08T19:02:54.352 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-08-08T19:02:54.418 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-08-08T19:02:54.419 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-08-08T19:02:54.419 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000226581 s, 2.3 MB/s 2024-08-08T19:02:54.420 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-08-08T19:02:54.479 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/vg_nvme/lv_3 2024-08-08T19:02:54.538 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-08-08T19:02:54.538 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-08-08T19:02:54.538 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 986 Links: 1 2024-08-08T19:02:54.538 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-08-08T19:02:54.539 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:device_t:s0 2024-08-08T19:02:54.539 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-08-08 19:02:51.988412931 +0000 2024-08-08T19:02:54.539 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-08-08 19:02:51.744416866 +0000 2024-08-08T19:02:54.539 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-08-08 19:02:51.744416866 +0000 2024-08-08T19:02:54.539 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-08-08 19:02:51.744416866 +0000 2024-08-08T19:02:54.539 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-08-08T19:02:54.605 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-08-08T19:02:54.606 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-08-08T19:02:54.606 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.00024704 s, 2.1 MB/s 2024-08-08T19:02:54.607 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-08-08T19:02:54.667 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/vg_nvme/lv_4 2024-08-08T19:02:54.725 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-08-08T19:02:54.725 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-08-08T19:02:54.725 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 972 Links: 1 2024-08-08T19:02:54.725 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-08-08T19:02:54.725 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:device_t:s0 2024-08-08T19:02:54.725 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-08-08 19:02:51.989412915 +0000 2024-08-08T19:02:54.725 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-08-08 19:02:51.744416866 +0000 2024-08-08T19:02:54.725 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-08-08 19:02:51.744416866 +0000 2024-08-08T19:02:54.726 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-08-08 19:02:51.744416866 +0000 2024-08-08T19:02:54.726 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-08-08T19:02:54.791 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-08-08T19:02:54.791 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-08-08T19:02:54.791 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000215586 s, 2.4 MB/s 2024-08-08T19:02:54.793 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-08-08T19:02:54.852 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T19:02:55.004 INFO:teuthology.orchestra.run.smithi062.stdout:loop 2024-08-08T19:02:55.006 INFO:tasks.nvme_loop:Connecting nvme_loop smithi062:/dev/vg_nvme/lv_1... 2024-08-08T19:02:55.006 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T19:02:55.041 INFO:teuthology.orchestra.run.smithi062.stdout:1 2024-08-08T19:02:55.071 INFO:teuthology.orchestra.run.smithi062.stdout:/dev/vg_nvme/lv_11 2024-08-08T19:02:55.118 INFO:teuthology.orchestra.run.smithi062.stdout:connecting to device: nvme1 2024-08-08T19:02:55.120 INFO:tasks.nvme_loop:Connecting nvme_loop smithi062:/dev/vg_nvme/lv_2... 2024-08-08T19:02:55.120 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T19:02:55.197 INFO:teuthology.orchestra.run.smithi062.stdout:1 2024-08-08T19:02:55.227 INFO:teuthology.orchestra.run.smithi062.stdout:/dev/vg_nvme/lv_21 2024-08-08T19:02:55.262 INFO:teuthology.orchestra.run.smithi062.stdout:connecting to device: nvme2 2024-08-08T19:02:55.264 INFO:tasks.nvme_loop:Connecting nvme_loop smithi062:/dev/vg_nvme/lv_3... 2024-08-08T19:02:55.264 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T19:02:55.340 INFO:teuthology.orchestra.run.smithi062.stdout:1 2024-08-08T19:02:55.370 INFO:teuthology.orchestra.run.smithi062.stdout:/dev/vg_nvme/lv_31 2024-08-08T19:02:55.406 INFO:teuthology.orchestra.run.smithi062.stdout:connecting to device: nvme3 2024-08-08T19:02:55.408 INFO:tasks.nvme_loop:Connecting nvme_loop smithi062:/dev/vg_nvme/lv_4... 2024-08-08T19:02:55.408 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T19:02:55.482 INFO:teuthology.orchestra.run.smithi062.stdout:1 2024-08-08T19:02:55.513 INFO:teuthology.orchestra.run.smithi062.stdout:/dev/vg_nvme/lv_41 2024-08-08T19:02:55.549 INFO:teuthology.orchestra.run.smithi062.stdout:connecting to device: nvme4 2024-08-08T19:02:55.550 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-08-08T19:02:55.551 DEBUG:teuthology.orchestra.run.smithi062:> dd if=/scratch_devs of=/dev/stdout 2024-08-08T19:02:55.607 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme list -o json 2024-08-08T19:02:55.673 INFO:teuthology.orchestra.run.smithi062.stdout:{ 2024-08-08T19:02:55.673 INFO:teuthology.orchestra.run.smithi062.stdout: "Devices":[ 2024-08-08T19:02:55.673 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-08-08T19:02:55.673 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-08-08T19:02:55.673 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme4n1", 2024-08-08T19:02:55.673 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng4n1", 2024-08-08T19:02:55.673 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"5.14.0-4", 2024-08-08T19:02:55.673 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"Linux", 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"a5eba7ccc1b4a5ba4c39", 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":95995035648, 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":187490304, 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":95995035648, 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: }, 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme3n1", 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng3n1", 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"5.14.0-4", 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"Linux", 2024-08-08T19:02:55.674 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"de47b4aab806e08843af", 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":95995035648, 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":187490304, 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":95995035648, 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: }, 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme2n1", 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng2n1", 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"5.14.0-4", 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"Linux", 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"38d4cfb2ff2200e9e705", 2024-08-08T19:02:55.675 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":95995035648, 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":187490304, 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":95995035648, 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: }, 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme1n1", 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng1n1", 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"5.14.0-4", 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"Linux", 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"1e1999f5db6427005780", 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":95995035648, 2024-08-08T19:02:55.676 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":187490304, 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":95995035648, 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: }, 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme0n1", 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng0n1", 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"8DV101H0", 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"CVFT53440094400BGN", 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":400088457216, 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":781422768, 2024-08-08T19:02:55.677 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":400088457216, 2024-08-08T19:02:55.678 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-08-08T19:02:55.678 INFO:teuthology.orchestra.run.smithi062.stdout: } 2024-08-08T19:02:55.678 INFO:teuthology.orchestra.run.smithi062.stdout: ] 2024-08-08T19:02:55.678 INFO:teuthology.orchestra.run.smithi062.stdout:} 2024-08-08T19:02:55.679 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-08-08T19:02:55.679 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-08-08T19:02:55.679 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/scratch_devs 2024-08-08T19:02:55.745 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-08T19:02:55.745 DEBUG:teuthology.orchestra.run.smithi131:> dd if=/scratch_devs of=/dev/stdout 2024-08-08T19:02:55.764 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-08-08T19:02:55.764 DEBUG:teuthology.orchestra.run.smithi131:> stat /dev/vg_nvme/lv_1 2024-08-08T19:02:55.820 INFO:teuthology.orchestra.run.smithi131.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-08-08T19:02:55.820 INFO:teuthology.orchestra.run.smithi131.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-08-08T19:02:55.820 INFO:teuthology.orchestra.run.smithi131.stdout:Device: 5h/5d Inode: 970 Links: 1 2024-08-08T19:02:55.820 INFO:teuthology.orchestra.run.smithi131.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-08-08T19:02:55.820 INFO:teuthology.orchestra.run.smithi131.stdout:Context: system_u:object_r:device_t:s0 2024-08-08T19:02:55.820 INFO:teuthology.orchestra.run.smithi131.stdout:Access: 2024-08-08 19:02:52.686982447 +0000 2024-08-08T19:02:55.821 INFO:teuthology.orchestra.run.smithi131.stdout:Modify: 2024-08-08 19:02:52.476986934 +0000 2024-08-08T19:02:55.821 INFO:teuthology.orchestra.run.smithi131.stdout:Change: 2024-08-08 19:02:52.476986934 +0000 2024-08-08T19:02:55.821 INFO:teuthology.orchestra.run.smithi131.stdout: Birth: 2024-08-08 19:02:52.476986934 +0000 2024-08-08T19:02:55.821 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-08-08T19:02:55.886 INFO:teuthology.orchestra.run.smithi131.stderr:1+0 records in 2024-08-08T19:02:55.886 INFO:teuthology.orchestra.run.smithi131.stderr:1+0 records out 2024-08-08T19:02:55.886 INFO:teuthology.orchestra.run.smithi131.stderr:512 bytes copied, 0.000223107 s, 2.3 MB/s 2024-08-08T19:02:55.887 DEBUG:teuthology.orchestra.run.smithi131:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-08-08T19:02:55.944 DEBUG:teuthology.orchestra.run.smithi131:> stat /dev/vg_nvme/lv_2 2024-08-08T19:02:56.000 INFO:teuthology.orchestra.run.smithi131.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-08-08T19:02:56.000 INFO:teuthology.orchestra.run.smithi131.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-08-08T19:02:56.001 INFO:teuthology.orchestra.run.smithi131.stdout:Device: 5h/5d Inode: 969 Links: 1 2024-08-08T19:02:56.001 INFO:teuthology.orchestra.run.smithi131.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-08-08T19:02:56.001 INFO:teuthology.orchestra.run.smithi131.stdout:Context: system_u:object_r:device_t:s0 2024-08-08T19:02:56.001 INFO:teuthology.orchestra.run.smithi131.stdout:Access: 2024-08-08 19:02:52.686982447 +0000 2024-08-08T19:02:56.001 INFO:teuthology.orchestra.run.smithi131.stdout:Modify: 2024-08-08 19:02:52.476986934 +0000 2024-08-08T19:02:56.001 INFO:teuthology.orchestra.run.smithi131.stdout:Change: 2024-08-08 19:02:52.476986934 +0000 2024-08-08T19:02:56.002 INFO:teuthology.orchestra.run.smithi131.stdout: Birth: 2024-08-08 19:02:52.476986934 +0000 2024-08-08T19:02:56.002 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-08-08T19:02:56.065 INFO:teuthology.orchestra.run.smithi131.stderr:1+0 records in 2024-08-08T19:02:56.065 INFO:teuthology.orchestra.run.smithi131.stderr:1+0 records out 2024-08-08T19:02:56.065 INFO:teuthology.orchestra.run.smithi131.stderr:512 bytes copied, 0.000212253 s, 2.4 MB/s 2024-08-08T19:02:56.066 DEBUG:teuthology.orchestra.run.smithi131:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-08-08T19:02:56.123 DEBUG:teuthology.orchestra.run.smithi131:> stat /dev/vg_nvme/lv_3 2024-08-08T19:02:56.178 INFO:teuthology.orchestra.run.smithi131.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-08-08T19:02:56.178 INFO:teuthology.orchestra.run.smithi131.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-08-08T19:02:56.178 INFO:teuthology.orchestra.run.smithi131.stdout:Device: 5h/5d Inode: 982 Links: 1 2024-08-08T19:02:56.178 INFO:teuthology.orchestra.run.smithi131.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-08-08T19:02:56.179 INFO:teuthology.orchestra.run.smithi131.stdout:Context: system_u:object_r:device_t:s0 2024-08-08T19:02:56.179 INFO:teuthology.orchestra.run.smithi131.stdout:Access: 2024-08-08 19:02:52.687982425 +0000 2024-08-08T19:02:56.179 INFO:teuthology.orchestra.run.smithi131.stdout:Modify: 2024-08-08 19:02:52.480986849 +0000 2024-08-08T19:02:56.179 INFO:teuthology.orchestra.run.smithi131.stdout:Change: 2024-08-08 19:02:52.480986849 +0000 2024-08-08T19:02:56.179 INFO:teuthology.orchestra.run.smithi131.stdout: Birth: 2024-08-08 19:02:52.480986849 +0000 2024-08-08T19:02:56.179 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-08-08T19:02:56.242 INFO:teuthology.orchestra.run.smithi131.stderr:1+0 records in 2024-08-08T19:02:56.242 INFO:teuthology.orchestra.run.smithi131.stderr:1+0 records out 2024-08-08T19:02:56.243 INFO:teuthology.orchestra.run.smithi131.stderr:512 bytes copied, 0.000193566 s, 2.6 MB/s 2024-08-08T19:02:56.243 DEBUG:teuthology.orchestra.run.smithi131:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-08-08T19:02:56.300 DEBUG:teuthology.orchestra.run.smithi131:> stat /dev/vg_nvme/lv_4 2024-08-08T19:02:56.355 INFO:teuthology.orchestra.run.smithi131.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-08-08T19:02:56.355 INFO:teuthology.orchestra.run.smithi131.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-08-08T19:02:56.355 INFO:teuthology.orchestra.run.smithi131.stdout:Device: 5h/5d Inode: 964 Links: 1 2024-08-08T19:02:56.356 INFO:teuthology.orchestra.run.smithi131.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-08-08T19:02:56.356 INFO:teuthology.orchestra.run.smithi131.stdout:Context: system_u:object_r:device_t:s0 2024-08-08T19:02:56.356 INFO:teuthology.orchestra.run.smithi131.stdout:Access: 2024-08-08 19:02:52.687982425 +0000 2024-08-08T19:02:56.356 INFO:teuthology.orchestra.run.smithi131.stdout:Modify: 2024-08-08 19:02:52.476986934 +0000 2024-08-08T19:02:56.356 INFO:teuthology.orchestra.run.smithi131.stdout:Change: 2024-08-08 19:02:52.476986934 +0000 2024-08-08T19:02:56.356 INFO:teuthology.orchestra.run.smithi131.stdout: Birth: 2024-08-08 19:02:52.476986934 +0000 2024-08-08T19:02:56.356 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-08-08T19:02:56.419 INFO:teuthology.orchestra.run.smithi131.stderr:1+0 records in 2024-08-08T19:02:56.419 INFO:teuthology.orchestra.run.smithi131.stderr:1+0 records out 2024-08-08T19:02:56.419 INFO:teuthology.orchestra.run.smithi131.stderr:512 bytes copied, 0.00020644 s, 2.5 MB/s 2024-08-08T19:02:56.420 DEBUG:teuthology.orchestra.run.smithi131:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-08-08T19:02:56.477 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T19:02:56.621 INFO:teuthology.orchestra.run.smithi131.stdout:loop 2024-08-08T19:02:56.623 INFO:tasks.nvme_loop:Connecting nvme_loop smithi131:/dev/vg_nvme/lv_1... 2024-08-08T19:02:56.623 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T19:02:56.656 INFO:teuthology.orchestra.run.smithi131.stdout:1 2024-08-08T19:02:56.684 INFO:teuthology.orchestra.run.smithi131.stdout:/dev/vg_nvme/lv_11 2024-08-08T19:02:56.729 INFO:teuthology.orchestra.run.smithi131.stdout:connecting to device: nvme1 2024-08-08T19:02:56.731 INFO:tasks.nvme_loop:Connecting nvme_loop smithi131:/dev/vg_nvme/lv_2... 2024-08-08T19:02:56.731 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T19:02:56.805 INFO:teuthology.orchestra.run.smithi131.stdout:1 2024-08-08T19:02:56.834 INFO:teuthology.orchestra.run.smithi131.stdout:/dev/vg_nvme/lv_21 2024-08-08T19:02:56.869 INFO:teuthology.orchestra.run.smithi131.stdout:connecting to device: nvme2 2024-08-08T19:02:56.870 INFO:tasks.nvme_loop:Connecting nvme_loop smithi131:/dev/vg_nvme/lv_3... 2024-08-08T19:02:56.871 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T19:02:56.944 INFO:teuthology.orchestra.run.smithi131.stdout:1 2024-08-08T19:02:56.974 INFO:teuthology.orchestra.run.smithi131.stdout:/dev/vg_nvme/lv_31 2024-08-08T19:02:57.008 INFO:teuthology.orchestra.run.smithi131.stdout:connecting to device: nvme3 2024-08-08T19:02:57.009 INFO:tasks.nvme_loop:Connecting nvme_loop smithi131:/dev/vg_nvme/lv_4... 2024-08-08T19:02:57.010 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T19:02:57.083 INFO:teuthology.orchestra.run.smithi131.stdout:1 2024-08-08T19:02:57.113 INFO:teuthology.orchestra.run.smithi131.stdout:/dev/vg_nvme/lv_41 2024-08-08T19:02:57.148 INFO:teuthology.orchestra.run.smithi131.stdout:connecting to device: nvme4 2024-08-08T19:02:57.149 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-08T19:02:57.150 DEBUG:teuthology.orchestra.run.smithi131:> dd if=/scratch_devs of=/dev/stdout 2024-08-08T19:02:57.206 DEBUG:teuthology.orchestra.run.smithi131:> sudo nvme list -o json 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout:{ 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: "Devices":[ 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: { 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: "NameSpace":1, 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: "DevicePath":"/dev/nvme4n1", 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: "GenericPath":"/dev/ng4n1", 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: "Firmware":"5.14.0-4", 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: "ModelNumber":"Linux", 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: "SerialNumber":"2aef5faf1b5f71ccf41d", 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: "UsedBytes":95995035648, 2024-08-08T19:02:57.271 INFO:teuthology.orchestra.run.smithi131.stdout: "MaximumLBA":187490304, 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "PhysicalSize":95995035648, 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "SectorSize":512 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: }, 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: { 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "NameSpace":1, 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "DevicePath":"/dev/nvme3n1", 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "GenericPath":"/dev/ng3n1", 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "Firmware":"5.14.0-4", 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "ModelNumber":"Linux", 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "SerialNumber":"0d69a680f9a38ef2399b", 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "UsedBytes":95995035648, 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "MaximumLBA":187490304, 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "PhysicalSize":95995035648, 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: "SectorSize":512 2024-08-08T19:02:57.272 INFO:teuthology.orchestra.run.smithi131.stdout: }, 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: { 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "NameSpace":1, 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "DevicePath":"/dev/nvme2n1", 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "GenericPath":"/dev/ng2n1", 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "Firmware":"5.14.0-4", 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "ModelNumber":"Linux", 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "SerialNumber":"61fef1d43951f85f3c29", 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "UsedBytes":95995035648, 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "MaximumLBA":187490304, 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "PhysicalSize":95995035648, 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "SectorSize":512 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: }, 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: { 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "NameSpace":1, 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "DevicePath":"/dev/nvme1n1", 2024-08-08T19:02:57.273 INFO:teuthology.orchestra.run.smithi131.stdout: "GenericPath":"/dev/ng1n1", 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "Firmware":"5.14.0-4", 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "ModelNumber":"Linux", 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "SerialNumber":"e767f8ec7701aaec53ec", 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "UsedBytes":95995035648, 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "MaximumLBA":187490304, 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "PhysicalSize":95995035648, 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "SectorSize":512 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: }, 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: { 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "NameSpace":1, 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "DevicePath":"/dev/nvme0n1", 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "GenericPath":"/dev/ng0n1", 2024-08-08T19:02:57.274 INFO:teuthology.orchestra.run.smithi131.stdout: "Firmware":"8DV101H0", 2024-08-08T19:02:57.275 INFO:teuthology.orchestra.run.smithi131.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-08-08T19:02:57.275 INFO:teuthology.orchestra.run.smithi131.stdout: "SerialNumber":"CVFT623300N4400BGN", 2024-08-08T19:02:57.275 INFO:teuthology.orchestra.run.smithi131.stdout: "UsedBytes":400088457216, 2024-08-08T19:02:57.275 INFO:teuthology.orchestra.run.smithi131.stdout: "MaximumLBA":781422768, 2024-08-08T19:02:57.275 INFO:teuthology.orchestra.run.smithi131.stdout: "PhysicalSize":400088457216, 2024-08-08T19:02:57.275 INFO:teuthology.orchestra.run.smithi131.stdout: "SectorSize":512 2024-08-08T19:02:57.275 INFO:teuthology.orchestra.run.smithi131.stdout: } 2024-08-08T19:02:57.275 INFO:teuthology.orchestra.run.smithi131.stdout: ] 2024-08-08T19:02:57.275 INFO:teuthology.orchestra.run.smithi131.stdout:} 2024-08-08T19:02:57.276 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-08-08T19:02:57.276 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-08T19:02:57.276 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd of=/scratch_devs 2024-08-08T19:02:57.340 INFO:teuthology.run_tasks:Running task cephadm... 2024-08-08T19:02:57.440 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\\)', 'CEPHADM_DAEMON_PLACE_FAIL', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'de50a7c969c464f1af48fc4fd9870c061342194a'} 2024-08-08T19:02:57.440 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a 2024-08-08T19:02:57.440 INFO:tasks.cephadm:Cluster fsid is d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:02:57.440 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-08-08T19:02:57.441 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-08-08T19:02:57.441 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi062': '172.21.15.62', 'mon.smithi131': '172.21.15.131'} 2024-08-08T19:02:57.441 INFO:tasks.cephadm:Normalizing hostnames... 2024-08-08T19:02:57.441 DEBUG:teuthology.orchestra.run.smithi062:> sudo hostname $(hostname -s) 2024-08-08T19:02:57.473 DEBUG:teuthology.orchestra.run.smithi131:> sudo hostname $(hostname -s) 2024-08-08T19:02:57.498 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-08-08T19:02:57.498 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=de50a7c969c464f1af48fc4fd9870c061342194a 2024-08-08T19:02:57.648 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'de50a7c969c464f1af48fc4fd9870c061342194a', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/81942/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-5695-gde50a7c9', 'node_name': '172.21.2.14+braggi14', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-5695.gde50a7c9'}, 'url': 'https://4.chacra.ceph.com/r/ceph/wip-guits-main-2024-08-08-1205/de50a7c969c464f1af48fc4fd9870c061342194a/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-08-08 15:59:26.722819', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-guits-main-2024-08-08-1205', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/wip-guits-main-2024-08-08-1205/de50a7c969c464f1af48fc4fd9870c061342194a/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-08-08T19:02:57.792 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref wip-guits-main-2024-08-08-1205, sha1 de50a7c969c464f1af48fc4fd9870c061342194a from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=de50a7c969c464f1af48fc4fd9870c061342194a 2024-08-08T19:02:57.793 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-08-08-1205/de50a7c969c464f1af48fc4fd9870c061342194a/centos/9/x86_64/flavors/default/cephadm 2024-08-08T19:02:57.793 INFO:tasks.cephadm:Downloading cephadm from url: https://4.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-08-08-1205/de50a7c969c464f1af48fc4fd9870c061342194a/centos/9/x86_64/flavors/default/cephadm 2024-08-08T19:02:57.793 DEBUG:teuthology.orchestra.run.smithi062:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-08-08-1205/de50a7c969c464f1af48fc4fd9870c061342194a/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-08-08T19:02:58.388 INFO:teuthology.orchestra.run.smithi062.stdout:-rw-r--r--. 1 ubuntu ubuntu 792038 Aug 8 19:02 /home/ubuntu/cephtest/cephadm 2024-08-08T19:02:58.389 DEBUG:teuthology.orchestra.run.smithi131:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-08-08-1205/de50a7c969c464f1af48fc4fd9870c061342194a/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-08-08T19:02:58.980 INFO:teuthology.orchestra.run.smithi131.stdout:-rw-r--r--. 1 ubuntu ubuntu 792038 Aug 8 19:02 /home/ubuntu/cephtest/cephadm 2024-08-08T19:02:58.981 DEBUG:teuthology.orchestra.run.smithi062:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-08-08T19:02:59.001 DEBUG:teuthology.orchestra.run.smithi131:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-08-08T19:02:59.029 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a on all hosts... 2024-08-08T19:02:59.029 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a pull 2024-08-08T19:02:59.043 DEBUG:teuthology.orchestra.run.smithi131:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a pull 2024-08-08T19:02:59.977 INFO:teuthology.orchestra.run.smithi131.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a... 2024-08-08T19:03:00.069 INFO:teuthology.orchestra.run.smithi062.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a... 2024-08-08T19:03:57.747 INFO:teuthology.orchestra.run.smithi131.stdout:{ 2024-08-08T19:03:57.748 INFO:teuthology.orchestra.run.smithi131.stdout: "ceph_version": "ceph version 19.0.0-5695-gde50a7c9 (de50a7c969c464f1af48fc4fd9870c061342194a) squid (dev)", 2024-08-08T19:03:57.748 INFO:teuthology.orchestra.run.smithi131.stdout: "image_id": "6864bdb868b5e93593b56f5e08e15fe57e3bad81e49b727c08f18284257cb732", 2024-08-08T19:03:57.748 INFO:teuthology.orchestra.run.smithi131.stdout: "repo_digests": [ 2024-08-08T19:03:57.748 INFO:teuthology.orchestra.run.smithi131.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:04d763af2f337abeec97afe550b84b00806002a07cad58be2606ead185773fc9" 2024-08-08T19:03:57.748 INFO:teuthology.orchestra.run.smithi131.stdout: ] 2024-08-08T19:03:57.748 INFO:teuthology.orchestra.run.smithi131.stdout:} 2024-08-08T19:03:59.291 INFO:teuthology.orchestra.run.smithi062.stdout:{ 2024-08-08T19:03:59.292 INFO:teuthology.orchestra.run.smithi062.stdout: "ceph_version": "ceph version 19.0.0-5695-gde50a7c9 (de50a7c969c464f1af48fc4fd9870c061342194a) squid (dev)", 2024-08-08T19:03:59.292 INFO:teuthology.orchestra.run.smithi062.stdout: "image_id": "6864bdb868b5e93593b56f5e08e15fe57e3bad81e49b727c08f18284257cb732", 2024-08-08T19:03:59.292 INFO:teuthology.orchestra.run.smithi062.stdout: "repo_digests": [ 2024-08-08T19:03:59.292 INFO:teuthology.orchestra.run.smithi062.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:04d763af2f337abeec97afe550b84b00806002a07cad58be2606ead185773fc9" 2024-08-08T19:03:59.292 INFO:teuthology.orchestra.run.smithi062.stdout: ] 2024-08-08T19:03:59.292 INFO:teuthology.orchestra.run.smithi062.stdout:} 2024-08-08T19:03:59.321 DEBUG:teuthology.orchestra.run.smithi062:> sudo mkdir -p /etc/ceph 2024-08-08T19:03:59.366 DEBUG:teuthology.orchestra.run.smithi131:> sudo mkdir -p /etc/ceph 2024-08-08T19:03:59.397 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod 777 /etc/ceph 2024-08-08T19:03:59.432 DEBUG:teuthology.orchestra.run.smithi131:> sudo chmod 777 /etc/ceph 2024-08-08T19:03:59.463 INFO:tasks.cephadm:Writing seed config... 2024-08-08T19:03:59.465 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-08-08T19:03:59.465 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-08-08T19:03:59.465 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-08-08T19:03:59.465 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-08-08T19:03:59.465 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-08-08T19:03:59.465 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-08-08T19:03:59.465 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-08-08T19:03:59.465 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-08-08T19:03:59.466 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-08-08T19:03:59.466 DEBUG:teuthology.orchestra.run.smithi062:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-08-08T19:03:59.489 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = d30482f6-55b8-11ef-bccd-c7b262605968 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-08-08T19:03:59.490 DEBUG:teuthology.orchestra.run.smithi062:mon.smithi062> sudo journalctl -f -n 0 -u ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service 2024-08-08T19:03:59.532 INFO:tasks.cephadm:Bootstrapping... 2024-08-08T19:03:59.533 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a -v bootstrap --fsid d30482f6-55b8-11ef-bccd-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-08-08T19:03:59.746 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-08-08T19:03:59.746 INFO:teuthology.orchestra.run.smithi062.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a', '-v', 'bootstrap', '--fsid', 'd30482f6-55b8-11ef-bccd-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.62', '--skip-admin-label'] 2024-08-08T19:03:59.746 INFO:teuthology.orchestra.run.smithi062.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-08-08T19:03:59.746 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying podman|docker is present... 2024-08-08T19:03:59.773 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 5.1.2 2024-08-08T19:03:59.773 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying lvm2 is present... 2024-08-08T19:03:59.773 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying time synchronization is in place... 2024-08-08T19:03:59.780 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-08-08T19:03:59.780 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-08-08T19:03:59.787 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-08-08T19:03:59.787 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-08-08T19:03:59.794 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout enabled 2024-08-08T19:03:59.801 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout active 2024-08-08T19:03:59.801 INFO:teuthology.orchestra.run.smithi062.stdout:Unit chronyd.service is enabled and running 2024-08-08T19:03:59.801 INFO:teuthology.orchestra.run.smithi062.stdout:Repeating the final host check... 2024-08-08T19:03:59.824 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 5.1.2 2024-08-08T19:03:59.825 INFO:teuthology.orchestra.run.smithi062.stdout:podman (/bin/podman) version 5.1.2 is present 2024-08-08T19:03:59.825 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl is present 2024-08-08T19:03:59.825 INFO:teuthology.orchestra.run.smithi062.stdout:lvcreate is present 2024-08-08T19:03:59.831 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-08-08T19:03:59.831 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-08-08T19:03:59.838 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-08-08T19:03:59.838 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-08-08T19:03:59.845 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout enabled 2024-08-08T19:03:59.852 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout active 2024-08-08T19:03:59.852 INFO:teuthology.orchestra.run.smithi062.stdout:Unit chronyd.service is enabled and running 2024-08-08T19:03:59.852 INFO:teuthology.orchestra.run.smithi062.stdout:Host looks OK 2024-08-08T19:03:59.852 INFO:teuthology.orchestra.run.smithi062.stdout:Cluster fsid: d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:03:59.852 INFO:teuthology.orchestra.run.smithi062.stdout:Acquiring lock 139673646993360 on /run/cephadm/d30482f6-55b8-11ef-bccd-c7b262605968.lock 2024-08-08T19:03:59.852 INFO:teuthology.orchestra.run.smithi062.stdout:Lock 139673646993360 acquired on /run/cephadm/d30482f6-55b8-11ef-bccd-c7b262605968.lock 2024-08-08T19:03:59.853 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying IP 172.21.15.62 port 3300 ... 2024-08-08T19:03:59.853 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying IP 172.21.15.62 port 6789 ... 2024-08-08T19:03:59.853 INFO:teuthology.orchestra.run.smithi062.stdout:Base mon IP(s) is [172.21.15.62:3300, 172.21.15.62:6789], mon addrv is [v2:172.21.15.62:3300,v1:172.21.15.62:6789] 2024-08-08T19:03:59.856 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.62 metric 100 2024-08-08T19:03:59.856 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.62 metric 100 2024-08-08T19:03:59.859 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-08-08T19:03:59.859 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-08-08T19:03:59.859 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 1024 expires 1774sec hoplimit 64 pref medium 2024-08-08T19:03:59.862 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-08-08T19:03:59.862 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-08-08T19:03:59.862 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-08-08T19:03:59.862 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-08-08T19:03:59.863 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febb:d1c3/64 scope link 2024-08-08T19:03:59.865 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-08-08T19:03:59.866 INFO:teuthology.orchestra.run.smithi062.stdout:Mon IP `172.21.15.62` is in CIDR network `172.21.0.0/20` 2024-08-08T19:03:59.867 INFO:teuthology.orchestra.run.smithi062.stdout:Mon IP `172.21.15.62` is in CIDR network `172.21.0.0/20` 2024-08-08T19:03:59.867 INFO:teuthology.orchestra.run.smithi062.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-08-08T19:03:59.867 INFO:teuthology.orchestra.run.smithi062.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-08-08T19:03:59.867 INFO:teuthology.orchestra.run.smithi062.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a... 2024-08-08T19:04:00.468 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 6864bdb868b5e93593b56f5e08e15fe57e3bad81e49b727c08f18284257cb732 2024-08-08T19:04:00.468 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a... 2024-08-08T19:04:00.468 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Getting image source signatures 2024-08-08T19:04:00.468 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Copying blob sha256:cfadf0b77c49086b2a787b89e0571dcf4db3cebf9d74bd0b5fa48232226bada3 2024-08-08T19:04:00.469 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-08-08T19:04:00.469 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Copying config sha256:6864bdb868b5e93593b56f5e08e15fe57e3bad81e49b727c08f18284257cb732 2024-08-08T19:04:00.469 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Writing manifest to image destination 2024-08-08T19:04:01.439 INFO:teuthology.orchestra.run.smithi062.stdout:ceph: stdout ceph version 19.0.0-5695-gde50a7c9 (de50a7c969c464f1af48fc4fd9870c061342194a) squid (dev) 2024-08-08T19:04:01.439 INFO:teuthology.orchestra.run.smithi062.stdout:Ceph version: ceph version 19.0.0-5695-gde50a7c9 (de50a7c969c464f1af48fc4fd9870c061342194a) squid (dev) 2024-08-08T19:04:01.440 INFO:teuthology.orchestra.run.smithi062.stdout:Extracting ceph user uid/gid from container image... 2024-08-08T19:04:02.404 INFO:teuthology.orchestra.run.smithi062.stdout:stat: stdout 167 167 2024-08-08T19:04:02.404 INFO:teuthology.orchestra.run.smithi062.stdout:Creating initial keys... 2024-08-08T19:04:03.384 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph-authtool: stdout AQCiFrVmHiDrLBAArIanBc9IeHt/3xyF/EHBfQ== 2024-08-08T19:04:04.231 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph-authtool: stdout AQCjFrVm4x1VKhAAUqn/2cqJHDJaWw/rMyN9ig== 2024-08-08T19:04:05.237 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph-authtool: stdout AQCkFrVmrUylHxAAwotBcC+bjSfF5+HWMMarDQ== 2024-08-08T19:04:05.238 INFO:teuthology.orchestra.run.smithi062.stdout:Creating initial monmap... 2024-08-08T19:04:06.118 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-08-08T19:04:06.119 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-08-08T19:04:06.119 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:06.119 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-08-08T19:04:06.119 INFO:teuthology.orchestra.run.smithi062.stdout:monmaptool for smithi062 [v2:172.21.15.62:3300,v1:172.21.15.62:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-08-08T19:04:06.119 INFO:teuthology.orchestra.run.smithi062.stdout:setting min_mon_release = quincy 2024-08-08T19:04:06.119 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: set fsid to d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:06.119 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-08-08T19:04:06.119 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:04:06.119 INFO:teuthology.orchestra.run.smithi062.stdout:Creating mon... 2024-08-08T19:04:07.107 INFO:teuthology.orchestra.run.smithi062.stdout:create mon.smithi062 on 2024-08-08T19:04:07.591 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-08-08T19:04:07.809 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target → /etc/systemd/system/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target. 2024-08-08T19:04:07.809 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target → /etc/systemd/system/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target. 2024-08-08T19:04:08.074 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062 2024-08-08T19:04:08.075 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service: Unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service not loaded. 2024-08-08T19:04:08.256 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target.wants/ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service → /etc/systemd/system/ceph-d30482f6-55b8-11ef-bccd-c7b262605968@.service. 2024-08-08T19:04:08.798 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-08-08T19:04:08.798 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-08-08T19:04:08.805 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-08-08T19:04:08.805 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-08-08T19:04:08.806 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-08-08T19:04:08.806 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to enable service . firewalld.service is not available 2024-08-08T19:04:08.806 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mon to start... 2024-08-08T19:04:08.806 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mon... 2024-08-08T19:04:09.836 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout cluster: 2024-08-08T19:04:09.836 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout id: d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:09.836 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout services: 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi062 (age 0.55689s) 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout data: 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout pgs: 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:09.837 INFO:teuthology.orchestra.run.smithi062.stdout:mon is available 2024-08-08T19:04:09.838 INFO:teuthology.orchestra.run.smithi062.stdout:Assimilating anything we can from ceph.conf... 2024-08-08T19:04:10.830 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:10 smithi062 ceph-mon[27139]: from='client.? 172.21.15.62:0/1037294520' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [global] 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout fsid = d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.62:3300,v1:172.21.15.62:6789] 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [mgr] 2024-08-08T19:04:10.835 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-08-08T19:04:10.836 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:10.836 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [osd] 2024-08-08T19:04:10.836 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-08-08T19:04:10.836 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-08-08T19:04:10.836 INFO:teuthology.orchestra.run.smithi062.stdout:Generating new minimal ceph.conf... 2024-08-08T19:04:11.844 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:11 smithi062 ceph-mon[27139]: from='client.? 172.21.15.62:0/2303488970' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-08-08T19:04:11.847 INFO:teuthology.orchestra.run.smithi062.stdout:Restarting the monitor... 2024-08-08T19:04:12.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:11 smithi062 systemd[1]: Stopping Ceph mon.smithi062 for d30482f6-55b8-11ef-bccd-c7b262605968... 2024-08-08T19:04:12.514 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:12 smithi062 ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062[27134]: 2024-08-08T19:04:12.113+0000 7f647999c640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi062 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-08-08T19:04:12.514 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:12 smithi062 ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062[27134]: 2024-08-08T19:04:12.113+0000 7f647999c640 -1 mon.smithi062@0(leader) e1 *** Got Signal Terminated *** 2024-08-08T19:04:12.514 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:12 smithi062 podman[27384]: 2024-08-08 19:04:12.277274334 +0000 UTC m=+0.255857592 container died f3cad84461f02ff22b1eb444a04a9c3803829ca512f5ddd4cecedd13e291bf52 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a, name=ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, RELEASE=wip-guits-main-2024-08-08-1205-de50a7c, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.36.0) 2024-08-08T19:04:12.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:12 smithi062 podman[27384]: 2024-08-08 19:04:12.612913361 +0000 UTC m=+0.591496618 container cleanup f3cad84461f02ff22b1eb444a04a9c3803829ca512f5ddd4cecedd13e291bf52 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a, name=ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-main-2024-08-08-1205-de50a7c, GIT_CLEAN=True, io.buildah.version=1.36.0, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, ceph=True, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=) 2024-08-08T19:04:12.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:12 smithi062 bash[27384]: ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062 2024-08-08T19:04:13.108 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:12 smithi062 podman[27396]: 2024-08-08 19:04:12.763883991 +0000 UTC m=+0.486210503 container remove f3cad84461f02ff22b1eb444a04a9c3803829ca512f5ddd4cecedd13e291bf52 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a, name=ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, RELEASE=wip-guits-main-2024-08-08-1205-de50a7c, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, io.buildah.version=1.36.0) 2024-08-08T19:04:13.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:12 smithi062 systemd[1]: ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service: Deactivated successfully. 2024-08-08T19:04:13.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:12 smithi062 systemd[1]: Stopped Ceph mon.smithi062 for d30482f6-55b8-11ef-bccd-c7b262605968. 2024-08-08T19:04:13.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:12 smithi062 systemd[1]: Starting Ceph mon.smithi062 for d30482f6-55b8-11ef-bccd-c7b262605968... 2024-08-08T19:04:13.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 podman[27490]: 2024-08-08 19:04:13.106490694 +0000 UTC m=+0.017822453 image pull 6864bdb868b5e93593b56f5e08e15fe57e3bad81e49b727c08f18284257cb732 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a 2024-08-08T19:04:13.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 podman[27490]: 2024-08-08 19:04:13.206406726 +0000 UTC m=+0.117738467 container create 4651081d6b47e5078ccac0dcbf81f47ca96db143983ed6a27c00915c940a5988 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a, name=ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-main-2024-08-08-1205-de50a7c, GIT_CLEAN=True, GIT_BRANCH=HEAD, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.36.0, org.label-schema.build-date=20240731) 2024-08-08T19:04:13.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 podman[27490]: 2024-08-08 19:04:13.433860348 +0000 UTC m=+0.345192102 container init 4651081d6b47e5078ccac0dcbf81f47ca96db143983ed6a27c00915c940a5988 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a, name=ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062, org.label-schema.license=GPLv2, RELEASE=wip-guits-main-2024-08-08-1205-de50a7c, GIT_CLEAN=True, io.buildah.version=1.36.0, ceph=True, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731) 2024-08-08T19:04:13.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 podman[27490]: 2024-08-08 19:04:13.437236053 +0000 UTC m=+0.348567795 container start 4651081d6b47e5078ccac0dcbf81f47ca96db143983ed6a27c00915c940a5988 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a, name=ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.36.0, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, GIT_BRANCH=HEAD, RELEASE=wip-guits-main-2024-08-08-1205-de50a7c, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731) 2024-08-08T19:04:13.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: set uid:gid to 167:167 (ceph:ceph) 2024-08-08T19:04:13.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: ceph version 19.0.0-5695-gde50a7c9 (de50a7c969c464f1af48fc4fd9870c061342194a) squid (dev), process ceph-mon, pid 2 2024-08-08T19:04:13.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: pidfile_write: ignore empty --pid-file 2024-08-08T19:04:13.522 INFO:teuthology.orchestra.run.smithi062.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-08-08T19:04:13.792 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: load: jerasure load: lrc 2024-08-08T19:04:13.793 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: RocksDB version: 7.9.2 2024-08-08T19:04:13.793 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Git sha 0 2024-08-08T19:04:13.793 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Compile date 2024-08-08 13:38:01 2024-08-08T19:04:13.793 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: DB SUMMARY 2024-08-08T19:04:13.793 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: DB Session ID: 58SYNHQ5GYZAW5AD1V5N 2024-08-08T19:04:13.793 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: CURRENT file: CURRENT 2024-08-08T19:04:13.793 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: IDENTITY file: IDENTITY 2024-08-08T19:04:13.793 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-08-08T19:04:13.793 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi062/store.db dir, Total Num: 1, files: 000008.sst 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi062/store.db: 000009.log size: 88831 ; 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.error_if_exists: 0 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.create_if_missing: 0 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.paranoid_checks: 1 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.flush_verify_memtable_count: 1 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.env: 0x55fa693c8be0 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.fs: PosixFileSystem 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.info_log: 0x55fa6a89f800 2024-08-08T19:04:13.794 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_file_opening_threads: 16 2024-08-08T19:04:13.798 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.statistics: (nil) 2024-08-08T19:04:13.798 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.use_fsync: 0 2024-08-08T19:04:13.798 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_log_file_size: 0 2024-08-08T19:04:13.798 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-08-08T19:04:13.798 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.log_file_time_to_roll: 0 2024-08-08T19:04:13.798 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.keep_log_file_num: 1000 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.recycle_log_file_num: 0 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.allow_fallocate: 1 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.allow_mmap_reads: 0 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.allow_mmap_writes: 0 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.use_direct_reads: 0 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.create_missing_column_families: 0 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.db_log_dir: 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.wal_dir: 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.table_cache_numshardbits: 6 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.WAL_ttl_seconds: 0 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.WAL_size_limit_MB: 0 2024-08-08T19:04:13.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-08-08T19:04:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-08-08T19:04:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.is_fd_close_on_exec: 1 2024-08-08T19:04:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.advise_random_on_open: 1 2024-08-08T19:04:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.db_write_buffer_size: 0 2024-08-08T19:04:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.write_buffer_manager: 0x55fa6a8a2e60 2024-08-08T19:04:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-08-08T19:04:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-08-08T19:04:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.use_adaptive_mutex: 0 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.rate_limiter: (nil) 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.wal_recovery_mode: 2 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.enable_thread_tracking: 0 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.enable_pipelined_write: 0 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.unordered_write: 0 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.row_cache: None 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.wal_filter: None 2024-08-08T19:04:13.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.allow_ingest_behind: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.two_write_queues: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.manual_wal_flush: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.wal_compression: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.atomic_flush: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.persist_stats_to_disk: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.write_dbid_to_manifest: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.log_readahead_size: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.best_efforts_recovery: 0 2024-08-08T19:04:13.803 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.allow_data_in_errors: 0 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.db_host_id: __hostname__ 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.enforce_single_del_contracts: true 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_background_jobs: 2 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_background_compactions: -1 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_subcompactions: 1 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.delayed_write_rate : 16777216 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_total_wal_size: 0 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-08-08T19:04:13.804 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.stats_dump_period_sec: 600 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.stats_persist_period_sec: 600 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_open_files: -1 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bytes_per_sync: 0 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.wal_bytes_per_sync: 0 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.strict_bytes_per_sync: 0 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_readahead_size: 0 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_background_flushes: -1 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Compression algorithms supported: 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: kZSTD supported: 0 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: kXpressCompression supported: 0 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: kBZip2Compression supported: 0 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-08-08T19:04:13.805 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: kLZ4Compression supported: 1 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: kZlibCompression supported: 1 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: kLZ4HCCompression supported: 1 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: kSnappyCompression supported: 1 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Fast CRC32 supported: Supported on x86 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: DMutex implementation: pthread_mutex_t 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi062/store.db/MANIFEST-000010 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.merge_operator: 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_filter: None 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_filter_factory: None 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.sst_partitioner_factory: None 2024-08-08T19:04:13.806 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.memtable_factory: SkipListFactory 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.table_factory: BlockBasedTable 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55fa6a89f440) 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: cache_index_and_filter_blocks: 1 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: pin_top_level_index_and_filter: 1 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: index_type: 0 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: data_block_index_type: 0 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: index_shortening: 1 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: data_block_hash_table_util_ratio: 0.750000 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: checksum: 4 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: no_block_cache: 0 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_cache: 0x55fa6a893610 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_cache_name: BinnedLRUCache 2024-08-08T19:04:13.807 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_cache_options: 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: capacity : 536870912 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: num_shard_bits : 4 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: strict_capacity_limit : 0 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: high_pri_pool_ratio: 0.000 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_cache_compressed: (nil) 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: persistent_cache: (nil) 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_size: 4096 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_size_deviation: 10 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_restart_interval: 16 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: index_block_restart_interval: 1 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: metadata_block_size: 4096 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: partition_filters: 0 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: use_delta_encoding: 1 2024-08-08T19:04:13.808 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: filter_policy: bloomfilter 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: whole_key_filtering: 1 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: verify_compression: 0 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: read_amp_bytes_per_bit: 0 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: format_version: 5 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: enable_index_compression: 1 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_align: 0 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: max_auto_readahead_size: 262144 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: prepopulate_block_cache: 0 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: initial_auto_readahead_size: 8192 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: num_file_reads_for_auto_readahead: 2 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.write_buffer_size: 33554432 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_write_buffer_number: 2 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression: NoCompression 2024-08-08T19:04:13.809 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression: Disabled 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.prefix_extractor: nullptr 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.num_levels: 7 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-08-08T19:04:13.810 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression_opts.window_bits: -14 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression_opts.level: 32767 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression_opts.strategy: 0 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression_opts.enabled: false 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-08-08T19:04:13.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.target_file_size_base: 67108864 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.target_file_size_multiplier: 1 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-08-08T19:04:13.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.arena_block_size: 1048576 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.disable_auto_compactions: 0 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-08-08T19:04:13.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.inplace_update_support: 0 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.inplace_update_num_locks: 10000 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.memtable_huge_page_size: 0 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.bloom_locality: 0 2024-08-08T19:04:13.814 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.max_successive_merges: 0 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.optimize_filters_for_hits: 0 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.paranoid_file_checks: 0 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.force_consistency_checks: 1 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.report_bg_io_stats: 0 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.ttl: 2592000 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.periodic_compaction_seconds: 0 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.enable_blob_files: false 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.min_blob_size: 0 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.blob_file_size: 268435456 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.blob_compression_type: NoCompression 2024-08-08T19:04:13.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.enable_blob_garbage_collection: false 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.blob_file_starting_level: 0 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi062/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 0aed67a3-97de-46e0-a325-367a0de67c93 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: EVENT_LOG_v1 {"time_micros": 1723143853464197, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: EVENT_LOG_v1 {"time_micros": 1723143853465072, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85601, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 254, "table_properties": {"data_size": 83741, "index_size": 244, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 9921, "raw_average_key_size": 46, "raw_value_size": 78062, "raw_average_value_size": 366, "num_data_blocks": 11, "num_entries": 213, "num_filter_entries": 213, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1723143853, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "0aed67a3-97de-46e0-a325-367a0de67c93", "db_session_id": "58SYNHQ5GYZAW5AD1V5N", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-08-08T19:04:13.816 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: EVENT_LOG_v1 {"time_micros": 1723143853465169, "job": 1, "event": "recovery_finished"} 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi062/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55fa6a8c2e00 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: DB pointer 0x55fa6a9c0000 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ** DB Stats ** 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-08-08T19:04:13.817 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ** Compaction Stats [default] ** 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: L0 2/0 85.49 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 148.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Sum 2/0 85.49 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 148.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 148.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ** Compaction Stats [default] ** 2024-08-08T19:04:13.818 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 148.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-08-08T19:04:13.819 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: AddFile(Keys): cumulative 0, interval 0 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Cumulative compaction: 0.00 GB write, 25.70 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Interval compaction: 0.00 GB write, 25.70 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Block cache BinnedLRUCache@0x55fa6a893610#2 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.44 KB,8.34465e-05%) Misc(1,0.00 KB,0%) 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ** File Read Latency Histogram By Level [default] ** 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: starting mon.smithi062 rank 0 at public addrs [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] at bind addrs [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi062 fsid d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mon.smithi062@-1(???) e1 preinit fsid d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mon.smithi062@-1(???).mds e1 new map 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mon.smithi062@-1(???).mds e1 print_map 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: e1 2024-08-08T19:04:13.820 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: btime 2024-08-08T19:04:08:748901+0000 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: legacy client fscid: -1 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: No filesystems configured 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mon.smithi062@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mon.smithi062@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mon.smithi062@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mon.smithi062@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mon.smithi062@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 bash[27490]: 4651081d6b47e5078ccac0dcbf81f47ca96db143983ed6a27c00915c940a5988 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 systemd[1]: Started Ceph mon.smithi062 for d30482f6-55b8-11ef-bccd-c7b262605968. 2024-08-08T19:04:13.821 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mon.smithi062 is new leader, mons smithi062 in quorum (ranks 0) 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: monmap epoch 1 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: fsid d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: last_changed 2024-08-08T19:04:05.544029+0000 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: created 2024-08-08T19:04:05.544029+0000 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: min_mon_release 19 (squid) 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: election_strategy: 1 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: 0: [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] mon.smithi062 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: fsmap 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: osdmap e1: 0 total, 0 up, 0 in 2024-08-08T19:04:13.822 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:13 smithi062 ceph-mon[27509]: mgrmap e1: no daemons active 2024-08-08T19:04:14.543 INFO:teuthology.orchestra.run.smithi062.stdout:Wrote config to /etc/ceph/ceph.conf 2024-08-08T19:04:14.565 INFO:teuthology.orchestra.run.smithi062.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-08-08T19:04:14.566 INFO:teuthology.orchestra.run.smithi062.stdout:Creating mgr... 2024-08-08T19:04:14.566 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying port 0.0.0.0:9283 ... 2024-08-08T19:04:14.566 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying port 0.0.0.0:8765 ... 2024-08-08T19:04:14.567 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying port 0.0.0.0:8443 ... 2024-08-08T19:04:14.833 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mgr.smithi062.zmljnn 2024-08-08T19:04:14.833 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mgr.smithi062.zmljnn.service: Unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mgr.smithi062.zmljnn.service not loaded. 2024-08-08T19:04:14.992 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target.wants/ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mgr.smithi062.zmljnn.service → /etc/systemd/system/ceph-d30482f6-55b8-11ef-bccd-c7b262605968@.service. 2024-08-08T19:04:15.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:15 smithi062 ceph-mon[27509]: from='client.? 172.21.15.62:0/1206213010' entity='client.admin' 2024-08-08T19:04:15.512 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-08-08T19:04:15.512 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-08-08T19:04:15.521 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-08-08T19:04:15.521 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-08-08T19:04:15.521 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-08-08T19:04:15.521 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to enable service . firewalld.service is not available 2024-08-08T19:04:15.532 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-08-08T19:04:15.532 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-08-08T19:04:15.541 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-08-08T19:04:15.541 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-08-08T19:04:15.541 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-08-08T19:04:15.541 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-08-08T19:04:15.541 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mgr to start... 2024-08-08T19:04:15.541 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mgr... 2024-08-08T19:04:16.359 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:16 smithi062 ceph-mon[27509]: from='client.? 172.21.15.62:0/1341175241' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-08-08T19:04:21.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: Activating manager daemon smithi062.zmljnn 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: mgrmap e2: smithi062.zmljnn(active, starting, since 0.00325607s) 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' cmd={"prefix": "mds metadata"} : dispatch 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' cmd={"prefix": "osd metadata"} : dispatch 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' cmd={"prefix": "mon metadata"} : dispatch 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' cmd={"prefix": "mon metadata", "id": "smithi062"} : dispatch 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' cmd={"prefix": "mgr metadata", "who": "smithi062.zmljnn", "id": "smithi062.zmljnn"} : dispatch 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: Manager daemon smithi062.zmljnn is now available 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.zmljnn/mirror_snapshot_schedule"} : dispatch 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.zmljnn/trash_purge_schedule"} : dispatch 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' 2024-08-08T19:04:21.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:20 smithi062 ceph-mon[27509]: from='mgr.14100 172.21.15.62:0/1237019505' entity='mgr.smithi062.zmljnn' 2024-08-08T19:04:22.525 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsid": "d30482f6-55b8-11ef-bccd-c7b262605968", 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "health": { 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 0 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-08-08T19:04:22.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "smithi062" 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "monmap": { 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-08-08T19:04:22.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-08-08T19:04:22.528 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-08-08T19:04:22.528 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-08-08T19:04:22.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:22.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-08-08T19:04:22.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-08-08T19:04:22.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-08-08T19:04:22.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-08-08T19:04:22.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "btime": "2024-08-08T19:04:08:748901+0000", 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": false, 2024-08-08T19:04:22.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modules": [ 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "iostat", 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "nfs", 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "restful" 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modified": "2024-08-08T19:04:08.749580+0000", 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-08-08T19:04:22.533 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-08-08T19:04:22.534 INFO:teuthology.orchestra.run.smithi062.stdout:mgr not available, waiting (1/15)... 2024-08-08T19:04:22.858 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:22 smithi062 ceph-mon[27509]: mgrmap e3: smithi062.zmljnn(active, since 1.00792s) 2024-08-08T19:04:24.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:23 smithi062 ceph-mon[27509]: mgrmap e4: smithi062.zmljnn(active, since 2s) 2024-08-08T19:04:25.608 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:25 smithi062 ceph-mon[27509]: from='client.? 172.21.15.62:0/358223282' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-08-08T19:04:25.768 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsid": "d30482f6-55b8-11ef-bccd-c7b262605968", 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "health": { 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-08-08T19:04:25.769 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 0 2024-08-08T19:04:25.770 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-08-08T19:04:25.770 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-08-08T19:04:25.770 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "smithi062" 2024-08-08T19:04:25.770 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-08-08T19:04:25.770 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-08-08T19:04:25.770 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "monmap": { 2024-08-08T19:04:25.770 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-08-08T19:04:25.770 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-08-08T19:04:25.771 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-08-08T19:04:25.776 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:25.776 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-08-08T19:04:25.776 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-08-08T19:04:25.776 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-08-08T19:04:25.776 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-08-08T19:04:25.776 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-08-08T19:04:25.776 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-08-08T19:04:25.777 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-08-08T19:04:25.777 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-08-08T19:04:25.777 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-08-08T19:04:25.777 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:25.777 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-08-08T19:04:25.777 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "btime": "2024-08-08T19:04:08:748901+0000", 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": true, 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modules": [ 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "iostat", 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "nfs", 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "restful" 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-08-08T19:04:25.778 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-08-08T19:04:25.779 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:25.779 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-08-08T19:04:25.779 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-08-08T19:04:25.779 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modified": "2024-08-08T19:04:08.749580+0000", 2024-08-08T19:04:25.779 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-08-08T19:04:25.779 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-08-08T19:04:25.779 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-08-08T19:04:25.779 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-08-08T19:04:25.779 INFO:teuthology.orchestra.run.smithi062.stdout:mgr is available 2024-08-08T19:04:26.608 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:26 smithi062 ceph-mon[27509]: from='client.? 172.21.15.62:0/1227091277' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-08-08T19:04:26.866 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:26.866 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [global] 2024-08-08T19:04:26.866 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout fsid = d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:26.866 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-08-08T19:04:26.866 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.62:3300,v1:172.21.15.62:6789] 2024-08-08T19:04:26.866 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [mgr] 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [osd] 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-08-08T19:04:26.867 INFO:teuthology.orchestra.run.smithi062.stdout:Enabling cephadm module... 2024-08-08T19:04:27.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:27 smithi062 ceph-mon[27509]: from='client.? 172.21.15.62:0/1633635061' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-08-08T19:04:28.858 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:28 smithi062 ceph-mon[27509]: from='client.? 172.21.15.62:0/1633635061' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-08-08T19:04:28.859 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:28 smithi062 ceph-mon[27509]: mgrmap e5: smithi062.zmljnn(active, since 6s) 2024-08-08T19:04:31.815 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:31 smithi062 ceph-mon[27509]: from='client.? 172.21.15.62:0/2192303795' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-08-08T19:04:32.372 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-08-08T19:04:32.372 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-08-08T19:04:32.372 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": true, 2024-08-08T19:04:32.372 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "active_name": "smithi062.zmljnn", 2024-08-08T19:04:32.372 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-08-08T19:04:32.372 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-08-08T19:04:32.372 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for the mgr to restart... 2024-08-08T19:04:32.372 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mgr epoch 5... 2024-08-08T19:04:33.108 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: Active manager daemon smithi062.zmljnn restarted 2024-08-08T19:04:33.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: Activating manager daemon smithi062.zmljnn 2024-08-08T19:04:33.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: osdmap e2: 0 total, 0 up, 0 in 2024-08-08T19:04:33.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: mgrmap e6: smithi062.zmljnn(active, starting, since 0.00351696s) 2024-08-08T19:04:33.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: from='mgr.14116 172.21.15.62:0/3342737782' entity='mgr.smithi062.zmljnn' cmd={"prefix": "mon metadata", "id": "smithi062"} : dispatch 2024-08-08T19:04:33.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: from='mgr.14116 172.21.15.62:0/3342737782' entity='mgr.smithi062.zmljnn' cmd={"prefix": "mgr metadata", "who": "smithi062.zmljnn", "id": "smithi062.zmljnn"} : dispatch 2024-08-08T19:04:33.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: from='mgr.14116 172.21.15.62:0/3342737782' entity='mgr.smithi062.zmljnn' cmd={"prefix": "mds metadata"} : dispatch 2024-08-08T19:04:33.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: from='mgr.14116 172.21.15.62:0/3342737782' entity='mgr.smithi062.zmljnn' cmd={"prefix": "osd metadata"} : dispatch 2024-08-08T19:04:33.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: from='mgr.14116 172.21.15.62:0/3342737782' entity='mgr.smithi062.zmljnn' cmd={"prefix": "mon metadata"} : dispatch 2024-08-08T19:04:33.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:32 smithi062 ceph-mon[27509]: Manager daemon smithi062.zmljnn is now available 2024-08-08T19:04:34.229 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-08-08T19:04:34.229 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-08-08T19:04:34.230 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "initialized": true 2024-08-08T19:04:34.230 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-08-08T19:04:34.230 INFO:teuthology.orchestra.run.smithi062.stdout:mgr epoch 5 is available 2024-08-08T19:04:34.230 INFO:teuthology.orchestra.run.smithi062.stdout:Setting orchestrator backend to cephadm... 2024-08-08T19:04:35.091 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:34 smithi062 ceph-mon[27509]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-08-08T19:04:35.091 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:34 smithi062 ceph-mon[27509]: mgrmap e7: smithi062.zmljnn(active, since 1.00527s) 2024-08-08T19:04:35.091 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:34 smithi062 ceph-mon[27509]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-08-08T19:04:35.344 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 95 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a -e NODE_NAME=smithi062 -v /var/log/ceph/d30482f6-55b8-11ef-bccd-c7b262605968:/var/log/ceph:z -v /tmp/ceph-tmpdprg2vyf:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmptworke59:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a orch set backend cephadm 2024-08-08T19:04:35.345 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stderr Error ENOTSUP: Warning: due to ceph-mgr restart, some PG states may not be up to date 2024-08-08T19:04:35.345 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stderr Module 'orchestrator' is not enabled/loaded (required by command 'orch set backend'): use `ceph mgr module enable orchestrator` to enable it 2024-08-08T19:04:35.345 INFO:teuthology.orchestra.run.smithi062.stderr:RuntimeError: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a -e NODE_NAME=smithi062 -v /var/log/ceph/d30482f6-55b8-11ef-bccd-c7b262605968:/var/log/ceph:z -v /tmp/ceph-tmpdprg2vyf:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmptworke59:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a orch set backend cephadm: Error ENOTSUP: Warning: due to ceph-mgr restart, some PG states may not be up to date 2024-08-08T19:04:35.345 INFO:teuthology.orchestra.run.smithi062.stderr:Module 'orchestrator' is not enabled/loaded (required by command 'orch set backend'): use `ceph mgr module enable orchestrator` to enable it 2024-08-08T19:04:35.345 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: *************** 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: Cephadm hit an issue during cluster installation. Current cluster files will be deleted automatically. 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: To disable this behaviour you can pass the --no-cleanup-on-failure flag. In case of any previous 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: broken installation, users must use the following command to completely delete the broken cluster: 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: > cephadm rm-cluster --force --zap-osds --fsid 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: for more information please refer to https://docs.ceph.com/en/latest/cephadm/operations/#purging-a-cluster 2024-08-08T19:04:35.346 INFO:teuthology.orchestra.run.smithi062.stdout: *************** 2024-08-08T19:04:35.347 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:04:35.347 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-08-08T19:04:35.347 INFO:teuthology.orchestra.run.smithi062.stdout:Deleting cluster with fsid: d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:35.376 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 4651081d6b47,29.28MB / 33.27GB 2024-08-08T19:04:35.376 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 41fd9b08f390,449MB / 33.27GB 2024-08-08T19:04:35.403 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 4651081d6b47,0.98% 2024-08-08T19:04:35.403 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 41fd9b08f390,65.90% 2024-08-08T19:04:35.609 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:35 smithi062 systemd[1]: Stopping Ceph mon.smithi062 for d30482f6-55b8-11ef-bccd-c7b262605968... 2024-08-08T19:04:36.108 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:35 smithi062 ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062[27505]: 2024-08-08T19:04:35.694+0000 7f8cf5453640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi062 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-08-08T19:04:36.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:35 smithi062 ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062[27505]: 2024-08-08T19:04:35.694+0000 7f8cf5453640 -1 mon.smithi062@0(leader) e1 *** Got Signal Terminated *** 2024-08-08T19:04:36.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:35 smithi062 podman[28378]: 2024-08-08 19:04:35.877872646 +0000 UTC m=+0.282314137 container died 4651081d6b47e5078ccac0dcbf81f47ca96db143983ed6a27c00915c940a5988 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a, name=ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062, io.buildah.version=1.36.0, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-guits-main-2024-08-08-1205-de50a7c, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_CLEAN=True) 2024-08-08T19:04:36.608 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:36 smithi062 podman[28378]: 2024-08-08 19:04:36.23537815 +0000 UTC m=+0.639819641 container cleanup 4651081d6b47e5078ccac0dcbf81f47ca96db143983ed6a27c00915c940a5988 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a, name=ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, io.buildah.version=1.36.0, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , RELEASE=wip-guits-main-2024-08-08-1205-de50a7c, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_CLEAN=True, CEPH_POINT_RELEASE=) 2024-08-08T19:04:36.608 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:36 smithi062 bash[28378]: ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062 2024-08-08T19:04:37.108 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:36 smithi062 podman[28456]: 2024-08-08 19:04:36.856365806 +0000 UTC m=+0.977833783 container remove 4651081d6b47e5078ccac0dcbf81f47ca96db143983ed6a27c00915c940a5988 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a, name=ceph-d30482f6-55b8-11ef-bccd-c7b262605968-mon-smithi062, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, io.buildah.version=1.36.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=wip-guits-main-2024-08-08-1205-de50a7c, ceph=True, maintainer=Guillaume Abrioux ) 2024-08-08T19:04:37.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:37 smithi062 systemd[1]: ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service: Deactivated successfully. 2024-08-08T19:04:37.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:37 smithi062 systemd[1]: Stopped Ceph mon.smithi062 for d30482f6-55b8-11ef-bccd-c7b262605968. 2024-08-08T19:04:37.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Aug 08 19:04:37 smithi062 systemd[1]: ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service: Consumed 1.050s CPU time. 2024-08-08T19:04:37.236 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target.wants/ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service". 2024-08-08T19:04:37.245 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 5 from systemctl stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mon.smithi062.service 2024-08-08T19:04:37.245 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mon.smithi062.service: Unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mon.smithi062.service not loaded. 2024-08-08T19:04:37.251 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mon.smithi062.service 2024-08-08T19:04:37.251 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mon.smithi062.service: Unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mon.smithi062.service not loaded. 2024-08-08T19:04:37.258 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl disable ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mon.smithi062.service 2024-08-08T19:04:37.258 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mon.smithi062.service does not exist. 2024-08-08T19:04:38.497 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target.wants/ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mgr.smithi062.zmljnn.service". 2024-08-08T19:04:38.504 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 5 from systemctl stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mgr.smithi062.zmljnn.service 2024-08-08T19:04:38.504 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mgr.smithi062.zmljnn.service: Unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mgr.smithi062.zmljnn.service not loaded. 2024-08-08T19:04:38.510 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mgr.smithi062.zmljnn.service 2024-08-08T19:04:38.510 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mgr.smithi062.zmljnn.service: Unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mgr.smithi062.zmljnn.service not loaded. 2024-08-08T19:04:38.517 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl disable ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mgr.smithi062.zmljnn.service 2024-08-08T19:04:38.517 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-d30482f6-55b8-11ef-bccd-c7b262605968-init@mgr.smithi062.zmljnn.service does not exist. 2024-08-08T19:04:38.730 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph.target.wants/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target". 2024-08-08T19:04:38.730 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph-d30482f6-55b8-11ef-bccd-c7b262605968.target". 2024-08-08T19:04:38.909 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-08-08T19:04:38.910 INFO:teuthology.orchestra.run.smithi062.stderr:Traceback (most recent call last): 2024-08-08T19:04:38.910 INFO:teuthology.orchestra.run.smithi062.stderr: File "/usr/lib64/python3.9/runpy.py", line 197, in _run_module_as_main 2024-08-08T19:04:38.921 INFO:teuthology.orchestra.run.smithi062.stderr: return _run_code(code, main_globals, None, 2024-08-08T19:04:38.921 INFO:teuthology.orchestra.run.smithi062.stderr: File "/usr/lib64/python3.9/runpy.py", line 87, in _run_code 2024-08-08T19:04:38.921 INFO:teuthology.orchestra.run.smithi062.stderr: exec(code, run_globals) 2024-08-08T19:04:38.921 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpcourwazv.cephadm.build/app/__main__.py", line 5609, in 2024-08-08T19:04:38.921 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpcourwazv.cephadm.build/app/__main__.py", line 5597, in main 2024-08-08T19:04:38.921 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpcourwazv.cephadm.build/app/__main__.py", line 2651, in _rollback 2024-08-08T19:04:38.921 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpcourwazv.cephadm.build/app/__main__.py", line 449, in _default_image 2024-08-08T19:04:38.922 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpcourwazv.cephadm.build/app/__main__.py", line 2900, in command_bootstrap 2024-08-08T19:04:38.922 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpcourwazv.cephadm.build/app/__main__.py", line 2404, in enable_cephadm_mgr_module 2024-08-08T19:04:38.922 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpcourwazv.cephadm.build/app/__main__.py", line 2830, in cli 2024-08-08T19:04:38.922 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpcourwazv.cephadm.build/app/cephadmlib/container_types.py", line 429, in run 2024-08-08T19:04:38.922 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpcourwazv.cephadm.build/app/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-08-08T19:04:38.922 INFO:teuthology.orchestra.run.smithi062.stderr:RuntimeError: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a -e NODE_NAME=smithi062 -v /var/log/ceph/d30482f6-55b8-11ef-bccd-c7b262605968:/var/log/ceph:z -v /tmp/ceph-tmpdprg2vyf:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmptworke59:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a orch set backend cephadm: Error ENOTSUP: Warning: due to ceph-mgr restart, some PG states may not be up to date 2024-08-08T19:04:38.922 INFO:teuthology.orchestra.run.smithi062.stderr:Module 'orchestrator' is not enabled/loaded (required by command 'orch set backend'): use `ceph mgr module enable orchestrator` to enable it 2024-08-08T19:04:38.922 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-08-08T19:04:38.948 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-08T19:04:38.948 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-08-08T19:04:38.949 DEBUG:teuthology.orchestra.run.smithi062:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-08-08T19:04:38.965 DEBUG:teuthology.orchestra.run.smithi131:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-08-08T19:04:38.985 INFO:tasks.cephadm:Stopping all daemons... 2024-08-08T19:04:38.986 INFO:tasks.cephadm.mon.smithi062:Stopping mon.smithi062... 2024-08-08T19:04:38.986 DEBUG:teuthology.orchestra.run.smithi062:> sudo systemctl stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062 2024-08-08T19:04:39.038 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service: Unit ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062.service not loaded. 2024-08-08T19:04:39.040 DEBUG:teuthology.orchestra.run:got remote process result: 5 2024-08-08T19:04:39.040 ERROR:tasks.cephadm:Failed to stop "ceph.mon.smithi062" Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 778, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a -v bootstrap --fsid d30482f6-55b8-11ef-bccd-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 865, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 5: 'sudo systemctl stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062' 2024-08-08T19:04:39.042 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 778, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a -v bootstrap --fsid d30482f6-55b8-11ef-bccd-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 865, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 5: 'sudo systemctl stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062' 2024-08-08T19:04:39.044 INFO:tasks.cephadm:Archiving crash dumps... 2024-08-08T19:04:39.045 DEBUG:teuthology.misc:Transferring archived files from smithi062:/var/lib/ceph/d30482f6-55b8-11ef-bccd-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi/7844217/remote/smithi062/crash 2024-08-08T19:04:39.046 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /var/lib/ceph/d30482f6-55b8-11ef-bccd-c7b262605968/crash -- . 2024-08-08T19:04:39.121 INFO:teuthology.orchestra.run.smithi062.stderr:tar: /var/lib/ceph/d30482f6-55b8-11ef-bccd-c7b262605968/crash: Cannot open: No such file or directory 2024-08-08T19:04:39.121 INFO:teuthology.orchestra.run.smithi062.stderr:tar: Error is not recoverable: exiting now 2024-08-08T19:04:39.123 DEBUG:teuthology.misc:Transferring archived files from smithi131:/var/lib/ceph/d30482f6-55b8-11ef-bccd-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi/7844217/remote/smithi131/crash 2024-08-08T19:04:39.124 DEBUG:teuthology.orchestra.run.smithi131:> sudo tar c -f - -C /var/lib/ceph/d30482f6-55b8-11ef-bccd-c7b262605968/crash -- . 2024-08-08T19:04:39.168 INFO:teuthology.orchestra.run.smithi131.stderr:tar: /var/lib/ceph/d30482f6-55b8-11ef-bccd-c7b262605968/crash: Cannot open: No such file or directory 2024-08-08T19:04:39.168 INFO:teuthology.orchestra.run.smithi131.stderr:tar: Error is not recoverable: exiting now 2024-08-08T19:04:39.170 INFO:tasks.cephadm:Checking cluster log for badness... 2024-08-08T19:04:39.170 DEBUG:teuthology.orchestra.run.smithi062:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/d30482f6-55b8-11ef-bccd-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-08-08T19:04:39.196 INFO:teuthology.orchestra.run.smithi062.stderr:grep: /var/log/ceph/d30482f6-55b8-11ef-bccd-c7b262605968/ceph.log: No such file or directory 2024-08-08T19:04:39.198 INFO:tasks.cephadm:Compressing logs... 2024-08-08T19:04:39.198 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T19:04:39.241 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T19:04:39.263 INFO:teuthology.orchestra.run.smithi062.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-08-08T19:04:39.265 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-08-08T19:04:39.265 INFO:teuthology.orchestra.run.smithi062.stderr:real 0m0.012s 2024-08-08T19:04:39.266 INFO:teuthology.orchestra.run.smithi062.stderr:user 0m0.013s 2024-08-08T19:04:39.266 INFO:teuthology.orchestra.run.smithi062.stderr:sys 0m0.009s 2024-08-08T19:04:39.269 INFO:teuthology.orchestra.run.smithi131.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-08-08T19:04:39.269 INFO:teuthology.orchestra.run.smithi131.stderr:: No such file or directory 2024-08-08T19:04:39.269 INFO:teuthology.orchestra.run.smithi131.stderr:/var/log/ceph/cephadm.log: 56.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-08-08T19:04:39.271 INFO:teuthology.orchestra.run.smithi131.stderr: 2024-08-08T19:04:39.271 INFO:teuthology.orchestra.run.smithi131.stderr:real 0m0.013s 2024-08-08T19:04:39.272 INFO:teuthology.orchestra.run.smithi131.stderr:user 0m0.013s 2024-08-08T19:04:39.272 INFO:teuthology.orchestra.run.smithi131.stderr:sys 0m0.011s 2024-08-08T19:04:39.272 INFO:tasks.cephadm:Archiving logs... 2024-08-08T19:04:39.272 DEBUG:teuthology.misc:Transferring archived files from smithi062:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi/7844217/remote/smithi062/log 2024-08-08T19:04:39.273 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /var/log/ceph -- . 2024-08-08T19:04:39.332 DEBUG:teuthology.misc:Transferring archived files from smithi131:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi/7844217/remote/smithi131/log 2024-08-08T19:04:39.333 DEBUG:teuthology.orchestra.run.smithi131:> sudo tar c -f - -C /var/log/ceph -- . 2024-08-08T19:04:39.362 INFO:tasks.cephadm:Removing cluster... 2024-08-08T19:04:39.363 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d30482f6-55b8-11ef-bccd-c7b262605968 --force 2024-08-08T19:04:39.577 INFO:teuthology.orchestra.run.smithi062.stdout:Deleting cluster with fsid: d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:39.700 DEBUG:teuthology.orchestra.run.smithi131:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d30482f6-55b8-11ef-bccd-c7b262605968 --force 2024-08-08T19:04:39.901 INFO:teuthology.orchestra.run.smithi131.stdout:Deleting cluster with fsid: d30482f6-55b8-11ef-bccd-c7b262605968 2024-08-08T19:04:40.019 INFO:tasks.cephadm:Removing cephadm ... 2024-08-08T19:04:40.019 DEBUG:teuthology.orchestra.run.smithi062:> rm -rf /home/ubuntu/cephtest/cephadm 2024-08-08T19:04:40.035 DEBUG:teuthology.orchestra.run.smithi131:> rm -rf /home/ubuntu/cephtest/cephadm 2024-08-08T19:04:40.050 INFO:tasks.cephadm:Teardown complete 2024-08-08T19:04:40.051 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 778, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a -v bootstrap --fsid d30482f6-55b8-11ef-bccd-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 2302, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.10/contextlib.py", line 153, in __exit__ self.gen.throw(typ, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 1930, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 865, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 5: 'sudo systemctl stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062' 2024-08-08T19:04:40.239 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=86d9a0b46c0442c48d6662f025660e1f Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 778, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:de50a7c969c464f1af48fc4fd9870c061342194a -v bootstrap --fsid d30482f6-55b8-11ef-bccd-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 2302, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.10/contextlib.py", line 153, in __exit__ self.gen.throw(typ, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 1930, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_de50a7c969c464f1af48fc4fd9870c061342194a/qa/tasks/cephadm.py", line 865, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_7ca9115d33cdacbcf2252d46e62914563516007c/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 5: 'sudo systemctl stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062' 2024-08-08T19:04:40.246 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-08-08T19:04:40.255 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-08-08T19:04:40.277 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi062:/dev/vg_nvme/lv_1... 2024-08-08T19:04:40.278 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme disconnect -n lv_1 2024-08-08T19:04:40.428 INFO:teuthology.orchestra.run.smithi062.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-08-08T19:04:40.430 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi062:/dev/vg_nvme/lv_2... 2024-08-08T19:04:40.430 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme disconnect -n lv_2 2024-08-08T19:04:40.581 INFO:teuthology.orchestra.run.smithi062.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-08-08T19:04:40.582 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi062:/dev/vg_nvme/lv_3... 2024-08-08T19:04:40.583 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme disconnect -n lv_3 2024-08-08T19:04:40.748 INFO:teuthology.orchestra.run.smithi062.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-08-08T19:04:40.749 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi062:/dev/vg_nvme/lv_4... 2024-08-08T19:04:40.750 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme disconnect -n lv_4 2024-08-08T19:04:40.917 INFO:teuthology.orchestra.run.smithi062.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-08-08T19:04:40.919 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-08-08T19:04:40.919 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/scratch_devs 2024-08-08T19:04:40.945 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi131:/dev/vg_nvme/lv_1... 2024-08-08T19:04:40.946 DEBUG:teuthology.orchestra.run.smithi131:> sudo nvme disconnect -n lv_1 2024-08-08T19:04:41.091 INFO:teuthology.orchestra.run.smithi131.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-08-08T19:04:41.093 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi131:/dev/vg_nvme/lv_2... 2024-08-08T19:04:41.093 DEBUG:teuthology.orchestra.run.smithi131:> sudo nvme disconnect -n lv_2 2024-08-08T19:04:41.248 INFO:teuthology.orchestra.run.smithi131.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-08-08T19:04:41.250 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi131:/dev/vg_nvme/lv_3... 2024-08-08T19:04:41.250 DEBUG:teuthology.orchestra.run.smithi131:> sudo nvme disconnect -n lv_3 2024-08-08T19:04:41.419 INFO:teuthology.orchestra.run.smithi131.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-08-08T19:04:41.421 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi131:/dev/vg_nvme/lv_4... 2024-08-08T19:04:41.421 DEBUG:teuthology.orchestra.run.smithi131:> sudo nvme disconnect -n lv_4 2024-08-08T19:04:41.583 INFO:teuthology.orchestra.run.smithi131.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-08-08T19:04:41.585 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-08T19:04:41.585 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd of=/scratch_devs 2024-08-08T19:04:41.610 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-08-08T19:04:41.620 INFO:teuthology.task.clock:Checking final clock skew... 2024-08-08T19:04:41.621 DEBUG:teuthology.orchestra.run.smithi062:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-08-08T19:04:41.623 DEBUG:teuthology.orchestra.run.smithi131:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-08-08T19:04:41.635 INFO:teuthology.orchestra.run.smithi062.stderr:bash: line 1: ntpq: command not found 2024-08-08T19:04:41.639 INFO:teuthology.orchestra.run.smithi062.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-08T19:04:41.639 INFO:teuthology.orchestra.run.smithi062.stdout:=============================================================================== 2024-08-08T19:04:41.640 INFO:teuthology.orchestra.run.smithi062.stdout:^* hv01.front.sepia.ceph.com 3 6 37 42 +588us[ +475us] +/- 43ms 2024-08-08T19:04:41.640 INFO:teuthology.orchestra.run.smithi062.stdout:^+ hv02.front.sepia.ceph.com 3 6 37 41 -884us[ -884us] +/- 56ms 2024-08-08T19:04:41.640 INFO:teuthology.orchestra.run.smithi062.stdout:^+ hv03.front.sepia.ceph.com 3 6 37 41 +654us[ +654us] +/- 84ms 2024-08-08T19:04:41.640 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:04:41.664 INFO:teuthology.orchestra.run.smithi131.stderr:bash: line 1: ntpq: command not found 2024-08-08T19:04:41.668 INFO:teuthology.orchestra.run.smithi131.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-08T19:04:41.668 INFO:teuthology.orchestra.run.smithi131.stdout:=============================================================================== 2024-08-08T19:04:41.668 INFO:teuthology.orchestra.run.smithi131.stdout:^* hv01.front.sepia.ceph.com 3 6 37 42 +473us[ +523us] +/- 43ms 2024-08-08T19:04:41.668 INFO:teuthology.orchestra.run.smithi131.stdout:^+ hv02.front.sepia.ceph.com 3 6 37 42 -1054us[-1054us] +/- 56ms 2024-08-08T19:04:41.668 INFO:teuthology.orchestra.run.smithi131.stdout:^+ hv03.front.sepia.ceph.com 3 6 37 41 +501us[ +501us] +/- 84ms 2024-08-08T19:04:41.668 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-08-08T19:04:41.669 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-08-08T19:04:41.680 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-08-08T19:04:41.681 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-08-08T19:04:41.695 DEBUG:teuthology.orchestra.run.smithi062:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-08-08T19:04:41.755 DEBUG:teuthology.orchestra.run.smithi131:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-08-08T19:04:41.815 DEBUG:teuthology.orchestra.run.smithi062:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-08-08T19:04:41.843 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-08T19:04:41.843 DEBUG:teuthology.orchestra.run.smithi131:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-08-08T19:04:41.871 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-08T19:04:41.871 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-08-08T19:04:41.879 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-08-08T19:04:41.893 INFO:teuthology.task.internal:Duration was 394.729493 seconds 2024-08-08T19:04:41.893 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-08-08T19:04:41.906 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-08-08T19:04:41.906 DEBUG:teuthology.orchestra.run.smithi062:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-08-08T19:04:41.909 DEBUG:teuthology.orchestra.run.smithi131:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-08-08T19:04:41.947 INFO:teuthology.orchestra.run.smithi062.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-08T19:04:41.950 INFO:teuthology.orchestra.run.smithi131.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-08T19:04:42.209 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-08-08T19:04:42.210 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi062.front.sepia.ceph.com 2024-08-08T19:04:42.210 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T19:04:42.231 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi131.front.sepia.ceph.com 2024-08-08T19:04:42.232 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T19:04:42.272 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-08-08T19:04:42.272 DEBUG:teuthology.orchestra.run.smithi062:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-08-08T19:04:42.275 DEBUG:teuthology.orchestra.run.smithi131:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-08-08T19:04:42.340 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-08-08T19:04:42.340 DEBUG:teuthology.orchestra.run.smithi062:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-08-08T19:04:42.343 DEBUG:teuthology.orchestra.run.smithi131:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-08-08T19:04:42.475 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-08-08T19:04:42.483 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-08-08T19:04:42.483 DEBUG:teuthology.orchestra.run.smithi062:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-08-08T19:04:42.509 DEBUG:teuthology.orchestra.run.smithi131:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-08-08T19:04:42.535 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-08-08T19:04:42.545 DEBUG:teuthology.orchestra.run.smithi062:> 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-08-08T19:04:42.552 DEBUG:teuthology.orchestra.run.smithi131:> 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-08-08T19:04:42.573 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern = core 2024-08-08T19:04:42.598 INFO:teuthology.orchestra.run.smithi131.stdout:kernel.core_pattern = core 2024-08-08T19:04:42.630 DEBUG:teuthology.orchestra.run.smithi062:> test -e /home/ubuntu/cephtest/archive/coredump 2024-08-08T19:04:42.661 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-08T19:04:42.661 DEBUG:teuthology.orchestra.run.smithi131:> test -e /home/ubuntu/cephtest/archive/coredump 2024-08-08T19:04:42.684 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-08T19:04:42.685 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-08-08T19:04:42.694 INFO:teuthology.task.internal:Transferring archived files... 2024-08-08T19:04:42.695 DEBUG:teuthology.misc:Transferring archived files from smithi062:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi/7844217/remote/smithi062 2024-08-08T19:04:42.695 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-08-08T19:04:42.736 DEBUG:teuthology.misc:Transferring archived files from smithi131:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-08-08_17:54:46-orch:cephadm-wip-guits-main-2024-08-08-1205-distro-default-smithi/7844217/remote/smithi131 2024-08-08T19:04:42.736 DEBUG:teuthology.orchestra.run.smithi131:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-08-08T19:04:42.769 INFO:teuthology.task.internal:Removing archive directory... 2024-08-08T19:04:42.770 DEBUG:teuthology.orchestra.run.smithi062:> rm -rf -- /home/ubuntu/cephtest/archive 2024-08-08T19:04:42.773 DEBUG:teuthology.orchestra.run.smithi131:> rm -rf -- /home/ubuntu/cephtest/archive 2024-08-08T19:04:42.819 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-08-08T19:04:42.832 INFO:teuthology.task.internal:Not uploading archives. 2024-08-08T19:04:42.832 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-08-08T19:04:42.844 INFO:teuthology.task.internal:Tidying up after the test... 2024-08-08T19:04:42.844 DEBUG:teuthology.orchestra.run.smithi062:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-08-08T19:04:42.847 DEBUG:teuthology.orchestra.run.smithi131:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-08-08T19:04:42.860 INFO:teuthology.orchestra.run.smithi062.stdout: 262165 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Aug 8 19:04 /home/ubuntu/cephtest 2024-08-08T19:04:42.874 INFO:teuthology.orchestra.run.smithi131.stdout: 265859 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Aug 8 19:04 /home/ubuntu/cephtest 2024-08-08T19:04:42.875 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-08-08T19:04:42.887 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-08-08T19:04:42.922 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 394.7294933795929 failure_reason: 'Command failed on smithi062 with status 5: ''sudo systemctl stop ceph-d30482f6-55b8-11ef-bccd-c7b262605968@mon.smithi062''' owner: scheduled_gabrioux@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=86d9a0b46c0442c48d6662f025660e1f status: fail success: false 2024-08-08T19:04:42.922 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-08-08T19:04:43.006 INFO:teuthology.run:FAIL