2026-02-23T07:00:07.416 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-23T07:00:07.432 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-23T07:00:07.511 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65112 branch: wip-shweta-testing-2026-02-19-2025 description: orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: Shweta.Bhosale1@ibm.com first_in_suite: false flavor: default job_id: '65112' kernel: branch: distro kdb: 1 sha1: distro last_in_suite: false machine_type: trial name: shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-shweta-testing-2026-02-19-2025 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: 244ee61d76a715c3ac0d60eeb3321aefb91c3511 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 244ee61d76a715c3ac0d60eeb3321aefb91c3511 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: wip-shweta-testing-2026-02-19-2025 sha1: 244ee61d76a715c3ac0d60eeb3321aefb91c3511 owner: scheduled_shwetabhosale@soko04.front.sepia.ceph.com priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 2678 sha1: 244ee61d76a715c3ac0d60eeb3321aefb91c3511 sleep_before_teardown: 0 subset: 1/20 suite: orch:cephadm suite_branch: wip-shweta-testing-2026-02-19-2025 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_244ee61d76a715c3ac0d60eeb3321aefb91c3511/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: 244ee61d76a715c3ac0d60eeb3321aefb91c3511 targets: trial010.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGkSnWMO0BJuEI/HAEH7G3E9RBX70SFMKJMh4FjbwS3nYPk2gUTdU35N/sKxTsU8sG8CvmF3/YZ3plEty0E5D1g= trial040.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCQuXkNYSEFB8muF+jra1anzIOCfWY13eV38/cAVVUp0URpfuQjTZ1vkaIUaN48Tdd7yLyKGCf96SjO2SknyWfM= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - 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 - 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}} - 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 - template.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" - 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: fa17720d0088c3ac28e473468bfc79eeaff5cd38 timestamp: 2026-02-23_05:55:57 tube: trial user: shwetabhosale verbose: false worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.3318653 2026-02-23T07:00:07.511 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_244ee61d76a715c3ac0d60eeb3321aefb91c3511/qa; will attempt to use it 2026-02-23T07:00:07.512 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_244ee61d76a715c3ac0d60eeb3321aefb91c3511/qa/tasks 2026-02-23T07:00:07.512 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-23T07:00:07.514 INFO:teuthology.task.internal:Checking packages... 2026-02-23T07:00:07.514 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '244ee61d76a715c3ac0d60eeb3321aefb91c3511' 2026-02-23T07:00:07.514 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-23T07:00:07.514 INFO:teuthology.packaging:ref: None 2026-02-23T07:00:07.514 INFO:teuthology.packaging:tag: None 2026-02-23T07:00:07.514 INFO:teuthology.packaging:branch: wip-shweta-testing-2026-02-19-2025 2026-02-23T07:00:07.514 INFO:teuthology.packaging:sha1: 244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T07:00:07.514 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-shweta-testing-2026-02-19-2025 2026-02-23T07:00:07.640 INFO:teuthology.task.internal:Found packages for ceph version 20.3.0-5338.g244ee61d 2026-02-23T07:00:07.641 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-23T07:00:07.653 INFO:teuthology.task.internal:no buildpackages task found 2026-02-23T07:00:07.653 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-23T07:00:07.667 INFO:teuthology.task.internal:Saving configuration 2026-02-23T07:00:07.680 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-23T07:00:07.692 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-23T07:00:07.767 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial010.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65112', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-23 06:56:37.960142', 'locked_by': 'scheduled_shwetabhosale@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGkSnWMO0BJuEI/HAEH7G3E9RBX70SFMKJMh4FjbwS3nYPk2gUTdU35N/sKxTsU8sG8CvmF3/YZ3plEty0E5D1g='} 2026-02-23T07:00:07.824 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial040.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65112', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-23 06:56:37.960752', 'locked_by': 'scheduled_shwetabhosale@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCQuXkNYSEFB8muF+jra1anzIOCfWY13eV38/cAVVUp0URpfuQjTZ1vkaIUaN48Tdd7yLyKGCf96SjO2SknyWfM='} 2026-02-23T07:00:07.824 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-23T07:00:07.835 INFO:teuthology.task.internal:roles: ubuntu@trial010.front.sepia.ceph.com - ['host.a', 'client.0'] 2026-02-23T07:00:07.835 INFO:teuthology.task.internal:roles: ubuntu@trial040.front.sepia.ceph.com - ['host.b', 'client.1'] 2026-02-23T07:00:07.835 INFO:teuthology.run_tasks:Running task console_log... 2026-02-23T07:00:07.973 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x78d318e158a0>, signals=[15]) 2026-02-23T07:00:07.973 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-23T07:00:07.985 INFO:teuthology.task.internal:Opening connections... 2026-02-23T07:00:07.985 DEBUG:teuthology.task.internal:connecting to ubuntu@trial010.front.sepia.ceph.com 2026-02-23T07:00:07.986 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial010.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-23T07:00:08.049 DEBUG:teuthology.task.internal:connecting to ubuntu@trial040.front.sepia.ceph.com 2026-02-23T07:00:08.049 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-23T07:00:08.110 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-23T07:00:08.122 DEBUG:teuthology.orchestra.run.trial010:> uname -m 2026-02-23T07:00:08.137 INFO:teuthology.orchestra.run.trial010.stdout:x86_64 2026-02-23T07:00:08.137 DEBUG:teuthology.orchestra.run.trial010:> cat /etc/os-release 2026-02-23T07:00:08.192 INFO:teuthology.orchestra.run.trial010.stdout:NAME="CentOS Stream" 2026-02-23T07:00:08.192 INFO:teuthology.orchestra.run.trial010.stdout:VERSION="9" 2026-02-23T07:00:08.192 INFO:teuthology.orchestra.run.trial010.stdout:ID="centos" 2026-02-23T07:00:08.192 INFO:teuthology.orchestra.run.trial010.stdout:ID_LIKE="rhel fedora" 2026-02-23T07:00:08.192 INFO:teuthology.orchestra.run.trial010.stdout:VERSION_ID="9" 2026-02-23T07:00:08.192 INFO:teuthology.orchestra.run.trial010.stdout:PLATFORM_ID="platform:el9" 2026-02-23T07:00:08.192 INFO:teuthology.orchestra.run.trial010.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-23T07:00:08.192 INFO:teuthology.orchestra.run.trial010.stdout:ANSI_COLOR="0;31" 2026-02-23T07:00:08.193 INFO:teuthology.orchestra.run.trial010.stdout:LOGO="fedora-logo-icon" 2026-02-23T07:00:08.193 INFO:teuthology.orchestra.run.trial010.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-23T07:00:08.193 INFO:teuthology.orchestra.run.trial010.stdout:HOME_URL="https://centos.org/" 2026-02-23T07:00:08.193 INFO:teuthology.orchestra.run.trial010.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-23T07:00:08.193 INFO:teuthology.orchestra.run.trial010.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-23T07:00:08.193 INFO:teuthology.orchestra.run.trial010.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-23T07:00:08.193 INFO:teuthology.lock.ops:Updating trial010.front.sepia.ceph.com on lock server 2026-02-23T07:00:08.266 DEBUG:teuthology.orchestra.run.trial040:> uname -m 2026-02-23T07:00:08.281 INFO:teuthology.orchestra.run.trial040.stdout:x86_64 2026-02-23T07:00:08.281 DEBUG:teuthology.orchestra.run.trial040:> cat /etc/os-release 2026-02-23T07:00:08.337 INFO:teuthology.orchestra.run.trial040.stdout:NAME="CentOS Stream" 2026-02-23T07:00:08.337 INFO:teuthology.orchestra.run.trial040.stdout:VERSION="9" 2026-02-23T07:00:08.337 INFO:teuthology.orchestra.run.trial040.stdout:ID="centos" 2026-02-23T07:00:08.337 INFO:teuthology.orchestra.run.trial040.stdout:ID_LIKE="rhel fedora" 2026-02-23T07:00:08.337 INFO:teuthology.orchestra.run.trial040.stdout:VERSION_ID="9" 2026-02-23T07:00:08.337 INFO:teuthology.orchestra.run.trial040.stdout:PLATFORM_ID="platform:el9" 2026-02-23T07:00:08.338 INFO:teuthology.orchestra.run.trial040.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-23T07:00:08.338 INFO:teuthology.orchestra.run.trial040.stdout:ANSI_COLOR="0;31" 2026-02-23T07:00:08.338 INFO:teuthology.orchestra.run.trial040.stdout:LOGO="fedora-logo-icon" 2026-02-23T07:00:08.338 INFO:teuthology.orchestra.run.trial040.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-23T07:00:08.338 INFO:teuthology.orchestra.run.trial040.stdout:HOME_URL="https://centos.org/" 2026-02-23T07:00:08.338 INFO:teuthology.orchestra.run.trial040.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-23T07:00:08.338 INFO:teuthology.orchestra.run.trial040.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-23T07:00:08.338 INFO:teuthology.orchestra.run.trial040.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-23T07:00:08.338 INFO:teuthology.lock.ops:Updating trial040.front.sepia.ceph.com on lock server 2026-02-23T07:00:08.413 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-23T07:00:08.429 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-23T07:00:08.440 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-23T07:00:08.440 DEBUG:teuthology.orchestra.run.trial010:> test '!' -e /home/ubuntu/cephtest 2026-02-23T07:00:08.442 DEBUG:teuthology.orchestra.run.trial040:> test '!' -e /home/ubuntu/cephtest 2026-02-23T07:00:08.457 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-23T07:00:08.468 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-23T07:00:08.469 DEBUG:teuthology.orchestra.run.trial010:> test -z $(ls -A /var/lib/ceph) 2026-02-23T07:00:08.498 DEBUG:teuthology.orchestra.run.trial040:> test -z $(ls -A /var/lib/ceph) 2026-02-23T07:00:08.514 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-23T07:00:08.665 INFO:teuthology.run_tasks:Running task kernel... 2026-02-23T07:00:08.685 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'} 2026-02-23T07:00:08.685 INFO:teuthology.task.kernel:config {'host.a': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}, 'host.b': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}}, timeout 300 2026-02-23T07:00:08.685 DEBUG:teuthology.orchestra.run.trial010:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-23T07:00:08.685 DEBUG:teuthology.orchestra.run.trial040:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-23T07:00:08.700 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T07:00:08.700 DEBUG:teuthology.orchestra.run.trial010:> uname -r 2026-02-23T07:00:08.700 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T07:00:08.700 DEBUG:teuthology.orchestra.run.trial040:> uname -r 2026-02-23T07:00:08.755 INFO:teuthology.orchestra.run.trial010.stdout:5.14.0-681.el9.x86_64 2026-02-23T07:00:08.755 INFO:teuthology.task.kernel:Running kernel on trial010: 5.14.0-681.el9.x86_64 2026-02-23T07:00:08.755 DEBUG:teuthology.orchestra.run.trial010:> sudo yum install -y kernel 2026-02-23T07:00:08.756 INFO:teuthology.orchestra.run.trial040.stdout:5.14.0-681.el9.x86_64 2026-02-23T07:00:08.756 INFO:teuthology.task.kernel:Running kernel on trial040: 5.14.0-681.el9.x86_64 2026-02-23T07:00:08.756 DEBUG:teuthology.orchestra.run.trial040:> sudo yum install -y kernel 2026-02-23T07:00:09.561 INFO:teuthology.orchestra.run.trial040.stdout:CentOS Stream 9 - BaseOS 21 MB/s | 8.9 MB 00:00 2026-02-23T07:00:09.654 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - BaseOS 17 MB/s | 8.9 MB 00:00 2026-02-23T07:00:13.062 INFO:teuthology.orchestra.run.trial040.stdout:CentOS Stream 9 - AppStream 9.0 MB/s | 27 MB 00:02 2026-02-23T07:00:13.430 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - AppStream 8.2 MB/s | 27 MB 00:03 2026-02-23T07:00:15.795 INFO:teuthology.orchestra.run.trial040.stdout:CentOS Stream 9 - CRB 21 MB/s | 7.8 MB 00:00 2026-02-23T07:00:17.122 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - CRB 5.8 MB/s | 7.8 MB 00:01 2026-02-23T07:00:17.707 INFO:teuthology.orchestra.run.trial040.stdout:CentOS Stream 9 - Extras packages 17 kB/s | 20 kB 00:01 2026-02-23T07:00:17.964 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - Extras packages 170 kB/s | 20 kB 00:00 2026-02-23T07:00:19.012 INFO:teuthology.orchestra.run.trial010.stdout:Extra Packages for Enterprise Linux 21 MB/s | 20 MB 00:00 2026-02-23T07:00:20.330 INFO:teuthology.orchestra.run.trial040.stdout:Extra Packages for Enterprise Linux 7.9 MB/s | 20 MB 00:02 2026-02-23T07:00:22.178 INFO:teuthology.orchestra.run.trial010.stdout:lab-extras 1.3 MB/s | 50 kB 00:00 2026-02-23T07:00:23.197 INFO:teuthology.orchestra.run.trial010.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-23T07:00:23.197 INFO:teuthology.orchestra.run.trial010.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-23T07:00:23.216 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-23T07:00:23.217 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-23T07:00:23.217 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-23T07:00:23.241 DEBUG:teuthology.orchestra.run.trial010:> echo no | sudo yum reinstall kernel || true 2026-02-23T07:00:23.516 INFO:teuthology.orchestra.run.trial040.stdout:lab-extras 2.5 MB/s | 50 kB 00:00 2026-02-23T07:00:23.578 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:01 ago on Mon 23 Feb 2026 07:00:22 AM UTC. 2026-02-23T07:00:23.657 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-23T07:00:23.658 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-23T07:00:23.658 INFO:teuthology.orchestra.run.trial010.stdout: Package Architecture Version Repository Size 2026-02-23T07:00:23.659 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-23T07:00:23.659 INFO:teuthology.orchestra.run.trial010.stdout:Reinstalling: 2026-02-23T07:00:23.659 INFO:teuthology.orchestra.run.trial010.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-23T07:00:23.659 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:00:23.659 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-23T07:00:23.659 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-23T07:00:23.659 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:00:23.659 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 803 k 2026-02-23T07:00:23.659 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 0 2026-02-23T07:00:23.660 INFO:teuthology.orchestra.run.trial010.stderr:Operation aborted. 2026-02-23T07:00:23.678 INFO:teuthology.orchestra.run.trial010.stdout:Is this ok [y/N]: 2026-02-23T07:00:23.678 DEBUG:teuthology.orchestra.run.trial010:> sudo yum reinstall -y kernel || true 2026-02-23T07:00:23.972 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:01 ago on Mon 23 Feb 2026 07:00:22 AM UTC. 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout: Package Architecture Version Repository Size 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout:Reinstalling: 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 803 k 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 0 2026-02-23T07:00:24.052 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-23T07:00:24.524 INFO:teuthology.orchestra.run.trial040.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-23T07:00:24.524 INFO:teuthology.orchestra.run.trial040.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-23T07:00:24.543 INFO:teuthology.orchestra.run.trial040.stdout:Dependencies resolved. 2026-02-23T07:00:24.544 INFO:teuthology.orchestra.run.trial040.stdout:Nothing to do. 2026-02-23T07:00:24.544 INFO:teuthology.orchestra.run.trial040.stdout:Complete! 2026-02-23T07:00:24.567 DEBUG:teuthology.orchestra.run.trial040:> echo no | sudo yum reinstall kernel || true 2026-02-23T07:00:24.867 INFO:teuthology.orchestra.run.trial040.stdout:Last metadata expiration check: 0:00:01 ago on Mon 23 Feb 2026 07:00:23 AM UTC. 2026-02-23T07:00:24.950 INFO:teuthology.orchestra.run.trial040.stdout:Dependencies resolved. 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout:================================================================================ 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout: Package Architecture Version Repository Size 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout:================================================================================ 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout:Reinstalling: 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout:Transaction Summary 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout:================================================================================ 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout:Total download size: 803 k 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stdout:Installed size: 0 2026-02-23T07:00:24.951 INFO:teuthology.orchestra.run.trial040.stderr:Operation aborted. 2026-02-23T07:00:24.971 INFO:teuthology.orchestra.run.trial040.stdout:Is this ok [y/N]: 2026-02-23T07:00:24.971 DEBUG:teuthology.orchestra.run.trial040:> sudo yum reinstall -y kernel || true 2026-02-23T07:00:25.268 INFO:teuthology.orchestra.run.trial040.stdout:Last metadata expiration check: 0:00:02 ago on Mon 23 Feb 2026 07:00:23 AM UTC. 2026-02-23T07:00:25.347 INFO:teuthology.orchestra.run.trial040.stdout:Dependencies resolved. 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout:================================================================================ 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout: Package Architecture Version Repository Size 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout:================================================================================ 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout:Reinstalling: 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout:Transaction Summary 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout:================================================================================ 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout:Total download size: 803 k 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout:Installed size: 0 2026-02-23T07:00:25.348 INFO:teuthology.orchestra.run.trial040.stdout:Downloading Packages: 2026-02-23T07:00:25.465 INFO:teuthology.orchestra.run.trial010.stdout:kernel-5.14.0-681.el9.x86_64.rpm 594 kB/s | 803 kB 00:01 2026-02-23T07:00:25.465 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-23T07:00:25.466 INFO:teuthology.orchestra.run.trial010.stdout:Total 568 kB/s | 803 kB 00:01 2026-02-23T07:00:25.475 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-23T07:00:25.508 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-23T07:00:25.508 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-23T07:00:25.513 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-23T07:00:25.513 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-23T07:00:25.537 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-23T07:00:25.541 INFO:teuthology.orchestra.run.trial010.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-23T07:00:25.541 INFO:teuthology.orchestra.run.trial010.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-23T07:00:25.651 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-23T07:00:25.651 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-23T07:00:25.708 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-23T07:00:25.708 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:00:25.708 INFO:teuthology.orchestra.run.trial010.stdout:Reinstalled: 2026-02-23T07:00:25.708 INFO:teuthology.orchestra.run.trial010.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-23T07:00:25.708 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:00:25.708 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-23T07:00:25.736 DEBUG:teuthology.orchestra.run.trial010:> rpm -q kernel | sort -rV | head -n 1 2026-02-23T07:00:25.760 INFO:teuthology.orchestra.run.trial010.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-23T07:00:25.761 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-23T07:00:25.761 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-23T07:00:25.761 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-23T07:00:25.761 DEBUG:teuthology.orchestra.run.trial010:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-23T07:00:25.824 INFO:teuthology.orchestra.run.trial010.stdout:ttyS1 2026-02-23T07:00:25.855 DEBUG:teuthology.parallel:result is None 2026-02-23T07:00:26.908 INFO:teuthology.orchestra.run.trial040.stdout:kernel-5.14.0-681.el9.x86_64.rpm 535 kB/s | 803 kB 00:01 2026-02-23T07:00:26.908 INFO:teuthology.orchestra.run.trial040.stdout:-------------------------------------------------------------------------------- 2026-02-23T07:00:26.908 INFO:teuthology.orchestra.run.trial040.stdout:Total 515 kB/s | 803 kB 00:01 2026-02-23T07:00:26.918 INFO:teuthology.orchestra.run.trial040.stdout:Running transaction check 2026-02-23T07:00:26.950 INFO:teuthology.orchestra.run.trial040.stdout:Transaction check succeeded. 2026-02-23T07:00:26.950 INFO:teuthology.orchestra.run.trial040.stdout:Running transaction test 2026-02-23T07:00:26.955 INFO:teuthology.orchestra.run.trial040.stdout:Transaction test succeeded. 2026-02-23T07:00:26.955 INFO:teuthology.orchestra.run.trial040.stdout:Running transaction 2026-02-23T07:00:26.978 INFO:teuthology.orchestra.run.trial040.stdout: Preparing : 1/1 2026-02-23T07:00:26.982 INFO:teuthology.orchestra.run.trial040.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-23T07:00:26.982 INFO:teuthology.orchestra.run.trial040.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-23T07:00:27.090 INFO:teuthology.orchestra.run.trial040.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-23T07:00:27.091 INFO:teuthology.orchestra.run.trial040.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-23T07:00:27.143 INFO:teuthology.orchestra.run.trial040.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-23T07:00:27.143 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:00:27.143 INFO:teuthology.orchestra.run.trial040.stdout:Reinstalled: 2026-02-23T07:00:27.143 INFO:teuthology.orchestra.run.trial040.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-23T07:00:27.143 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:00:27.143 INFO:teuthology.orchestra.run.trial040.stdout:Complete! 2026-02-23T07:00:27.170 DEBUG:teuthology.orchestra.run.trial040:> rpm -q kernel | sort -rV | head -n 1 2026-02-23T07:00:27.234 INFO:teuthology.orchestra.run.trial040.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-23T07:00:27.235 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-23T07:00:27.235 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-23T07:00:27.235 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-23T07:00:27.235 DEBUG:teuthology.orchestra.run.trial040:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-23T07:00:27.298 INFO:teuthology.orchestra.run.trial040.stdout:ttyS1 2026-02-23T07:00:27.323 DEBUG:teuthology.parallel:result is None 2026-02-23T07:00:27.323 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-23T07:00:27.335 INFO:teuthology.task.internal:Creating test directory... 2026-02-23T07:00:27.335 DEBUG:teuthology.orchestra.run.trial010:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-23T07:00:27.336 DEBUG:teuthology.orchestra.run.trial040:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-23T07:00:27.380 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-23T07:00:27.390 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-23T07:00:27.400 INFO:teuthology.task.internal:Creating archive directory... 2026-02-23T07:00:27.401 DEBUG:teuthology.orchestra.run.trial010:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-23T07:00:27.403 DEBUG:teuthology.orchestra.run.trial040:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-23T07:00:27.442 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-23T07:00:27.456 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-23T07:00:27.456 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:00:27.460 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:00:27.482 INFO:teuthology.orchestra.run.trial010.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-23T07:00:27.491 INFO:teuthology.orchestra.run.trial010.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-23T07:00:27.500 INFO:teuthology.orchestra.run.trial040.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-23T07:00:27.508 INFO:teuthology.orchestra.run.trial040.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-23T07:00:27.509 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-23T07:00:27.520 INFO:teuthology.task.internal:Configuring sudo... 2026-02-23T07:00:27.520 DEBUG:teuthology.orchestra.run.trial010:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-23T07:00:27.535 DEBUG:teuthology.orchestra.run.trial040:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-23T07:00:27.572 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-23T07:00:27.584 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-23T07:00:27.584 DEBUG:teuthology.orchestra.run.trial010:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-23T07:00:27.599 DEBUG:teuthology.orchestra.run.trial040:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-23T07:00:27.629 DEBUG:teuthology.orchestra.run.trial010:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T07:00:27.740 DEBUG:teuthology.orchestra.run.trial010:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T07:00:27.763 DEBUG:teuthology.orchestra.run.trial010:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T07:00:27.899 DEBUG:teuthology.orchestra.run.trial010:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T07:00:27.923 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:00:27.923 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-23T07:00:27.986 DEBUG:teuthology.orchestra.run.trial040:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T07:00:28.170 DEBUG:teuthology.orchestra.run.trial040:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T07:00:28.194 DEBUG:teuthology.orchestra.run.trial040:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T07:00:28.345 DEBUG:teuthology.orchestra.run.trial040:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T07:00:28.368 DEBUG:teuthology.orchestra.run.trial040:> set -ex 2026-02-23T07:00:28.368 DEBUG:teuthology.orchestra.run.trial040:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-23T07:00:28.431 DEBUG:teuthology.orchestra.run.trial010:> sudo service rsyslog restart 2026-02-23T07:00:28.433 DEBUG:teuthology.orchestra.run.trial040:> sudo service rsyslog restart 2026-02-23T07:00:28.460 INFO:teuthology.orchestra.run.trial010.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-23T07:00:28.498 INFO:teuthology.orchestra.run.trial040.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-23T07:00:29.018 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-23T07:00:29.031 INFO:teuthology.task.internal:Starting timer... 2026-02-23T07:00:29.031 INFO:teuthology.run_tasks:Running task pcp... 2026-02-23T07:00:29.052 INFO:teuthology.run_tasks:Running task selinux... 2026-02-23T07:00:29.069 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']} 2026-02-23T07:00:29.069 DEBUG:teuthology.orchestra.run.trial010:> sudo service auditd rotate 2026-02-23T07:00:29.098 INFO:teuthology.orchestra.run.trial010.stdout:Rotating logs: 2026-02-23T07:00:29.099 DEBUG:teuthology.orchestra.run.trial040:> sudo service auditd rotate 2026-02-23T07:00:29.127 INFO:teuthology.orchestra.run.trial040.stdout:Rotating logs: 2026-02-23T07:00:29.129 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-23T07:00:29.129 DEBUG:teuthology.orchestra.run.trial010:> /usr/sbin/getenforce 2026-02-23T07:00:29.156 INFO:teuthology.orchestra.run.trial010.stdout:Permissive 2026-02-23T07:00:29.157 DEBUG:teuthology.orchestra.run.trial040:> /usr/sbin/getenforce 2026-02-23T07:00:29.184 INFO:teuthology.orchestra.run.trial040.stdout:Permissive 2026-02-23T07:00:29.185 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@trial010.front.sepia.ceph.com': 'permissive', 'ubuntu@trial040.front.sepia.ceph.com': 'permissive'} 2026-02-23T07:00:29.185 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:00:29.221 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T07:00:29.221 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:00:29.248 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T07:00:29.249 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-23T07:00:29.249 DEBUG:teuthology.orchestra.run.trial010:> sudo /usr/sbin/setenforce permissive 2026-02-23T07:00:29.284 DEBUG:teuthology.orchestra.run.trial040:> sudo /usr/sbin/setenforce permissive 2026-02-23T07:00:29.313 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-23T07:00:29.325 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2026-02-23T07:00:29.328 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2026-02-23T07:00:29.514 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-23T07:00:29.525 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'}]}] 2026-02-23T07:00:29.527 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial010.front.sepia.ceph.com,trial040.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-23T07:03:03.228 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial010.front.sepia.ceph.com'), Remote(name='ubuntu@trial040.front.sepia.ceph.com')] 2026-02-23T07:03:03.228 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial010.front.sepia.ceph.com' 2026-02-23T07:03:03.229 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial010.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-23T07:03:03.299 DEBUG:teuthology.orchestra.run.trial010:> true 2026-02-23T07:03:03.375 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial010.front.sepia.ceph.com' 2026-02-23T07:03:03.375 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial040.front.sepia.ceph.com' 2026-02-23T07:03:03.375 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-23T07:03:03.450 DEBUG:teuthology.orchestra.run.trial040:> true 2026-02-23T07:03:03.529 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial040.front.sepia.ceph.com' 2026-02-23T07:03:03.529 INFO:teuthology.run_tasks:Running task clock... 2026-02-23T07:03:03.541 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-23T07:03:03.541 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-23T07:03:03.541 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:03:03.543 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-23T07:03:03.543 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:03:03.569 INFO:teuthology.orchestra.run.trial010.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-23T07:03:03.581 INFO:teuthology.orchestra.run.trial010.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-23T07:03:03.595 INFO:teuthology.orchestra.run.trial040.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-23T07:03:03.602 INFO:teuthology.orchestra.run.trial010.stderr:sudo: ntpd: command not found 2026-02-23T07:03:03.607 INFO:teuthology.orchestra.run.trial040.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-23T07:03:03.612 INFO:teuthology.orchestra.run.trial010.stdout:506 Cannot talk to daemon 2026-02-23T07:03:03.624 INFO:teuthology.orchestra.run.trial010.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-23T07:03:03.627 INFO:teuthology.orchestra.run.trial040.stderr:sudo: ntpd: command not found 2026-02-23T07:03:03.636 INFO:teuthology.orchestra.run.trial010.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-23T07:03:03.636 INFO:teuthology.orchestra.run.trial040.stdout:506 Cannot talk to daemon 2026-02-23T07:03:03.647 INFO:teuthology.orchestra.run.trial040.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-23T07:03:03.658 INFO:teuthology.orchestra.run.trial040.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-23T07:03:03.685 INFO:teuthology.orchestra.run.trial010.stderr:bash: line 1: ntpq: command not found 2026-02-23T07:03:03.687 INFO:teuthology.orchestra.run.trial010.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-23T07:03:03.687 INFO:teuthology.orchestra.run.trial010.stdout:=============================================================================== 2026-02-23T07:03:03.704 INFO:teuthology.orchestra.run.trial040.stderr:bash: line 1: ntpq: command not found 2026-02-23T07:03:03.706 INFO:teuthology.orchestra.run.trial040.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-23T07:03:03.706 INFO:teuthology.orchestra.run.trial040.stdout:=============================================================================== 2026-02-23T07:03:03.706 INFO:teuthology.run_tasks:Running task pexec... 2026-02-23T07:03:03.720 INFO:teuthology.task.pexec:Executing custom commands... 2026-02-23T07:03:03.720 DEBUG:teuthology.orchestra.run.trial010:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-23T07:03:03.721 DEBUG:teuthology.orchestra.run.trial040:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-23T07:03:03.729 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial010.front.sepia.ceph.com 2026-02-23T07:03:03.729 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-23T07:03:03.729 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-23T07:03:03.748 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial040.front.sepia.ceph.com 2026-02-23T07:03:03.748 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-23T07:03:03.748 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-23T07:03:03.903 INFO:teuthology.orchestra.run.trial010.stdout:No match for argument: nvme-cli 2026-02-23T07:03:03.904 INFO:teuthology.orchestra.run.trial010.stderr:No packages marked for removal. 2026-02-23T07:03:03.905 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-23T07:03:03.906 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-23T07:03:03.906 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-23T07:03:03.917 INFO:teuthology.orchestra.run.trial040.stdout:No match for argument: nvme-cli 2026-02-23T07:03:03.917 INFO:teuthology.orchestra.run.trial040.stderr:No packages marked for removal. 2026-02-23T07:03:03.919 INFO:teuthology.orchestra.run.trial040.stdout:Dependencies resolved. 2026-02-23T07:03:03.920 INFO:teuthology.orchestra.run.trial040.stdout:Nothing to do. 2026-02-23T07:03:03.920 INFO:teuthology.orchestra.run.trial040.stdout:Complete! 2026-02-23T07:03:04.203 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:29 ago on Mon 23 Feb 2026 07:02:35 AM UTC. 2026-02-23T07:03:04.217 INFO:teuthology.orchestra.run.trial040.stdout:Last metadata expiration check: 0:00:26 ago on Mon 23 Feb 2026 07:02:38 AM UTC. 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout: Package Architecture Version Repository Size 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout:Installing dependencies: 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:04.284 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-23T07:03:04.285 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-23T07:03:04.285 INFO:teuthology.orchestra.run.trial010.stdout:Install 6 Packages 2026-02-23T07:03:04.285 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:04.285 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 2.3 M 2026-02-23T07:03:04.285 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 11 M 2026-02-23T07:03:04.285 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-23T07:03:04.298 INFO:teuthology.orchestra.run.trial040.stdout:Dependencies resolved. 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout:================================================================================ 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout: Package Architecture Version Repository Size 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout:================================================================================ 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout:Installing: 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout:Installing dependencies: 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout:Transaction Summary 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout:================================================================================ 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout:Install 6 Packages 2026-02-23T07:03:04.299 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:03:04.300 INFO:teuthology.orchestra.run.trial040.stdout:Total download size: 2.3 M 2026-02-23T07:03:04.300 INFO:teuthology.orchestra.run.trial040.stdout:Installed size: 11 M 2026-02-23T07:03:04.300 INFO:teuthology.orchestra.run.trial040.stdout:Downloading Packages: 2026-02-23T07:03:04.463 INFO:teuthology.orchestra.run.trial010.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 649 kB/s | 44 kB 00:00 2026-02-23T07:03:04.463 INFO:teuthology.orchestra.run.trial010.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 1.0 MB/s | 72 kB 00:00 2026-02-23T07:03:04.507 INFO:teuthology.orchestra.run.trial010.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.9 MB/s | 84 kB 00:00 2026-02-23T07:03:04.508 INFO:teuthology.orchestra.run.trial010.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 3.3 MB/s | 150 kB 00:00 2026-02-23T07:03:04.527 INFO:teuthology.orchestra.run.trial010.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 8.8 MB/s | 1.2 MB 00:00 2026-02-23T07:03:04.575 INFO:teuthology.orchestra.run.trial010.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 12 MB/s | 837 kB 00:00 2026-02-23T07:03:04.575 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-23T07:03:04.575 INFO:teuthology.orchestra.run.trial010.stdout:Total 8.0 MB/s | 2.3 MB 00:00 2026-02-23T07:03:04.625 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-23T07:03:04.632 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-23T07:03:04.632 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-23T07:03:04.698 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-23T07:03:04.698 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-23T07:03:04.828 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-23T07:03:04.835 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-23T07:03:04.844 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-23T07:03:04.851 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-23T07:03:04.856 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-23T07:03:04.857 INFO:teuthology.orchestra.run.trial010.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-23T07:03:04.915 INFO:teuthology.orchestra.run.trial040.stdout:(1/6): python3-configshell-1.1.30-1.el9.noarch. 137 kB/s | 72 kB 00:00 2026-02-23T07:03:04.925 INFO:teuthology.orchestra.run.trial040.stdout:(2/6): nvmetcli-0.8-3.el9.noarch.rpm 82 kB/s | 44 kB 00:00 2026-02-23T07:03:04.990 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-23T07:03:04.992 INFO:teuthology.orchestra.run.trial010.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-23T07:03:05.094 INFO:teuthology.orchestra.run.trial040.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 471 kB/s | 84 kB 00:00 2026-02-23T07:03:05.181 INFO:teuthology.orchestra.run.trial040.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 589 kB/s | 150 kB 00:00 2026-02-23T07:03:05.285 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-23T07:03:05.285 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-23T07:03:05.285 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:05.526 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-23T07:03:05.527 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-23T07:03:05.527 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-23T07:03:05.527 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-23T07:03:05.527 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-23T07:03:05.579 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-23T07:03:05.579 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:05.579 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-23T07:03:05.579 INFO:teuthology.orchestra.run.trial010.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-23T07:03:05.579 INFO:teuthology.orchestra.run.trial010.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-23T07:03:05.579 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-23T07:03:05.579 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:05.579 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-23T07:03:05.610 DEBUG:teuthology.parallel:result is None 2026-02-23T07:03:06.138 INFO:teuthology.orchestra.run.trial040.stdout:(5/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 802 kB/s | 837 kB 00:01 2026-02-23T07:03:06.175 INFO:teuthology.orchestra.run.trial040.stdout:(6/6): nvme-cli-2.16-1.el9.x86_64.rpm 661 kB/s | 1.2 MB 00:01 2026-02-23T07:03:06.176 INFO:teuthology.orchestra.run.trial040.stdout:-------------------------------------------------------------------------------- 2026-02-23T07:03:06.176 INFO:teuthology.orchestra.run.trial040.stdout:Total 1.2 MB/s | 2.3 MB 00:01 2026-02-23T07:03:06.231 INFO:teuthology.orchestra.run.trial040.stdout:Running transaction check 2026-02-23T07:03:06.239 INFO:teuthology.orchestra.run.trial040.stdout:Transaction check succeeded. 2026-02-23T07:03:06.239 INFO:teuthology.orchestra.run.trial040.stdout:Running transaction test 2026-02-23T07:03:06.305 INFO:teuthology.orchestra.run.trial040.stdout:Transaction test succeeded. 2026-02-23T07:03:06.305 INFO:teuthology.orchestra.run.trial040.stdout:Running transaction 2026-02-23T07:03:06.435 INFO:teuthology.orchestra.run.trial040.stdout: Preparing : 1/1 2026-02-23T07:03:06.443 INFO:teuthology.orchestra.run.trial040.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-23T07:03:06.452 INFO:teuthology.orchestra.run.trial040.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-23T07:03:06.457 INFO:teuthology.orchestra.run.trial040.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-23T07:03:06.463 INFO:teuthology.orchestra.run.trial040.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-23T07:03:06.464 INFO:teuthology.orchestra.run.trial040.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-23T07:03:06.597 INFO:teuthology.orchestra.run.trial040.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-23T07:03:06.599 INFO:teuthology.orchestra.run.trial040.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-23T07:03:06.891 INFO:teuthology.orchestra.run.trial040.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-23T07:03:06.891 INFO:teuthology.orchestra.run.trial040.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-23T07:03:06.891 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:03:07.147 INFO:teuthology.orchestra.run.trial040.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-23T07:03:07.148 INFO:teuthology.orchestra.run.trial040.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-23T07:03:07.148 INFO:teuthology.orchestra.run.trial040.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-23T07:03:07.148 INFO:teuthology.orchestra.run.trial040.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-23T07:03:07.148 INFO:teuthology.orchestra.run.trial040.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-23T07:03:07.201 INFO:teuthology.orchestra.run.trial040.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-23T07:03:07.201 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:03:07.201 INFO:teuthology.orchestra.run.trial040.stdout:Installed: 2026-02-23T07:03:07.201 INFO:teuthology.orchestra.run.trial040.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-23T07:03:07.201 INFO:teuthology.orchestra.run.trial040.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-23T07:03:07.201 INFO:teuthology.orchestra.run.trial040.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-23T07:03:07.201 INFO:teuthology.orchestra.run.trial040.stdout: 2026-02-23T07:03:07.201 INFO:teuthology.orchestra.run.trial040.stdout:Complete! 2026-02-23T07:03:07.231 DEBUG:teuthology.parallel:result is None 2026-02-23T07:03:07.231 INFO:teuthology.run_tasks:Running task nvme_loop... 2026-02-23T07:03:07.244 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2026-02-23T07:03:07.244 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:03:07.244 DEBUG:teuthology.orchestra.run.trial010:> dd if=/scratch_devs of=/dev/stdout 2026-02-23T07:03:07.264 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2026-02-23T07:03:07.264 DEBUG:teuthology.orchestra.run.trial010:> stat /dev/vg_nvme/lv_1 2026-02-23T07:03:07.320 INFO:teuthology.orchestra.run.trial010.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-23T07:03:07.320 INFO:teuthology.orchestra.run.trial010.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T07:03:07.320 INFO:teuthology.orchestra.run.trial010.stdout:Device: 6h/6d Inode: 1309 Links: 1 2026-02-23T07:03:07.320 INFO:teuthology.orchestra.run.trial010.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T07:03:07.320 INFO:teuthology.orchestra.run.trial010.stdout:Context: system_u:object_r:device_t:s0 2026-02-23T07:03:07.320 INFO:teuthology.orchestra.run.trial010.stdout:Access: 2026-02-23 07:03:05.440195411 +0000 2026-02-23T07:03:07.320 INFO:teuthology.orchestra.run.trial010.stdout:Modify: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.320 INFO:teuthology.orchestra.run.trial010.stdout:Change: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.320 INFO:teuthology.orchestra.run.trial010.stdout: Birth: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.320 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-23T07:03:07.387 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records in 2026-02-23T07:03:07.387 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records out 2026-02-23T07:03:07.387 INFO:teuthology.orchestra.run.trial010.stderr:512 bytes copied, 0.000162548 s, 3.1 MB/s 2026-02-23T07:03:07.388 DEBUG:teuthology.orchestra.run.trial010:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-23T07:03:07.446 DEBUG:teuthology.orchestra.run.trial010:> stat /dev/vg_nvme/lv_2 2026-02-23T07:03:07.503 INFO:teuthology.orchestra.run.trial010.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-23T07:03:07.503 INFO:teuthology.orchestra.run.trial010.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T07:03:07.503 INFO:teuthology.orchestra.run.trial010.stdout:Device: 6h/6d Inode: 1301 Links: 1 2026-02-23T07:03:07.503 INFO:teuthology.orchestra.run.trial010.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T07:03:07.503 INFO:teuthology.orchestra.run.trial010.stdout:Context: system_u:object_r:device_t:s0 2026-02-23T07:03:07.503 INFO:teuthology.orchestra.run.trial010.stdout:Access: 2026-02-23 07:03:05.440195411 +0000 2026-02-23T07:03:07.503 INFO:teuthology.orchestra.run.trial010.stdout:Modify: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.503 INFO:teuthology.orchestra.run.trial010.stdout:Change: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.503 INFO:teuthology.orchestra.run.trial010.stdout: Birth: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.503 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-23T07:03:07.567 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records in 2026-02-23T07:03:07.567 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records out 2026-02-23T07:03:07.567 INFO:teuthology.orchestra.run.trial010.stderr:512 bytes copied, 0.000157559 s, 3.2 MB/s 2026-02-23T07:03:07.568 DEBUG:teuthology.orchestra.run.trial010:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-23T07:03:07.625 DEBUG:teuthology.orchestra.run.trial010:> stat /dev/vg_nvme/lv_3 2026-02-23T07:03:07.682 INFO:teuthology.orchestra.run.trial010.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-23T07:03:07.682 INFO:teuthology.orchestra.run.trial010.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T07:03:07.682 INFO:teuthology.orchestra.run.trial010.stdout:Device: 6h/6d Inode: 1313 Links: 1 2026-02-23T07:03:07.682 INFO:teuthology.orchestra.run.trial010.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T07:03:07.682 INFO:teuthology.orchestra.run.trial010.stdout:Context: system_u:object_r:device_t:s0 2026-02-23T07:03:07.682 INFO:teuthology.orchestra.run.trial010.stdout:Access: 2026-02-23 07:03:05.440195411 +0000 2026-02-23T07:03:07.682 INFO:teuthology.orchestra.run.trial010.stdout:Modify: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.682 INFO:teuthology.orchestra.run.trial010.stdout:Change: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.682 INFO:teuthology.orchestra.run.trial010.stdout: Birth: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.682 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-23T07:03:07.745 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records in 2026-02-23T07:03:07.746 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records out 2026-02-23T07:03:07.746 INFO:teuthology.orchestra.run.trial010.stderr:512 bytes copied, 0.000156837 s, 3.3 MB/s 2026-02-23T07:03:07.747 DEBUG:teuthology.orchestra.run.trial010:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-23T07:03:07.803 DEBUG:teuthology.orchestra.run.trial010:> stat /dev/vg_nvme/lv_4 2026-02-23T07:03:07.860 INFO:teuthology.orchestra.run.trial010.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-23T07:03:07.860 INFO:teuthology.orchestra.run.trial010.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T07:03:07.860 INFO:teuthology.orchestra.run.trial010.stdout:Device: 6h/6d Inode: 1296 Links: 1 2026-02-23T07:03:07.860 INFO:teuthology.orchestra.run.trial010.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T07:03:07.860 INFO:teuthology.orchestra.run.trial010.stdout:Context: system_u:object_r:device_t:s0 2026-02-23T07:03:07.860 INFO:teuthology.orchestra.run.trial010.stdout:Access: 2026-02-23 07:03:05.441195373 +0000 2026-02-23T07:03:07.860 INFO:teuthology.orchestra.run.trial010.stdout:Modify: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.860 INFO:teuthology.orchestra.run.trial010.stdout:Change: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.860 INFO:teuthology.orchestra.run.trial010.stdout: Birth: 2026-02-23 07:03:05.309200469 +0000 2026-02-23T07:03:07.861 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-23T07:03:07.923 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records in 2026-02-23T07:03:07.923 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records out 2026-02-23T07:03:07.923 INFO:teuthology.orchestra.run.trial010.stderr:512 bytes copied, 0.000144736 s, 3.5 MB/s 2026-02-23T07:03:07.924 DEBUG:teuthology.orchestra.run.trial010:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-23T07:03:07.982 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:03:08.086 INFO:teuthology.orchestra.run.trial010.stdout:loop 2026-02-23T07:03:08.087 INFO:tasks.nvme_loop:Connecting nvme_loop trial010:/dev/vg_nvme/lv_1... 2026-02-23T07:03:08.087 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:03:08.118 INFO:teuthology.orchestra.run.trial010.stdout:1 2026-02-23T07:03:08.144 INFO:teuthology.orchestra.run.trial010.stdout:/dev/vg_nvme/lv_11 2026-02-23T07:03:08.179 INFO:teuthology.orchestra.run.trial010.stdout:connecting to device: nvme3 2026-02-23T07:03:08.184 INFO:tasks.nvme_loop:Connecting nvme_loop trial010:/dev/vg_nvme/lv_2... 2026-02-23T07:03:08.184 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:03:08.259 INFO:teuthology.orchestra.run.trial010.stdout:1 2026-02-23T07:03:08.285 INFO:teuthology.orchestra.run.trial010.stdout:/dev/vg_nvme/lv_21 2026-02-23T07:03:08.313 INFO:teuthology.orchestra.run.trial010.stdout:connecting to device: nvme4 2026-02-23T07:03:08.320 INFO:tasks.nvme_loop:Connecting nvme_loop trial010:/dev/vg_nvme/lv_3... 2026-02-23T07:03:08.320 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:03:08.393 INFO:teuthology.orchestra.run.trial010.stdout:1 2026-02-23T07:03:08.418 INFO:teuthology.orchestra.run.trial010.stdout:/dev/vg_nvme/lv_31 2026-02-23T07:03:08.447 INFO:teuthology.orchestra.run.trial010.stdout:connecting to device: nvme5 2026-02-23T07:03:08.449 INFO:tasks.nvme_loop:Connecting nvme_loop trial010:/dev/vg_nvme/lv_4... 2026-02-23T07:03:08.449 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:03:08.520 INFO:teuthology.orchestra.run.trial010.stdout:1 2026-02-23T07:03:08.546 INFO:teuthology.orchestra.run.trial010.stdout:/dev/vg_nvme/lv_41 2026-02-23T07:03:08.575 INFO:teuthology.orchestra.run.trial010.stdout:connecting to device: nvme6 2026-02-23T07:03:08.576 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:03:08.576 DEBUG:teuthology.orchestra.run.trial010:> dd if=/scratch_devs of=/dev/stdout 2026-02-23T07:03:08.632 DEBUG:teuthology.orchestra.run.trial010:> lsblk 2026-02-23T07:03:08.690 INFO:teuthology.orchestra.run.trial010.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:nvme1n1 259:0 0 1.7T 0 disk 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:nvme2n1 259:1 0 1.7T 0 disk 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:nvme0n1 259:2 0 894.3G 0 disk 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:├─nvme0n1p1 259:3 0 512M 0 part /boot/efi 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:└─nvme0n1p2 259:4 0 893.8G 0 part / 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-23T07:03:08.691 INFO:teuthology.orchestra.run.trial010.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-23T07:03:08.691 DEBUG:teuthology.orchestra.run.trial010:> sudo nvme list -o json 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout:{ 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "Devices":[ 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: { 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "NameSpace":1, 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "DevicePath":"/dev/nvme0n1", 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "GenericPath":"/dev/ng0n1", 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "Firmware":"E2MU200", 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "ModelNumber":"Micron_7450_MTFDKBA960TFR", 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "SerialNumber":"25174FCD695A", 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "UsedBytes":244675198976, 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "MaximumLBA":1875385008, 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "PhysicalSize":960197124096, 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "SectorSize":512 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: }, 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: { 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "NameSpace":1, 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "DevicePath":"/dev/nvme1n1", 2026-02-23T07:03:08.757 INFO:teuthology.orchestra.run.trial010.stdout: "GenericPath":"/dev/ng1n1", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "Firmware":"E3MQ000", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "SerialNumber":"012510B47DE4", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "UsedBytes":10622570496, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "MaximumLBA":3750748848, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "PhysicalSize":1920383410176, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "SectorSize":512 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: }, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: { 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "NameSpace":1, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "DevicePath":"/dev/nvme2n1", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "GenericPath":"/dev/ng2n1", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "Firmware":"E3MQ000", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "SerialNumber":"012510B002B4", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "UsedBytes":144079859712, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "MaximumLBA":3750748848, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "PhysicalSize":1920383410176, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "SectorSize":512 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: }, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: { 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "NameSpace":1, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "DevicePath":"/dev/nvme3n1", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "GenericPath":"/dev/ng3n1", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "Firmware":"5.14.0-6", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "ModelNumber":"Linux", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "SerialNumber":"38f67c4b665291eafefb", 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "UsedBytes":751619276800, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "MaximumLBA":1468006400, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "PhysicalSize":751619276800, 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: "SectorSize":512 2026-02-23T07:03:08.758 INFO:teuthology.orchestra.run.trial010.stdout: }, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: { 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "NameSpace":1, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "DevicePath":"/dev/nvme4n1", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "GenericPath":"/dev/ng4n1", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "Firmware":"5.14.0-6", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "ModelNumber":"Linux", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "SerialNumber":"ab8be9403b023daa3af4", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "UsedBytes":751619276800, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "MaximumLBA":1468006400, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "PhysicalSize":751619276800, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "SectorSize":512 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: }, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: { 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "NameSpace":1, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "DevicePath":"/dev/nvme5n1", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "GenericPath":"/dev/ng5n1", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "Firmware":"5.14.0-6", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "ModelNumber":"Linux", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "SerialNumber":"7246475e3055d49cfc87", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "UsedBytes":751619276800, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "MaximumLBA":1468006400, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "PhysicalSize":751619276800, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "SectorSize":512 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: }, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: { 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "NameSpace":1, 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "DevicePath":"/dev/nvme6n1", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "GenericPath":"/dev/ng6n1", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "Firmware":"5.14.0-6", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "ModelNumber":"Linux", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "SerialNumber":"2d0cdc01ed546231dc90", 2026-02-23T07:03:08.759 INFO:teuthology.orchestra.run.trial010.stdout: "UsedBytes":751619276800, 2026-02-23T07:03:08.760 INFO:teuthology.orchestra.run.trial010.stdout: "MaximumLBA":1468006400, 2026-02-23T07:03:08.760 INFO:teuthology.orchestra.run.trial010.stdout: "PhysicalSize":751619276800, 2026-02-23T07:03:08.760 INFO:teuthology.orchestra.run.trial010.stdout: "SectorSize":512 2026-02-23T07:03:08.760 INFO:teuthology.orchestra.run.trial010.stdout: } 2026-02-23T07:03:08.760 INFO:teuthology.orchestra.run.trial010.stdout: ] 2026-02-23T07:03:08.760 INFO:teuthology.orchestra.run.trial010.stdout:} 2026-02-23T07:03:08.760 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-23T07:03:08.828 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:08.828 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:08.828 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0043906 s, 933 kB/s 2026-02-23T07:03:08.830 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-23T07:03:08.892 INFO:teuthology.orchestra.run.trial010.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:08.892 INFO:teuthology.orchestra.run.trial010.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:08.892 INFO:teuthology.orchestra.run.trial010.stdout:00000016 2026-02-23T07:03:08.893 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-23T07:03:08.961 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:08.961 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:08.961 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00472829 s, 866 kB/s 2026-02-23T07:03:08.962 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-23T07:03:09.024 INFO:teuthology.orchestra.run.trial010.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:09.024 INFO:teuthology.orchestra.run.trial010.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:09.024 INFO:teuthology.orchestra.run.trial010.stdout:40000016 2026-02-23T07:03:09.025 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-23T07:03:09.092 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:09.092 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:09.092 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00442149 s, 926 kB/s 2026-02-23T07:03:09.093 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-23T07:03:09.155 INFO:teuthology.orchestra.run.trial010.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:09.155 INFO:teuthology.orchestra.run.trial010.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:09.155 INFO:teuthology.orchestra.run.trial010.stdout:280000016 2026-02-23T07:03:09.156 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-23T07:03:09.224 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:09.225 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:09.225 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00516799 s, 793 kB/s 2026-02-23T07:03:09.226 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-23T07:03:09.289 INFO:teuthology.orchestra.run.trial010.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:09.290 INFO:teuthology.orchestra.run.trial010.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:09.290 INFO:teuthology.orchestra.run.trial010.stdout:00000016 2026-02-23T07:03:09.290 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-23T07:03:09.357 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:09.358 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:09.358 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00469289 s, 873 kB/s 2026-02-23T07:03:09.359 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-23T07:03:09.424 INFO:teuthology.orchestra.run.trial010.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:09.424 INFO:teuthology.orchestra.run.trial010.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:09.425 INFO:teuthology.orchestra.run.trial010.stdout:40000016 2026-02-23T07:03:09.427 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-23T07:03:09.493 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:09.493 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:09.493 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00461633 s, 887 kB/s 2026-02-23T07:03:09.494 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-23T07:03:09.557 INFO:teuthology.orchestra.run.trial010.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:09.558 INFO:teuthology.orchestra.run.trial010.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:09.558 INFO:teuthology.orchestra.run.trial010.stdout:280000016 2026-02-23T07:03:09.559 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-23T07:03:09.626 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:09.626 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:09.626 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00445852 s, 919 kB/s 2026-02-23T07:03:09.627 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-23T07:03:09.689 INFO:teuthology.orchestra.run.trial010.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:09.690 INFO:teuthology.orchestra.run.trial010.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:09.690 INFO:teuthology.orchestra.run.trial010.stdout:00000016 2026-02-23T07:03:09.691 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-23T07:03:09.757 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:09.758 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:09.758 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00443917 s, 923 kB/s 2026-02-23T07:03:09.759 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-23T07:03:09.822 INFO:teuthology.orchestra.run.trial010.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:09.822 INFO:teuthology.orchestra.run.trial010.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:09.823 INFO:teuthology.orchestra.run.trial010.stdout:40000016 2026-02-23T07:03:09.824 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-23T07:03:09.891 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:09.891 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:09.891 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.004919 s, 833 kB/s 2026-02-23T07:03:09.893 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-23T07:03:09.954 INFO:teuthology.orchestra.run.trial010.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:09.954 INFO:teuthology.orchestra.run.trial010.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:09.955 INFO:teuthology.orchestra.run.trial010.stdout:280000016 2026-02-23T07:03:09.956 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-23T07:03:10.023 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:10.023 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:10.023 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00453063 s, 904 kB/s 2026-02-23T07:03:10.024 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-23T07:03:10.087 INFO:teuthology.orchestra.run.trial010.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:10.087 INFO:teuthology.orchestra.run.trial010.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:10.088 INFO:teuthology.orchestra.run.trial010.stdout:00000016 2026-02-23T07:03:10.089 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-23T07:03:10.155 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:10.155 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:10.155 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00449584 s, 911 kB/s 2026-02-23T07:03:10.157 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-23T07:03:10.219 INFO:teuthology.orchestra.run.trial010.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:10.219 INFO:teuthology.orchestra.run.trial010.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:10.219 INFO:teuthology.orchestra.run.trial010.stdout:40000016 2026-02-23T07:03:10.220 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-23T07:03:10.287 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records in 2026-02-23T07:03:10.287 INFO:teuthology.orchestra.run.trial010.stderr:4096+0 records out 2026-02-23T07:03:10.287 INFO:teuthology.orchestra.run.trial010.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00460096 s, 890 kB/s 2026-02-23T07:03:10.288 DEBUG:teuthology.orchestra.run.trial010:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-23T07:03:10.351 INFO:teuthology.orchestra.run.trial010.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:10.351 INFO:teuthology.orchestra.run.trial010.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:10.351 INFO:teuthology.orchestra.run.trial010.stdout:280000016 2026-02-23T07:03:10.351 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-23T07:03:10.352 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:03:10.352 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/scratch_devs 2026-02-23T07:03:10.414 DEBUG:teuthology.orchestra.run.trial040:> set -ex 2026-02-23T07:03:10.414 DEBUG:teuthology.orchestra.run.trial040:> dd if=/scratch_devs of=/dev/stdout 2026-02-23T07:03:10.433 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2026-02-23T07:03:10.433 DEBUG:teuthology.orchestra.run.trial040:> stat /dev/vg_nvme/lv_1 2026-02-23T07:03:10.489 INFO:teuthology.orchestra.run.trial040.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-23T07:03:10.489 INFO:teuthology.orchestra.run.trial040.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T07:03:10.489 INFO:teuthology.orchestra.run.trial040.stdout:Device: 6h/6d Inode: 1306 Links: 1 2026-02-23T07:03:10.489 INFO:teuthology.orchestra.run.trial040.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T07:03:10.489 INFO:teuthology.orchestra.run.trial040.stdout:Context: system_u:object_r:device_t:s0 2026-02-23T07:03:10.489 INFO:teuthology.orchestra.run.trial040.stdout:Access: 2026-02-23 07:03:07.065137635 +0000 2026-02-23T07:03:10.489 INFO:teuthology.orchestra.run.trial040.stdout:Modify: 2026-02-23 07:03:06.917143375 +0000 2026-02-23T07:03:10.489 INFO:teuthology.orchestra.run.trial040.stdout:Change: 2026-02-23 07:03:06.917143375 +0000 2026-02-23T07:03:10.489 INFO:teuthology.orchestra.run.trial040.stdout: Birth: 2026-02-23 07:03:06.917143375 +0000 2026-02-23T07:03:10.489 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-23T07:03:10.553 INFO:teuthology.orchestra.run.trial040.stderr:1+0 records in 2026-02-23T07:03:10.553 INFO:teuthology.orchestra.run.trial040.stderr:1+0 records out 2026-02-23T07:03:10.553 INFO:teuthology.orchestra.run.trial040.stderr:512 bytes copied, 0.000235611 s, 2.2 MB/s 2026-02-23T07:03:10.554 DEBUG:teuthology.orchestra.run.trial040:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-23T07:03:10.610 DEBUG:teuthology.orchestra.run.trial040:> stat /dev/vg_nvme/lv_2 2026-02-23T07:03:10.666 INFO:teuthology.orchestra.run.trial040.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-23T07:03:10.666 INFO:teuthology.orchestra.run.trial040.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T07:03:10.666 INFO:teuthology.orchestra.run.trial040.stdout:Device: 6h/6d Inode: 1309 Links: 1 2026-02-23T07:03:10.666 INFO:teuthology.orchestra.run.trial040.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T07:03:10.666 INFO:teuthology.orchestra.run.trial040.stdout:Context: system_u:object_r:device_t:s0 2026-02-23T07:03:10.666 INFO:teuthology.orchestra.run.trial040.stdout:Access: 2026-02-23 07:03:07.065137635 +0000 2026-02-23T07:03:10.666 INFO:teuthology.orchestra.run.trial040.stdout:Modify: 2026-02-23 07:03:06.918143335 +0000 2026-02-23T07:03:10.666 INFO:teuthology.orchestra.run.trial040.stdout:Change: 2026-02-23 07:03:06.918143335 +0000 2026-02-23T07:03:10.666 INFO:teuthology.orchestra.run.trial040.stdout: Birth: 2026-02-23 07:03:06.918143335 +0000 2026-02-23T07:03:10.666 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-23T07:03:10.731 INFO:teuthology.orchestra.run.trial040.stderr:1+0 records in 2026-02-23T07:03:10.731 INFO:teuthology.orchestra.run.trial040.stderr:1+0 records out 2026-02-23T07:03:10.731 INFO:teuthology.orchestra.run.trial040.stderr:512 bytes copied, 0.000205875 s, 2.5 MB/s 2026-02-23T07:03:10.732 DEBUG:teuthology.orchestra.run.trial040:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-23T07:03:10.789 DEBUG:teuthology.orchestra.run.trial040:> stat /dev/vg_nvme/lv_3 2026-02-23T07:03:10.845 INFO:teuthology.orchestra.run.trial040.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-23T07:03:10.845 INFO:teuthology.orchestra.run.trial040.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T07:03:10.845 INFO:teuthology.orchestra.run.trial040.stdout:Device: 6h/6d Inode: 1292 Links: 1 2026-02-23T07:03:10.845 INFO:teuthology.orchestra.run.trial040.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T07:03:10.845 INFO:teuthology.orchestra.run.trial040.stdout:Context: system_u:object_r:device_t:s0 2026-02-23T07:03:10.845 INFO:teuthology.orchestra.run.trial040.stdout:Access: 2026-02-23 07:03:07.066137596 +0000 2026-02-23T07:03:10.845 INFO:teuthology.orchestra.run.trial040.stdout:Modify: 2026-02-23 07:03:06.916143413 +0000 2026-02-23T07:03:10.845 INFO:teuthology.orchestra.run.trial040.stdout:Change: 2026-02-23 07:03:06.916143413 +0000 2026-02-23T07:03:10.845 INFO:teuthology.orchestra.run.trial040.stdout: Birth: 2026-02-23 07:03:06.916143413 +0000 2026-02-23T07:03:10.846 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-23T07:03:10.908 INFO:teuthology.orchestra.run.trial040.stderr:1+0 records in 2026-02-23T07:03:10.908 INFO:teuthology.orchestra.run.trial040.stderr:1+0 records out 2026-02-23T07:03:10.908 INFO:teuthology.orchestra.run.trial040.stderr:512 bytes copied, 0.00013912 s, 3.7 MB/s 2026-02-23T07:03:10.909 DEBUG:teuthology.orchestra.run.trial040:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-23T07:03:10.965 DEBUG:teuthology.orchestra.run.trial040:> stat /dev/vg_nvme/lv_4 2026-02-23T07:03:11.021 INFO:teuthology.orchestra.run.trial040.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-23T07:03:11.021 INFO:teuthology.orchestra.run.trial040.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T07:03:11.021 INFO:teuthology.orchestra.run.trial040.stdout:Device: 6h/6d Inode: 1290 Links: 1 2026-02-23T07:03:11.021 INFO:teuthology.orchestra.run.trial040.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T07:03:11.021 INFO:teuthology.orchestra.run.trial040.stdout:Context: system_u:object_r:device_t:s0 2026-02-23T07:03:11.021 INFO:teuthology.orchestra.run.trial040.stdout:Access: 2026-02-23 07:03:07.066137596 +0000 2026-02-23T07:03:11.021 INFO:teuthology.orchestra.run.trial040.stdout:Modify: 2026-02-23 07:03:06.916143413 +0000 2026-02-23T07:03:11.021 INFO:teuthology.orchestra.run.trial040.stdout:Change: 2026-02-23 07:03:06.916143413 +0000 2026-02-23T07:03:11.021 INFO:teuthology.orchestra.run.trial040.stdout: Birth: 2026-02-23 07:03:06.916143413 +0000 2026-02-23T07:03:11.021 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-23T07:03:11.084 INFO:teuthology.orchestra.run.trial040.stderr:1+0 records in 2026-02-23T07:03:11.084 INFO:teuthology.orchestra.run.trial040.stderr:1+0 records out 2026-02-23T07:03:11.084 INFO:teuthology.orchestra.run.trial040.stderr:512 bytes copied, 0.000167113 s, 3.1 MB/s 2026-02-23T07:03:11.085 DEBUG:teuthology.orchestra.run.trial040:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-23T07:03:11.141 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:03:11.245 INFO:teuthology.orchestra.run.trial040.stdout:loop 2026-02-23T07:03:11.247 INFO:tasks.nvme_loop:Connecting nvme_loop trial040:/dev/vg_nvme/lv_1... 2026-02-23T07:03:11.247 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:03:11.279 INFO:teuthology.orchestra.run.trial040.stdout:1 2026-02-23T07:03:11.304 INFO:teuthology.orchestra.run.trial040.stdout:/dev/vg_nvme/lv_11 2026-02-23T07:03:11.333 INFO:teuthology.orchestra.run.trial040.stdout:connecting to device: nvme3 2026-02-23T07:03:11.335 INFO:tasks.nvme_loop:Connecting nvme_loop trial040:/dev/vg_nvme/lv_2... 2026-02-23T07:03:11.335 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:03:11.408 INFO:teuthology.orchestra.run.trial040.stdout:1 2026-02-23T07:03:11.434 INFO:teuthology.orchestra.run.trial040.stdout:/dev/vg_nvme/lv_21 2026-02-23T07:03:11.468 INFO:teuthology.orchestra.run.trial040.stdout:connecting to device: nvme4 2026-02-23T07:03:11.470 INFO:tasks.nvme_loop:Connecting nvme_loop trial040:/dev/vg_nvme/lv_3... 2026-02-23T07:03:11.470 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:03:11.541 INFO:teuthology.orchestra.run.trial040.stdout:1 2026-02-23T07:03:11.568 INFO:teuthology.orchestra.run.trial040.stdout:/dev/vg_nvme/lv_31 2026-02-23T07:03:11.596 INFO:teuthology.orchestra.run.trial040.stdout:connecting to device: nvme5 2026-02-23T07:03:11.597 INFO:tasks.nvme_loop:Connecting nvme_loop trial040:/dev/vg_nvme/lv_4... 2026-02-23T07:03:11.597 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:03:11.668 INFO:teuthology.orchestra.run.trial040.stdout:1 2026-02-23T07:03:11.694 INFO:teuthology.orchestra.run.trial040.stdout:/dev/vg_nvme/lv_41 2026-02-23T07:03:11.722 INFO:teuthology.orchestra.run.trial040.stdout:connecting to device: nvme6 2026-02-23T07:03:11.727 DEBUG:teuthology.orchestra.run.trial040:> set -ex 2026-02-23T07:03:11.727 DEBUG:teuthology.orchestra.run.trial040:> dd if=/scratch_devs of=/dev/stdout 2026-02-23T07:03:11.782 DEBUG:teuthology.orchestra.run.trial040:> lsblk 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:nvme1n1 259:0 0 894.3G 0 disk 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:├─nvme1n1p1 259:2 0 512M 0 part /boot/efi 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:└─nvme1n1p2 259:3 0 893.8G 0 part / 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:nvme2n1 259:1 0 1.7T 0 disk 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:nvme0n1 259:4 0 1.7T 0 disk 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-23T07:03:11.840 INFO:teuthology.orchestra.run.trial040.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-23T07:03:11.840 DEBUG:teuthology.orchestra.run.trial040:> sudo nvme list -o json 2026-02-23T07:03:11.905 INFO:teuthology.orchestra.run.trial040.stdout:{ 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "Devices":[ 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: { 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "NameSpace":1, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "DevicePath":"/dev/nvme0n1", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "GenericPath":"/dev/ng0n1", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "Firmware":"E3MQ000", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "SerialNumber":"092510AB6BD0", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "UsedBytes":150727704576, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "MaximumLBA":3750748848, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "PhysicalSize":1920383410176, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "SectorSize":512 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: }, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: { 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "NameSpace":1, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "DevicePath":"/dev/nvme1n1", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "GenericPath":"/dev/ng1n1", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "Firmware":"E2MU200", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "ModelNumber":"Micron_7450_MTFDKBA960TFR", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "SerialNumber":"25174FCD6793", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "UsedBytes":527544410112, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "MaximumLBA":1875385008, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "PhysicalSize":960197124096, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "SectorSize":512 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: }, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: { 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "NameSpace":1, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "DevicePath":"/dev/nvme2n1", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "GenericPath":"/dev/ng2n1", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "Firmware":"E3MQ000", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "SerialNumber":"092510AB6C08", 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "UsedBytes":148943634432, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "MaximumLBA":3750748848, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "PhysicalSize":1920383410176, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "SectorSize":512 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: }, 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: { 2026-02-23T07:03:11.906 INFO:teuthology.orchestra.run.trial040.stdout: "NameSpace":1, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "DevicePath":"/dev/nvme3n1", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "GenericPath":"/dev/ng3n1", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "Firmware":"5.14.0-6", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "ModelNumber":"Linux", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "SerialNumber":"65962e5ef2e45ff64b76", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "UsedBytes":751619276800, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "MaximumLBA":1468006400, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "PhysicalSize":751619276800, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "SectorSize":512 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: }, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: { 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "NameSpace":1, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "DevicePath":"/dev/nvme4n1", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "GenericPath":"/dev/ng4n1", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "Firmware":"5.14.0-6", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "ModelNumber":"Linux", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "SerialNumber":"877c035d9dd00a43f373", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "UsedBytes":751619276800, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "MaximumLBA":1468006400, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "PhysicalSize":751619276800, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "SectorSize":512 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: }, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: { 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "NameSpace":1, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "DevicePath":"/dev/nvme5n1", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "GenericPath":"/dev/ng5n1", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "Firmware":"5.14.0-6", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "ModelNumber":"Linux", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "SerialNumber":"073da47a7c834f37806a", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "UsedBytes":751619276800, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "MaximumLBA":1468006400, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "PhysicalSize":751619276800, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "SectorSize":512 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: }, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: { 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "NameSpace":1, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "DevicePath":"/dev/nvme6n1", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "GenericPath":"/dev/ng6n1", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "Firmware":"5.14.0-6", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "ModelNumber":"Linux", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "SerialNumber":"b25a55b02139558dcbbd", 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "UsedBytes":751619276800, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "MaximumLBA":1468006400, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "PhysicalSize":751619276800, 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: "SectorSize":512 2026-02-23T07:03:11.907 INFO:teuthology.orchestra.run.trial040.stdout: } 2026-02-23T07:03:11.908 INFO:teuthology.orchestra.run.trial040.stdout: ] 2026-02-23T07:03:11.908 INFO:teuthology.orchestra.run.trial040.stdout:} 2026-02-23T07:03:11.908 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-23T07:03:11.974 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:11.974 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:11.974 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00455031 s, 900 kB/s 2026-02-23T07:03:11.975 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-23T07:03:12.038 INFO:teuthology.orchestra.run.trial040.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:12.038 INFO:teuthology.orchestra.run.trial040.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:12.038 INFO:teuthology.orchestra.run.trial040.stdout:00000016 2026-02-23T07:03:12.039 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-23T07:03:12.105 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:12.105 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:12.105 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00441446 s, 928 kB/s 2026-02-23T07:03:12.106 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-23T07:03:12.168 INFO:teuthology.orchestra.run.trial040.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:12.168 INFO:teuthology.orchestra.run.trial040.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:12.168 INFO:teuthology.orchestra.run.trial040.stdout:40000016 2026-02-23T07:03:12.169 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-23T07:03:12.236 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:12.236 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:12.236 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0044363 s, 923 kB/s 2026-02-23T07:03:12.237 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-23T07:03:12.299 INFO:teuthology.orchestra.run.trial040.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:12.300 INFO:teuthology.orchestra.run.trial040.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:12.300 INFO:teuthology.orchestra.run.trial040.stdout:280000016 2026-02-23T07:03:12.300 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-23T07:03:12.368 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:12.368 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:12.368 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00471294 s, 869 kB/s 2026-02-23T07:03:12.369 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-23T07:03:12.431 INFO:teuthology.orchestra.run.trial040.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:12.431 INFO:teuthology.orchestra.run.trial040.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:12.431 INFO:teuthology.orchestra.run.trial040.stdout:00000016 2026-02-23T07:03:12.432 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-23T07:03:12.498 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:12.498 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:12.498 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00440487 s, 930 kB/s 2026-02-23T07:03:12.500 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-23T07:03:12.564 INFO:teuthology.orchestra.run.trial040.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:12.564 INFO:teuthology.orchestra.run.trial040.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:12.564 INFO:teuthology.orchestra.run.trial040.stdout:40000016 2026-02-23T07:03:12.565 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-23T07:03:12.631 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:12.631 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:12.631 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00481133 s, 851 kB/s 2026-02-23T07:03:12.632 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-23T07:03:12.696 INFO:teuthology.orchestra.run.trial040.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:12.696 INFO:teuthology.orchestra.run.trial040.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:12.696 INFO:teuthology.orchestra.run.trial040.stdout:280000016 2026-02-23T07:03:12.697 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-23T07:03:12.764 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:12.764 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:12.764 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00483205 s, 848 kB/s 2026-02-23T07:03:12.766 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-23T07:03:12.829 INFO:teuthology.orchestra.run.trial040.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:12.830 INFO:teuthology.orchestra.run.trial040.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:12.830 INFO:teuthology.orchestra.run.trial040.stdout:00000016 2026-02-23T07:03:12.831 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-23T07:03:12.898 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:12.898 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:12.898 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00439791 s, 931 kB/s 2026-02-23T07:03:12.899 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-23T07:03:12.962 INFO:teuthology.orchestra.run.trial040.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:12.962 INFO:teuthology.orchestra.run.trial040.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:12.962 INFO:teuthology.orchestra.run.trial040.stdout:40000016 2026-02-23T07:03:12.963 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-23T07:03:13.029 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:13.029 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:13.029 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00445421 s, 920 kB/s 2026-02-23T07:03:13.031 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-23T07:03:13.094 INFO:teuthology.orchestra.run.trial040.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:13.094 INFO:teuthology.orchestra.run.trial040.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:13.094 INFO:teuthology.orchestra.run.trial040.stdout:280000016 2026-02-23T07:03:13.095 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-23T07:03:13.161 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:13.161 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:13.161 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00455862 s, 899 kB/s 2026-02-23T07:03:13.162 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-23T07:03:13.225 INFO:teuthology.orchestra.run.trial040.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:13.225 INFO:teuthology.orchestra.run.trial040.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:13.225 INFO:teuthology.orchestra.run.trial040.stdout:00000016 2026-02-23T07:03:13.226 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-23T07:03:13.294 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:13.294 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:13.294 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00545813 s, 750 kB/s 2026-02-23T07:03:13.295 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-23T07:03:13.358 INFO:teuthology.orchestra.run.trial040.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:13.358 INFO:teuthology.orchestra.run.trial040.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:13.358 INFO:teuthology.orchestra.run.trial040.stdout:40000016 2026-02-23T07:03:13.359 DEBUG:teuthology.orchestra.run.trial040:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-23T07:03:13.426 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records in 2026-02-23T07:03:13.426 INFO:teuthology.orchestra.run.trial040.stderr:4096+0 records out 2026-02-23T07:03:13.426 INFO:teuthology.orchestra.run.trial040.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00444978 s, 920 kB/s 2026-02-23T07:03:13.427 DEBUG:teuthology.orchestra.run.trial040:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-23T07:03:13.489 INFO:teuthology.orchestra.run.trial040.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T07:03:13.489 INFO:teuthology.orchestra.run.trial040.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T07:03:13.489 INFO:teuthology.orchestra.run.trial040.stdout:280000016 2026-02-23T07:03:13.490 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-23T07:03:13.490 DEBUG:teuthology.orchestra.run.trial040:> set -ex 2026-02-23T07:03:13.490 DEBUG:teuthology.orchestra.run.trial040:> sudo dd of=/scratch_devs 2026-02-23T07:03:13.553 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-23T07:03:13.673 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': '244ee61d76a715c3ac0d60eeb3321aefb91c3511'} 2026-02-23T07:03:13.673 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T07:03:13.675 INFO:tasks.cephadm:Cluster fsid is b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:13.675 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-23T07:03:13.675 INFO:tasks.cephadm:No mon roles; fabricating mons 2026-02-23T07:03:13.675 INFO:tasks.cephadm:Monitor IPs: {'mon.trial010': '10.20.193.10', 'mon.trial040': '10.20.193.40'} 2026-02-23T07:03:13.675 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-23T07:03:13.675 DEBUG:teuthology.orchestra.run.trial010:> sudo hostname $(hostname -s) 2026-02-23T07:03:13.702 DEBUG:teuthology.orchestra.run.trial040:> sudo hostname $(hostname -s) 2026-02-23T07:03:13.728 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-23T07:03:13.728 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T07:03:13.860 INFO:tasks.cephadm:builder_project result: [{'url': 'https://2.chacra.ceph.com/r/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/centos/9/flavors/default/', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/centos/9/flavors/default/', 'ref': 'wip-shweta-testing-2026-02-19-2025', 'sha1': '244ee61d76a715c3ac0d60eeb3321aefb91c3511', 'distro': 'centos', 'distro_version': '9', 'distro_codename': None, 'modified': '2026-02-20 21:34:50.688484', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['source', 'x86_64'], 'extra': {'version': '20.3.0-5338-g244ee61d', 'package_manager_version': '20.3.0-5338.g244ee61d', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/3126/', 'root_build_cause': '', 'node_name': '10.20.192.98+toko08', 'job_name': 'ceph-dev-pipeline'}}] 2026-02-23T07:03:13.989 INFO:tasks.util.chacra:got chacra host 2.chacra.ceph.com, ref wip-shweta-testing-2026-02-19-2025, sha1 244ee61d76a715c3ac0d60eeb3321aefb91c3511 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T07:03:13.990 INFO:tasks.cephadm:Discovered cachra url: https://2.chacra.ceph.com/binaries/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/centos/9/x86_64/flavors/default/cephadm 2026-02-23T07:03:13.990 INFO:tasks.cephadm:Downloading cephadm from url: https://2.chacra.ceph.com/binaries/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/centos/9/x86_64/flavors/default/cephadm 2026-02-23T07:03:13.990 DEBUG:teuthology.orchestra.run.trial010:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-23T07:03:14.337 INFO:teuthology.orchestra.run.trial010.stdout:-rw-r--r--. 1 ubuntu ubuntu 1082492 Feb 23 07:03 /home/ubuntu/cephtest/cephadm 2026-02-23T07:03:14.338 DEBUG:teuthology.orchestra.run.trial040:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-23T07:03:14.650 INFO:teuthology.orchestra.run.trial040.stdout:-rw-r--r--. 1 ubuntu ubuntu 1082492 Feb 23 07:03 /home/ubuntu/cephtest/cephadm 2026-02-23T07:03:14.650 DEBUG:teuthology.orchestra.run.trial010:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-23T07:03:14.668 DEBUG:teuthology.orchestra.run.trial040:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-23T07:03:14.694 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 on all hosts... 2026-02-23T07:03:14.694 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 pull 2026-02-23T07:03:14.710 DEBUG:teuthology.orchestra.run.trial040:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 pull 2026-02-23T07:03:14.951 INFO:teuthology.orchestra.run.trial010.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511... 2026-02-23T07:03:14.962 INFO:teuthology.orchestra.run.trial040.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511... 2026-02-23T07:03:24.152 INFO:teuthology.orchestra.run.trial040.stdout:{ 2026-02-23T07:03:24.152 INFO:teuthology.orchestra.run.trial040.stdout: "ceph_version": "ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev)", 2026-02-23T07:03:24.152 INFO:teuthology.orchestra.run.trial040.stdout: "image_id": "d53f437b9974e91900768e66cdcee7298151761d59e3725242d4220dd9008a26", 2026-02-23T07:03:24.152 INFO:teuthology.orchestra.run.trial040.stdout: "repo_digests": [ 2026-02-23T07:03:24.152 INFO:teuthology.orchestra.run.trial040.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:aa1908bf3487bd0120867a595cd8279257306a73ebf8926eb7370fa78e59f3f2" 2026-02-23T07:03:24.152 INFO:teuthology.orchestra.run.trial040.stdout: ] 2026-02-23T07:03:24.152 INFO:teuthology.orchestra.run.trial040.stdout:} 2026-02-23T07:03:24.364 INFO:teuthology.orchestra.run.trial010.stdout:{ 2026-02-23T07:03:24.364 INFO:teuthology.orchestra.run.trial010.stdout: "ceph_version": "ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev)", 2026-02-23T07:03:24.364 INFO:teuthology.orchestra.run.trial010.stdout: "image_id": "d53f437b9974e91900768e66cdcee7298151761d59e3725242d4220dd9008a26", 2026-02-23T07:03:24.364 INFO:teuthology.orchestra.run.trial010.stdout: "repo_digests": [ 2026-02-23T07:03:24.364 INFO:teuthology.orchestra.run.trial010.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:aa1908bf3487bd0120867a595cd8279257306a73ebf8926eb7370fa78e59f3f2" 2026-02-23T07:03:24.365 INFO:teuthology.orchestra.run.trial010.stdout: ] 2026-02-23T07:03:24.365 INFO:teuthology.orchestra.run.trial010.stdout:} 2026-02-23T07:03:24.381 DEBUG:teuthology.orchestra.run.trial010:> sudo mkdir -p /etc/ceph 2026-02-23T07:03:24.461 DEBUG:teuthology.orchestra.run.trial040:> sudo mkdir -p /etc/ceph 2026-02-23T07:03:24.490 DEBUG:teuthology.orchestra.run.trial010:> sudo chmod 777 /etc/ceph 2026-02-23T07:03:24.514 DEBUG:teuthology.orchestra.run.trial040:> sudo chmod 777 /etc/ceph 2026-02-23T07:03:24.554 INFO:tasks.cephadm:Writing seed config... 2026-02-23T07:03:24.554 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-23T07:03:24.555 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-23T07:03:24.555 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-23T07:03:24.555 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-23T07:03:24.555 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-23T07:03:24.555 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-23T07:03:24.555 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-23T07:03:24.555 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2026-02-23T07:03:24.555 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:03:24.555 DEBUG:teuthology.orchestra.run.trial010:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-23T07:03:24.570 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=isa 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 = b87796f5-1085-11f1-bf55-d404e6e7d460 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd mclock skip benchmark = true 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 2026-02-23T07:03:24.571 DEBUG:teuthology.orchestra.run.trial010:mon.trial010> sudo journalctl -f -n 0 -u ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mon.trial010.service 2026-02-23T07:03:24.612 INFO:tasks.cephadm:Bootstrapping... 2026-02-23T07:03:24.613 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 -v bootstrap --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 --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 10.20.193.10 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-23T07:03:24.751 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-23T07:03:24.751 INFO:teuthology.orchestra.run.trial010.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511', '-v', 'bootstrap', '--fsid', 'b87796f5-1085-11f1-bf55-d404e6e7d460', '--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', '10.20.193.10', '--skip-admin-label'] 2026-02-23T07:03:24.751 INFO:teuthology.orchestra.run.trial010.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-23T07:03:24.751 INFO:teuthology.orchestra.run.trial010.stdout:Verifying podman|docker is present... 2026-02-23T07:03:24.768 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stdout 5.6.0 2026-02-23T07:03:24.769 INFO:teuthology.orchestra.run.trial010.stdout:Verifying lvm2 is present... 2026-02-23T07:03:24.769 INFO:teuthology.orchestra.run.trial010.stdout:Verifying time synchronization is in place... 2026-02-23T07:03:24.775 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-23T07:03:24.775 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-23T07:03:24.781 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-23T07:03:24.781 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-23T07:03:24.787 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout enabled 2026-02-23T07:03:24.792 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout active 2026-02-23T07:03:24.792 INFO:teuthology.orchestra.run.trial010.stdout:Unit chronyd.service is enabled and running 2026-02-23T07:03:24.793 INFO:teuthology.orchestra.run.trial010.stdout:Repeating the final host check... 2026-02-23T07:03:24.808 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stdout 5.6.0 2026-02-23T07:03:24.808 INFO:teuthology.orchestra.run.trial010.stdout:podman (/bin/podman) version 5.6.0 is present 2026-02-23T07:03:24.808 INFO:teuthology.orchestra.run.trial010.stdout:systemctl is present 2026-02-23T07:03:24.809 INFO:teuthology.orchestra.run.trial010.stdout:lvcreate is present 2026-02-23T07:03:24.814 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-23T07:03:24.814 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-23T07:03:24.819 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-23T07:03:24.819 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-23T07:03:24.824 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout enabled 2026-02-23T07:03:24.830 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout active 2026-02-23T07:03:24.830 INFO:teuthology.orchestra.run.trial010.stdout:Unit chronyd.service is enabled and running 2026-02-23T07:03:24.830 INFO:teuthology.orchestra.run.trial010.stdout:Host looks OK 2026-02-23T07:03:24.830 INFO:teuthology.orchestra.run.trial010.stdout:Cluster fsid: b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:24.830 INFO:teuthology.orchestra.run.trial010.stdout:Acquiring lock 139778198859680 on /run/cephadm/b87796f5-1085-11f1-bf55-d404e6e7d460.lock 2026-02-23T07:03:24.830 INFO:teuthology.orchestra.run.trial010.stdout:Lock 139778198859680 acquired on /run/cephadm/b87796f5-1085-11f1-bf55-d404e6e7d460.lock 2026-02-23T07:03:24.830 INFO:teuthology.orchestra.run.trial010.stdout:Verifying IP 10.20.193.10 port 3300 ... 2026-02-23T07:03:24.831 INFO:teuthology.orchestra.run.trial010.stdout:Verifying IP 10.20.193.10 port 6789 ... 2026-02-23T07:03:24.831 INFO:teuthology.orchestra.run.trial010.stdout:Base mon IP(s) is [10.20.193.10:3300, 10.20.193.10:6789], mon addrv is [v2:10.20.193.10:3300,v1:10.20.193.10:6789] 2026-02-23T07:03:24.833 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.10 metric 102 2026-02-23T07:03:24.833 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.10 metric 102 2026-02-23T07:03:24.833 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-23T07:03:24.836 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-02-23T07:03:24.836 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout fe80::/64 dev enp1s0f0 proto kernel metric 256 pref medium 2026-02-23T07:03:24.836 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout fe80::/64 dev enp7s0f4u2u2c2 proto kernel metric 1024 pref medium 2026-02-23T07:03:24.838 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-23T07:03:24.838 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-02-23T07:03:24.838 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-23T07:03:24.838 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 2: enp7s0f4u2u2c2: mtu 1500 state UNKNOWN qlen 1000 2026-02-23T07:03:24.838 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout inet6 fe80::b1f4:ac4b:701e:7045/64 scope link noprefixroute 2026-02-23T07:03:24.838 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-23T07:03:24.839 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 3: enp1s0f0: mtu 1500 state UP qlen 1000 2026-02-23T07:03:24.839 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:5e60/64 scope link 2026-02-23T07:03:24.840 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-23T07:03:24.840 INFO:teuthology.orchestra.run.trial010.stdout:Mon IP `10.20.193.10` is in CIDR network `10.20.192.0/20` 2026-02-23T07:03:24.840 INFO:teuthology.orchestra.run.trial010.stdout:Mon IP `10.20.193.10` is in CIDR network `10.20.192.0/20` 2026-02-23T07:03:24.840 INFO:teuthology.orchestra.run.trial010.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20'] 2026-02-23T07:03:24.840 INFO:teuthology.orchestra.run.trial010.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-23T07:03:24.840 INFO:teuthology.orchestra.run.trial010.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511... 2026-02-23T07:03:25.144 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stdout d53f437b9974e91900768e66cdcee7298151761d59e3725242d4220dd9008a26 2026-02-23T07:03:25.144 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511... 2026-02-23T07:03:25.144 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Getting image source signatures 2026-02-23T07:03:25.144 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Copying blob sha256:5dd85e1a50663785d86adae5ef92579a03e6f64059ca9c005010518acdd62048 2026-02-23T07:03:25.144 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Copying blob sha256:946d5c8cbb4d653900a0e5244f1c2e8c1e6b5601a9324635a6e914d3a01e6451 2026-02-23T07:03:25.144 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Copying config sha256:d53f437b9974e91900768e66cdcee7298151761d59e3725242d4220dd9008a26 2026-02-23T07:03:25.144 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Writing manifest to image destination 2026-02-23T07:03:25.266 INFO:teuthology.orchestra.run.trial010.stdout:ceph: stdout ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev) 2026-02-23T07:03:25.267 INFO:teuthology.orchestra.run.trial010.stdout:Ceph version: ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev) 2026-02-23T07:03:25.267 INFO:teuthology.orchestra.run.trial010.stdout:Extracting ceph user uid/gid from container image... 2026-02-23T07:03:25.401 INFO:teuthology.orchestra.run.trial010.stdout:stat: stdout 167 167 2026-02-23T07:03:25.401 INFO:teuthology.orchestra.run.trial010.stdout:Creating initial keys... 2026-02-23T07:03:25.514 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph-authtool: stdout AQC9+5tpB0nwHRAAiLRPWhBwOey9QriXs1nMlQ== 2026-02-23T07:03:25.663 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph-authtool: stdout AQC9+5tpatbBJhAAKnETFD3vfGtaU76iSnu58Q== 2026-02-23T07:03:25.787 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph-authtool: stdout AQC9+5tpSjsmLhAA+sex2SznupD1j3ygcyFUQQ== 2026-02-23T07:03:25.788 INFO:teuthology.orchestra.run.trial010.stdout:Creating initial monmap... 2026-02-23T07:03:25.925 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-23T07:03:25.925 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-23T07:03:25.925 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:25.925 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-23T07:03:25.925 INFO:teuthology.orchestra.run.trial010.stdout:monmaptool for trial010 [v2:10.20.193.10:3300,v1:10.20.193.10:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-23T07:03:25.926 INFO:teuthology.orchestra.run.trial010.stdout:setting min_mon_release = tentacle 2026-02-23T07:03:25.926 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: set fsid to b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:25.926 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-23T07:03:25.926 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:25.926 INFO:teuthology.orchestra.run.trial010.stdout:Creating mon... 2026-02-23T07:03:26.060 INFO:teuthology.orchestra.run.trial010.stdout:create mon.trial010 on 2026-02-23T07:03:26.348 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-02-23T07:03:26.459 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460.target → /etc/systemd/system/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460.target. 2026-02-23T07:03:26.459 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460.target → /etc/systemd/system/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460.target. 2026-02-23T07:03:26.594 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mon.trial010 2026-02-23T07:03:26.594 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Failed to reset failed state of unit ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mon.trial010.service: Unit ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mon.trial010.service not loaded. 2026-02-23T07:03:26.728 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460.target.wants/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mon.trial010.service → /etc/systemd/system/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@.service. 2026-02-23T07:03:26.855 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:26 trial010 podman[35086]: 2026-02-23 07:03:26.830987816 +0000 UTC m=+0.015281354 container create 323f1a008f3478442323a06f8318f106339b426ce7fd03e38d48511221b09786 (image=quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511, name=ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-shweta-testing-2026-02-19-2025, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.41.3, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=244ee61d76a715c3ac0d60eeb3321aefb91c3511, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260216) 2026-02-23T07:03:26.872 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-23T07:03:26.872 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout disabled 2026-02-23T07:03:26.878 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-23T07:03:26.878 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-23T07:03:26.878 INFO:teuthology.orchestra.run.trial010.stdout:firewalld.service is not enabled 2026-02-23T07:03:26.878 INFO:teuthology.orchestra.run.trial010.stdout:Not possible to enable service . firewalld.service is not available 2026-02-23T07:03:26.879 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mon to start... 2026-02-23T07:03:26.879 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mon... 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout cluster: 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout id: b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout services: 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum trial010 (age 0.128753s) [leader: trial010] 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout data: 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-23T07:03:27.031 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout pgs: 2026-02-23T07:03:27.032 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:27.032 INFO:teuthology.orchestra.run.trial010.stdout:mon is available 2026-02-23T07:03:27.032 INFO:teuthology.orchestra.run.trial010.stdout:Assimilating anything we can from ceph.conf... 2026-02-23T07:03:27.146 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:26 trial010 podman[35086]: 2026-02-23 07:03:26.855421017 +0000 UTC m=+0.039714505 container init 323f1a008f3478442323a06f8318f106339b426ce7fd03e38d48511221b09786 (image=quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511, name=ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=244ee61d76a715c3ac0d60eeb3321aefb91c3511, OSD_FLAVOR=default, ceph=True, CEPH_REF=wip-shweta-testing-2026-02-19-2025, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, io.buildah.version=1.41.3, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-23T07:03:27.146 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:26 trial010 podman[35086]: 2026-02-23 07:03:26.858131279 +0000 UTC m=+0.042424757 container start 323f1a008f3478442323a06f8318f106339b426ce7fd03e38d48511221b09786 (image=quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511, name=ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010, ceph=True, CEPH_REF=wip-shweta-testing-2026-02-19-2025, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=244ee61d76a715c3ac0d60eeb3321aefb91c3511, org.label-schema.build-date=20260216, OSD_FLAVOR=default) 2026-02-23T07:03:27.146 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:26 trial010 bash[35086]: 323f1a008f3478442323a06f8318f106339b426ce7fd03e38d48511221b09786 2026-02-23T07:03:27.146 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:26 trial010 podman[35086]: 2026-02-23 07:03:26.82448178 +0000 UTC m=+0.008775269 image pull d53f437b9974e91900768e66cdcee7298151761d59e3725242d4220dd9008a26 quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T07:03:27.146 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:26 trial010 systemd[1]: Started Ceph mon.trial010 for b87796f5-1085-11f1-bf55-d404e6e7d460. 2026-02-23T07:03:27.146 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:26 trial010 ceph-mon[35113]: mkfs b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:27.146 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:26 trial010 ceph-mon[35113]: mon.trial010 is new leader, mons trial010 in quorum (ranks 0) 2026-02-23T07:03:27.179 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:27.179 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [global] 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout fsid = b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.10:3300,v1:10.20.193.10:6789] 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [osd] 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-23T07:03:27.180 INFO:teuthology.orchestra.run.trial010.stdout:Generating new minimal ceph.conf... 2026-02-23T07:03:27.338 INFO:teuthology.orchestra.run.trial010.stdout:Restarting the monitor... 2026-02-23T07:03:27.420 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 systemd[1]: Stopping Ceph mon.trial010 for b87796f5-1085-11f1-bf55-d404e6e7d460... 2026-02-23T07:03:27.677 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010[35109]: 2026-02-23T07:03:27.417+0000 7f4497b11640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.trial010 -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 2026-02-23T07:03:27.677 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010[35109]: 2026-02-23T07:03:27.417+0000 7f4497b11640 -1 mon.trial010@0(leader) e1 *** Got Signal Terminated *** 2026-02-23T07:03:27.677 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 podman[35398]: 2026-02-23 07:03:27.529960896 +0000 UTC m=+0.124678566 container died 323f1a008f3478442323a06f8318f106339b426ce7fd03e38d48511221b09786 (image=quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511, name=ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010, CEPH_SHA1=244ee61d76a715c3ac0d60eeb3321aefb91c3511, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=wip-shweta-testing-2026-02-19-2025, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, org.label-schema.license=GPLv2, OSD_FLAVOR=default, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-23T07:03:27.677 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 podman[35398]: 2026-02-23 07:03:27.537896153 +0000 UTC m=+0.132613813 container remove 323f1a008f3478442323a06f8318f106339b426ce7fd03e38d48511221b09786 (image=quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511, name=ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010, org.label-schema.license=GPLv2, io.buildah.version=1.41.3, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.vendor=CentOS, CEPH_SHA1=244ee61d76a715c3ac0d60eeb3321aefb91c3511, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=wip-shweta-testing-2026-02-19-2025) 2026-02-23T07:03:27.677 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 bash[35398]: ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010 2026-02-23T07:03:27.677 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 systemd[1]: ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mon.trial010.service: Deactivated successfully. 2026-02-23T07:03:27.677 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 systemd[1]: Stopped Ceph mon.trial010 for b87796f5-1085-11f1-bf55-d404e6e7d460. 2026-02-23T07:03:27.677 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 systemd[1]: Starting Ceph mon.trial010 for b87796f5-1085-11f1-bf55-d404e6e7d460... 2026-02-23T07:03:27.707 INFO:teuthology.orchestra.run.trial010.stdout:Setting public_network to 10.20.192.0/20 in global config section 2026-02-23T07:03:27.857 INFO:teuthology.orchestra.run.trial010.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-23T07:03:27.857 INFO:teuthology.orchestra.run.trial010.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-23T07:03:27.857 INFO:teuthology.orchestra.run.trial010.stdout:Creating mgr... 2026-02-23T07:03:27.857 INFO:teuthology.orchestra.run.trial010.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-23T07:03:27.858 INFO:teuthology.orchestra.run.trial010.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-23T07:03:27.858 INFO:teuthology.orchestra.run.trial010.stdout:Verifying port 0.0.0.0:8443 ... 2026-02-23T07:03:27.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 podman[35522]: 2026-02-23 07:03:27.676369473 +0000 UTC m=+0.016378586 container create a24437c9a867f8c56732bb7729a00a7ed1d5513e8afcd4229dd7acb8ac549442 (image=quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511, name=ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010, CEPH_REF=wip-shweta-testing-2026-02-19-2025, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, OSD_FLAVOR=default, CEPH_SHA1=244ee61d76a715c3ac0d60eeb3321aefb91c3511, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-23T07:03:27.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 podman[35522]: 2026-02-23 07:03:27.698939787 +0000 UTC m=+0.038948930 container init a24437c9a867f8c56732bb7729a00a7ed1d5513e8afcd4229dd7acb8ac549442 (image=quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511, name=ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010, org.label-schema.schema-version=1.0, CEPH_REF=wip-shweta-testing-2026-02-19-2025, org.label-schema.build-date=20260216, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=244ee61d76a715c3ac0d60eeb3321aefb91c3511, org.label-schema.license=GPLv2, io.buildah.version=1.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=default) 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 podman[35522]: 2026-02-23 07:03:27.701150312 +0000 UTC m=+0.041159435 container start a24437c9a867f8c56732bb7729a00a7ed1d5513e8afcd4229dd7acb8ac549442 (image=quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511, name=ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, io.buildah.version=1.41.3, OSD_FLAVOR=default, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, CEPH_REF=wip-shweta-testing-2026-02-19-2025, CEPH_SHA1=244ee61d76a715c3ac0d60eeb3321aefb91c3511, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 bash[35522]: a24437c9a867f8c56732bb7729a00a7ed1d5513e8afcd4229dd7acb8ac549442 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 podman[35522]: 2026-02-23 07:03:27.669431937 +0000 UTC m=+0.009441060 image pull d53f437b9974e91900768e66cdcee7298151761d59e3725242d4220dd9008a26 quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 systemd[1]: Started Ceph mon.trial010 for b87796f5-1085-11f1-bf55-d404e6e7d460. 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: set uid:gid to 167:167 (ceph:ceph) 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev - RelWithDebInfo), process ceph-mon, pid 2 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: pidfile_write: ignore empty --pid-file 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: load: jerasure load: lrc 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: RocksDB version: 7.9.2 2026-02-23T07:03:27.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Git sha 0 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Compile date 2026-02-20 21:07:39 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: DB SUMMARY 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: DB Session ID: WPA271H5JSIWZD44PDMT 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: CURRENT file: CURRENT 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: IDENTITY file: IDENTITY 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: SST files in /var/lib/ceph/mon/ceph-trial010/store.db dir, Total Num: 1, files: 000008.sst 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-trial010/store.db: 000009.log size: 76213 ; 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.error_if_exists: 0 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.create_if_missing: 0 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.paranoid_checks: 1 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-23T07:03:27.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.env: 0xed5c80 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.fs: PosixFileSystem 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.info_log: 0x26f91c0 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_file_opening_threads: 16 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.statistics: (nil) 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.use_fsync: 0 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_log_file_size: 0 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.keep_log_file_num: 1000 2026-02-23T07:03:27.942 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.recycle_log_file_num: 0 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.allow_fallocate: 1 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.allow_mmap_reads: 0 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.allow_mmap_writes: 0 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.use_direct_reads: 0 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.create_missing_column_families: 0 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.db_log_dir: 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.wal_dir: 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-23T07:03:27.943 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.advise_random_on_open: 1 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.db_write_buffer_size: 0 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.write_buffer_manager: 0x26f4140 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.rate_limiter: (nil) 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.wal_recovery_mode: 2 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.enable_thread_tracking: 0 2026-02-23T07:03:27.944 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.enable_pipelined_write: 0 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.unordered_write: 0 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.row_cache: None 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.wal_filter: None 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.allow_ingest_behind: 0 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.two_write_queues: 0 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.manual_wal_flush: 0 2026-02-23T07:03:27.945 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.wal_compression: 0 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.atomic_flush: 0 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.log_readahead_size: 0 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.best_efforts_recovery: 0 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.allow_data_in_errors: 0 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.db_host_id: __hostname__ 2026-02-23T07:03:27.946 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_background_jobs: 2 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_background_compactions: -1 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_subcompactions: 1 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_total_wal_size: 0 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-23T07:03:27.947 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_open_files: -1 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bytes_per_sync: 0 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_readahead_size: 0 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_background_flushes: -1 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Compression algorithms supported: 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: kZSTD supported: 0 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: kXpressCompression supported: 0 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: kBZip2Compression supported: 0 2026-02-23T07:03:27.948 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: kLZ4Compression supported: 1 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: kZlibCompression supported: 1 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: kLZ4HCCompression supported: 1 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: kSnappyCompression supported: 1 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-trial010/store.db/MANIFEST-000010 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-23T07:03:27.949 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.merge_operator: 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_filter: None 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_filter_factory: None 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.sst_partitioner_factory: None 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x26f9900) 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout: cache_index_and_filter_blocks: 1 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout: pin_top_level_index_and_filter: 1 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout: index_type: 0 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout: data_block_index_type: 0 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout: index_shortening: 1 2026-02-23T07:03:27.950 INFO:journalctl@ceph.mon.trial010.trial010.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: checksum: 4 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: no_block_cache: 0 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: block_cache: 0x26c7a50 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: block_cache_name: BinnedLRUCache 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: block_cache_options: 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: capacity : 536870912 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: num_shard_bits : 4 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: strict_capacity_limit : 0 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: high_pri_pool_ratio: 0.000 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: block_cache_compressed: (nil) 2026-02-23T07:03:27.951 INFO:journalctl@ceph.mon.trial010.trial010.stdout: persistent_cache: (nil) 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: block_size: 4096 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: block_size_deviation: 10 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: block_restart_interval: 16 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: index_block_restart_interval: 1 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: metadata_block_size: 4096 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: partition_filters: 0 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: use_delta_encoding: 1 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: filter_policy: bloomfilter 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: whole_key_filtering: 1 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: verify_compression: 0 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: read_amp_bytes_per_bit: 0 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: format_version: 5 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: enable_index_compression: 1 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: block_align: 0 2026-02-23T07:03:27.952 INFO:journalctl@ceph.mon.trial010.trial010.stdout: max_auto_readahead_size: 262144 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout: prepopulate_block_cache: 0 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout: initial_auto_readahead_size: 8192 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout: num_file_reads_for_auto_readahead: 2 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.write_buffer_size: 33554432 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_write_buffer_number: 2 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression: NoCompression 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression: Disabled 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.prefix_extractor: nullptr 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.num_levels: 7 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-23T07:03:27.953 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression_opts.level: 32767 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression_opts.strategy: 0 2026-02-23T07:03:27.954 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-23T07:03:27.955 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression_opts.enabled: false 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.target_file_size_base: 67108864 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-23T07:03:27.956 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-23T07:03:27.957 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.arena_block_size: 1048576 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.disable_auto_compactions: 0 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-23T07:03:27.958 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.inplace_update_support: 0 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.bloom_locality: 0 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.max_successive_merges: 0 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.paranoid_file_checks: 0 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.force_consistency_checks: 1 2026-02-23T07:03:27.959 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.report_bg_io_stats: 0 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.ttl: 2592000 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.enable_blob_files: false 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.min_blob_size: 0 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.blob_file_size: 268435456 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.blob_file_starting_level: 0 2026-02-23T07:03:27.960 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-trial010/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 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 057f1a1d-465c-420f-ad1f-f4f45428aec5 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771830207717139, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771830207717858, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 73355, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 227, "table_properties": {"data_size": 71623, "index_size": 181, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 517, "raw_key_size": 9640, "raw_average_key_size": 48, "raw_value_size": 66127, "raw_average_value_size": 333, "num_data_blocks": 8, "num_entries": 198, "num_filter_entries": 198, "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": 1771830207, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "057f1a1d-465c-420f-ad1f-f4f45428aec5", "db_session_id": "WPA271H5JSIWZD44PDMT", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771830207717917, "job": 1, "event": "recovery_finished"} 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-trial010/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x2714e00 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: DB pointer 0x3506000 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-23T07:03:27.961 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: ** DB Stats ** 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: ** Compaction Stats [default] ** 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.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) 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: L0 2/0 73.54 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 133.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-23T07:03:27.962 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Sum 2/0 73.54 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 133.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.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 133.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: ** Compaction Stats [default] ** 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.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) 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.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 133.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-23T07:03:27.963 INFO:journalctl@ceph.mon.trial010.trial010.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Cumulative compaction: 0.00 GB write, 23.86 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Interval compaction: 0.00 GB write, 23.86 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.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 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Block cache BinnedLRUCache@0x26c7a50#2 capacity: 512.00 MB usage: 1.08 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.70 KB,0.00013411%) IndexBlock(2,0.38 KB,7.15256e-05%) Misc(1,0.00 KB,0%) 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout: 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: starting mon.trial010 rank 0 at public addrs [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] at bind addrs [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon_data /var/lib/ceph/mon/ceph-trial010 fsid b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mon.trial010@-1(???) e1 preinit fsid b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mon.trial010@-1(???).mds e1 new map 2026-02-23T07:03:27.964 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mon.trial010@-1(???).mds e1 print_map 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout: e1 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout: btime 2026-02-23T07:03:26:883756+0000 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.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} 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout: legacy client fscid: -1 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout: 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout: No filesystems configured 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mon.trial010@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mon.trial010@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mon.trial010@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mon.trial010@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mon.trial010@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mon.trial010 is new leader, mons trial010 in quorum (ranks 0) 2026-02-23T07:03:27.965 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: monmap epoch 1 2026-02-23T07:03:27.966 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: fsid b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:27.966 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: last_changed 2026-02-23T07:03:25.893052+0000 2026-02-23T07:03:27.966 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: created 2026-02-23T07:03:25.893052+0000 2026-02-23T07:03:27.966 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: min_mon_release 20 (tentacle) 2026-02-23T07:03:27.966 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: election_strategy: 1 2026-02-23T07:03:27.966 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.trial010 2026-02-23T07:03:27.966 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: fsmap 2026-02-23T07:03:27.966 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: osdmap e1: 0 total, 0 up, 0 in 2026-02-23T07:03:27.966 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:27 trial010 ceph-mon[35551]: mgrmap e1: no daemons active 2026-02-23T07:03:27.991 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mgr.trial010.ffktgn 2026-02-23T07:03:27.991 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Failed to reset failed state of unit ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mgr.trial010.ffktgn.service: Unit ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mgr.trial010.ffktgn.service not loaded. 2026-02-23T07:03:28.109 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460.target.wants/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mgr.trial010.ffktgn.service → /etc/systemd/system/ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@.service. 2026-02-23T07:03:28.249 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-23T07:03:28.249 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout disabled 2026-02-23T07:03:28.255 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-23T07:03:28.255 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-23T07:03:28.255 INFO:teuthology.orchestra.run.trial010.stdout:firewalld.service is not enabled 2026-02-23T07:03:28.255 INFO:teuthology.orchestra.run.trial010.stdout:Not possible to enable service . firewalld.service is not available 2026-02-23T07:03:28.262 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-23T07:03:28.262 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout disabled 2026-02-23T07:03:28.268 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-23T07:03:28.268 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-23T07:03:28.268 INFO:teuthology.orchestra.run.trial010.stdout:firewalld.service is not enabled 2026-02-23T07:03:28.268 INFO:teuthology.orchestra.run.trial010.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2026-02-23T07:03:28.268 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mgr to start... 2026-02-23T07:03:28.268 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mgr... 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsid": "b87796f5-1085-11f1-bf55-d404e6e7d460", 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "health": { 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 0 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "trial010" 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-23T07:03:28.432 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "btime": "2026-02-23T07:03:26:883756+0000", 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modified": "2026-02-23T07:03:26.884207+0000", 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-23T07:03:28.433 INFO:teuthology.orchestra.run.trial010.stdout:mgr not available, waiting (1/15)... 2026-02-23T07:03:29.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:28 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/1098038646' entity='client.admin' 2026-02-23T07:03:29.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:28 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/3532465588' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-23T07:03:30.591 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsid": "b87796f5-1085-11f1-bf55-d404e6e7d460", 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "health": { 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-23T07:03:30.592 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 0 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "trial010" 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:30.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-23T07:03:30.594 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "btime": "2026-02-23T07:03:26:883756+0000", 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-23T07:03:30.595 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modified": "2026-02-23T07:03:26.884207+0000", 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-23T07:03:30.596 INFO:teuthology.orchestra.run.trial010.stdout:mgr not available, waiting (2/15)... 2026-02-23T07:03:30.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:30 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/3343158191' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-23T07:03:31.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: Activating manager daemon trial010.ffktgn 2026-02-23T07:03:31.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: mgrmap e2: trial010.ffktgn(active, starting, since 0.00268462s) 2026-02-23T07:03:31.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' cmd={"prefix": "mds metadata"} : dispatch 2026-02-23T07:03:31.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' cmd={"prefix": "osd metadata"} : dispatch 2026-02-23T07:03:31.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' cmd={"prefix": "mon metadata"} : dispatch 2026-02-23T07:03:31.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' cmd={"prefix": "mon metadata", "id": "trial010"} : dispatch 2026-02-23T07:03:31.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' cmd={"prefix": "mgr metadata", "who": "trial010.ffktgn", "id": "trial010.ffktgn"} : dispatch 2026-02-23T07:03:31.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: Manager daemon trial010.ffktgn is now available 2026-02-23T07:03:31.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial010.ffktgn/mirror_snapshot_schedule"} : dispatch 2026-02-23T07:03:31.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:31.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial010.ffktgn/trash_purge_schedule"} : dispatch 2026-02-23T07:03:31.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:31.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:31 trial010 ceph-mon[35551]: from='mgr.14100 10.20.193.10:0/3377756693' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsid": "b87796f5-1085-11f1-bf55-d404e6e7d460", 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "health": { 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 0 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "trial010" 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-02-23T07:03:32.856 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:32.857 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "btime": "2026-02-23T07:03:26:883756+0000", 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modified": "2026-02-23T07:03:26.884207+0000", 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-23T07:03:32.858 INFO:teuthology.orchestra.run.trial010.stdout:mgr is available 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [global] 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout fsid = b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.10:3300,v1:10.20.193.10:6789] 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [osd] 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-23T07:03:33.087 INFO:teuthology.orchestra.run.trial010.stdout:Enabling cephadm module... 2026-02-23T07:03:33.438 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:32 trial010 ceph-mon[35551]: mgrmap e3: trial010.ffktgn(active, since 1.00537s) 2026-02-23T07:03:33.438 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:32 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/739168056' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-23T07:03:34.259 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:33 trial010 ceph-mon[35551]: mgrmap e4: trial010.ffktgn(active, since 2s) 2026-02-23T07:03:34.260 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:33 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/1352700061' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-23T07:03:34.260 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:33 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/1968115267' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-23T07:03:34.280 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-23T07:03:34.280 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 5, 2026-02-23T07:03:34.280 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-23T07:03:34.280 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "active_name": "trial010.ffktgn", 2026-02-23T07:03:34.280 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-23T07:03:34.280 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-23T07:03:34.280 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for the mgr to restart... 2026-02-23T07:03:34.280 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mgr epoch 5... 2026-02-23T07:03:35.438 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:34 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/1968115267' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-23T07:03:35.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:34 trial010 ceph-mon[35551]: mgrmap e5: trial010.ffktgn(active, since 3s) 2026-02-23T07:03:35.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:34 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/3307194710' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-23T07:03:37.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: Active manager daemon trial010.ffktgn restarted 2026-02-23T07:03:37.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: Activating manager daemon trial010.ffktgn 2026-02-23T07:03:37.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: osdmap e2: 0 total, 0 up, 0 in 2026-02-23T07:03:37.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: mgrmap e6: trial010.ffktgn(active, starting, since 0.00251364s) 2026-02-23T07:03:37.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "mon metadata", "id": "trial010"} : dispatch 2026-02-23T07:03:37.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "mgr metadata", "who": "trial010.ffktgn", "id": "trial010.ffktgn"} : dispatch 2026-02-23T07:03:37.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "mds metadata"} : dispatch 2026-02-23T07:03:37.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "osd metadata"} : dispatch 2026-02-23T07:03:37.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "mon metadata"} : dispatch 2026-02-23T07:03:37.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:36 trial010 ceph-mon[35551]: Manager daemon trial010.ffktgn is now available 2026-02-23T07:03:37.777 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-23T07:03:37.778 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2026-02-23T07:03:37.778 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-23T07:03:37.778 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-23T07:03:37.778 INFO:teuthology.orchestra.run.trial010.stdout:mgr epoch 5 is available 2026-02-23T07:03:37.778 INFO:teuthology.orchestra.run.trial010.stdout:Verifying orchestrator module is enabled... 2026-02-23T07:03:38.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:38.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:38.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: Found migration_current of "None". Setting to last migration. 2026-02-23T07:03:38.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:38.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:38.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:38.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:38.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial010.ffktgn/mirror_snapshot_schedule"} : dispatch 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial010.ffktgn/trash_purge_schedule"} : dispatch 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: mgrmap e7: trial010.ffktgn(active, since 1.00352s) 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:37] ENGINE Bus STARTING 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:37] ENGINE Serving on http://10.20.193.10:8765 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/2465162208' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-23T07:03:38.440 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:38] ENGINE Serving on https://10.20.193.10:7150 2026-02-23T07:03:38.441 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:38] ENGINE Bus STARTED 2026-02-23T07:03:38.441 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T07:03:38.441 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:38 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:38] ENGINE Client ('10.20.193.10', 42378) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-23T07:03:38.777 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-23T07:03:38.777 INFO:teuthology.orchestra.run.trial010.stdout:Setting orchestrator backend to cephadm... 2026-02-23T07:03:39.233 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-23T07:03:39.233 INFO:teuthology.orchestra.run.trial010.stdout:Generating ssh key... 2026-02-23T07:03:39.694 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBC+JXzogjxcsV2NdNa4s+YDjaKm6F3awfTIYpdB3vY ceph-b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:39.694 INFO:teuthology.orchestra.run.trial010.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-23T07:03:39.694 INFO:teuthology.orchestra.run.trial010.stdout:Adding key to root@localhost authorized_keys... 2026-02-23T07:03:39.695 INFO:teuthology.orchestra.run.trial010.stdout:Adding host trial010... 2026-02-23T07:03:39.802 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:39 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/2465162208' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-23T07:03:39.803 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:39 trial010 ceph-mon[35551]: mgrmap e8: trial010.ffktgn(active, since 2s) 2026-02-23T07:03:39.803 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:39 trial010 ceph-mon[35551]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:39.803 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:39 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:39.803 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:39 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T07:03:39.803 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:39 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:39.803 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:39 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:40.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:40 trial010 ceph-mon[35551]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:40.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:40 trial010 ceph-mon[35551]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:40.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:40 trial010 ceph-mon[35551]: Generating ssh key... 2026-02-23T07:03:40.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:40 trial010 ceph-mon[35551]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:40.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:40 trial010 ceph-mon[35551]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial010", "addr": "10.20.193.10", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:41.516 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Added host 'trial010' with addr '10.20.193.10' 2026-02-23T07:03:41.516 INFO:teuthology.orchestra.run.trial010.stdout:Deploying mon service with default placement... 2026-02-23T07:03:41.834 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-23T07:03:41.834 INFO:teuthology.orchestra.run.trial010.stdout:Deploying mgr service with default placement... 2026-02-23T07:03:42.059 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:41 trial010 ceph-mon[35551]: Deploying cephadm binary to trial010 2026-02-23T07:03:42.060 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:41 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:42.060 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:41 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T07:03:42.101 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-02-23T07:03:42.101 INFO:teuthology.orchestra.run.trial010.stdout:Deploying crash service with default placement... 2026-02-23T07:03:42.345 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2026-02-23T07:03:42.345 INFO:teuthology.orchestra.run.trial010.stdout:Deploying ceph-exporter service with default placement... 2026-02-23T07:03:42.583 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2026-02-23T07:03:42.583 INFO:teuthology.orchestra.run.trial010.stdout:Deploying prometheus service with default placement... 2026-02-23T07:03:42.826 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2026-02-23T07:03:42.826 INFO:teuthology.orchestra.run.trial010.stdout:Deploying grafana service with default placement... 2026-02-23T07:03:42.828 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: Added host trial010 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: Saving service mon spec with placement count:5 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:42.829 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:42 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:43.073 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2026-02-23T07:03:43.073 INFO:teuthology.orchestra.run.trial010.stdout:Deploying node-exporter service with default placement... 2026-02-23T07:03:43.306 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2026-02-23T07:03:43.306 INFO:teuthology.orchestra.run.trial010.stdout:Deploying alertmanager service with default placement... 2026-02-23T07:03:43.549 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2026-02-23T07:03:43.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:43.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: Saving service mgr spec with placement count:2 2026-02-23T07:03:43.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:43.938 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: Saving service crash spec with placement * 2026-02-23T07:03:43.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:43.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: Saving service ceph-exporter spec with placement * 2026-02-23T07:03:43.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:43.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: Saving service prometheus spec with placement count:1 2026-02-23T07:03:43.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:43.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:43.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:43.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: from='mgr.14118 10.20.193.10:0/3656436002' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:43.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:43 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/1094940377' entity='client.admin' 2026-02-23T07:03:44.009 INFO:teuthology.orchestra.run.trial010.stdout:Enabling the dashboard module... 2026-02-23T07:03:45.258 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:44 trial010 ceph-mon[35551]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:45.258 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:44 trial010 ceph-mon[35551]: Saving service grafana spec with placement count:1 2026-02-23T07:03:45.258 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:44 trial010 ceph-mon[35551]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:45.259 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:44 trial010 ceph-mon[35551]: Saving service node-exporter spec with placement * 2026-02-23T07:03:45.259 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:44 trial010 ceph-mon[35551]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:45.259 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:44 trial010 ceph-mon[35551]: Saving service alertmanager spec with placement count:1 2026-02-23T07:03:45.259 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:44 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/2590069757' entity='client.admin' 2026-02-23T07:03:45.259 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:44 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/46246277' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-23T07:03:45.280 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-23T07:03:45.281 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 9, 2026-02-23T07:03:45.281 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-23T07:03:45.281 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "active_name": "trial010.ffktgn", 2026-02-23T07:03:45.281 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-23T07:03:45.281 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-23T07:03:45.281 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for the mgr to restart... 2026-02-23T07:03:45.282 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mgr epoch 9... 2026-02-23T07:03:46.438 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:45 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/46246277' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-23T07:03:46.438 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:45 trial010 ceph-mon[35551]: mgrmap e9: trial010.ffktgn(active, since 8s) 2026-02-23T07:03:46.438 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:45 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/2581736234' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: Active manager daemon trial010.ffktgn restarted 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: Activating manager daemon trial010.ffktgn 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: osdmap e3: 0 total, 0 up, 0 in 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: mgrmap e10: trial010.ffktgn(active, starting, since 0.00247483s) 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "mon metadata", "id": "trial010"} : dispatch 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "mgr metadata", "who": "trial010.ffktgn", "id": "trial010.ffktgn"} : dispatch 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "mds metadata"} : dispatch 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "osd metadata"} : dispatch 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "mon metadata"} : dispatch 2026-02-23T07:03:48.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:47 trial010 ceph-mon[35551]: Manager daemon trial010.ffktgn is now available 2026-02-23T07:03:48.818 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-23T07:03:48.819 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2026-02-23T07:03:48.819 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-23T07:03:48.819 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-23T07:03:48.819 INFO:teuthology.orchestra.run.trial010.stdout:mgr epoch 9 is available 2026-02-23T07:03:48.819 INFO:teuthology.orchestra.run.trial010.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-02-23T07:03:49.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:48 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T07:03:49.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:48 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial010.ffktgn/mirror_snapshot_schedule"} : dispatch 2026-02-23T07:03:49.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:48 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial010.ffktgn/trash_purge_schedule"} : dispatch 2026-02-23T07:03:49.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:48 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:49.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:48 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:49.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:48 trial010 ceph-mon[35551]: mgrmap e11: trial010.ffktgn(active, since 1.00464s) 2026-02-23T07:03:49.317 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIFHzCCAwegAwIBAgIUOE92atpGr+YdVCBCl3KNWbKDx2swDQYJKoZIhvcNAQEL\nBQAwPDE6MDgGA1UEAwwxY2VwaGFkbS1yb290LWI4Nzc5NmY1LTEwODUtMTFmMS1i\nZjU1LWQ0MDRlNmU3ZDQ2MDAeFw0yNjAyMjMwNzAzNDlaFw0yOTAyMjIwNzAzNDla\nMBcxFTATBgNVBAMMDDEwLjIwLjE5My4xMDCCAiIwDQYJKoZIhvcNAQEBBQADggIP\nADCCAgoCggIBALiSw+ba9TbZlkuSujfWv7H1dNmMGbntJBX4pZw8/cuLwWwlCu+r\nGSg+O+qipCEnAJjXyDmIV4Ttk2hSOxBfAqFImCcJDrbzZ52uIwcYMVkEnZ79TPct\ndzzCwMpxDyAdpCcJ8AG6kaFDM0iy5ZgB0dGV1R5PpB0KVfTbxtpqUVIrsfWuscbF\nzrDlAJiABq09ov/poOa+6aTz9UZicubPPu3IHDY3KgnAuVaoVOCK62+xS7Z6AyZE\n3uaATsLkn8FeROyI7nVa1wzSso/hCur25hRBnOD+VkKCDntgd+tMQUFwNqoiwWXU\ne7k31I3WVfSizpCQpbYsb0mV06bwKJhrKBn5+0Trdjz+MqFrEqqyDRYBAskfxvG1\nK0Nz0mmohvWvsLSmkHtieFVYxcqlzyrjca6ASKqor/udF4UTBN6mrf5Js45vFAV2\nDmBqFyANkUMI/YQbbjiQZFHvKjm8E2t2PRjJ0JB2fnBPKEAyCyq6dwY5SZpQOGPN\ntwkOzkMHaDsSsBoOwzGWKsE+92II4qLMD90XApQitwbIJFAwwM4/Z8HZLAZZzolc\nlXtxsHWgZUh1H+KIYrxqQffcIisfHgIe9CosPiAdN1U2rYeduByFn8YKjUPvwMp3\n95nRGdTzh1wijFE3EmL0sYaHHIIvzdpsZHf32cepO9jYQ8atl/YSSYaDAgMBAAGj\nPjA8MCwGA1UdEQQlMCOCCHRyaWFsMDEwghFkYXNoYm9hcmRfc2VydmVyc4cEChTB\nCjAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQAYP4dssTAt5sCrSbEl\n8gx4R+TZYWBDUQF9dLVhB0FVKBdHrHt53TTgqHlbiBfv0KBvB6prtDC4mA9PpWBL\nTcbzYREfrBfeFiG6Ompkid1QlKBlB6Ve3f4jATCvlw7R5Te/ttxBTzmH8uCfKE+U\nMMpg5UbULPrktb1erImNw3XhHnR8oh1cLPWUESP7uLryxllOwsH30O3mRmuv/zNv\nMWyUb+6tpfB+iwej5Vpv+LtLZhynsNfqkrk3LD6Eq9eyPGqITKCvBgJoRsUODlVp\nWMhEJOeVflUEmhj6hSeFDZSuYE/rbz3i2sQgcg22XBXnKnlB4jryHJPMYW725E3S\nUXyC1q2YRmMJj78im6T5xbJGq5sKV8Msp/3+iLXrAd8fBoMYkkcR83Z4dHDFiGh1\n5lJ7TAYve2dXdHsRC/7usyiSPd7GMExwnneQRTo7NVexlFIviw8EWC3rTLVDCp+x\nknN1oDX78YwpeO5CFvu/aBodxHz9bmzx2ADy99+ZMtbSm30eqYlSv0JsvZF9K9Yb\nsfDHuf1ze87r4AyDO8B9jaWqrc6PGgI6krhtwwIjqkL1V0VjFSWlnv3bX/Ql5YVX\nJpoXIcvjlHA+Co10A/b9uhQaZu9b6Jhk86hazf4lIvbRlszMpYRz16vNaKeYEDki\nHWvaqFgtWwcc5zwtgstH8k0CrQ==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKAIBAAKCAgEAuJLD5tr1NtmWS5K6N9a/sfV02YwZue0kFfilnDz9y4vBbCUK\n76sZKD476qKkIScAmNfIOYhXhO2TaFI7EF8CoUiYJwkOtvNnna4jBxgxWQSdnv1M\n9y13PMLAynEPIB2kJwnwAbqRoUMzSLLlmAHR0ZXVHk+kHQpV9NvG2mpRUiux9a6x\nxsXOsOUAmIAGrT2i/+mg5r7ppPP1RmJy5s8+7cgcNjcqCcC5VqhU4Irrb7FLtnoD\nJkTe5oBOwuSfwV5E7IjudVrXDNKyj+EK6vbmFEGc4P5WQoIOe2B360xBQXA2qiLB\nZdR7uTfUjdZV9KLOkJCltixvSZXTpvAomGsoGfn7ROt2PP4yoWsSqrINFgECyR/G\n8bUrQ3PSaaiG9a+wtKaQe2J4VVjFyqXPKuNxroBIqqiv+50XhRME3qat/kmzjm8U\nBXYOYGoXIA2RQwj9hBtuOJBkUe8qObwTa3Y9GMnQkHZ+cE8oQDILKrp3BjlJmlA4\nY823CQ7OQwdoOxKwGg7DMZYqwT73YgjioswP3RcClCK3BsgkUDDAzj9nwdksBlnO\niVyVe3GwdaBlSHUf4ohivGpB99wiKx8eAh70Kiw+IB03VTath524HIWfxgqNQ+/A\nynf3mdEZ1POHXCKMUTcSYvSxhoccgi/N2mxkd/fZx6k72NhDxq2X9hJJhoMCAwEA\nAQKCAgBDV1DgXozPCU4bnpoQm2pvXFXYtZQBUPM0jPanbV1PsVrNwSofTXatRx+H\nOPXXHqrKGRh1XThJSIDas/3WuEN2Ys0YmOZke6QXVJx1Dy+aAeQcSOCW4mC5q3i5\no8xX9Fia4bZOeyp9As6oPJUmA6vw4tDR8U64Rbgc0T7ZG6c16rlQIP+9vRfvVG4G\nNde5x148LppE9ey7AUNA/dRcP8r+6F7arP/KdSVp55qoHidOJgqwtg2GHeSRhsi1\ntMJQw7sz7bXK3WzOweTiN8JK/e/t/g5lzIXeWCM+gnDeSYEZhf57zphvNbo6VpNX\neJb93ZSuDAhZ0hZ8a4zAQKkfCyGi0CMpf1K9x1p8dDnZP+9r73pglxe/VtGQQl+D\nTxkEhgDuJEK6sXQu09fEWsFlR0sVFDwgs++n/fJQxoixVfdpMio3+9ws5c/QRf5M\ngGMtvAAB6369o6B6sp85xUQzutH3ksGb7BiKZ2X2OR4UjeYdeY/yO4Pl5U5bcySy\n0eNBPpWuHy4PaM8aOqniYwl1XZ5lrbwoR9Z5O/uptDm6cJqwxdg/luyce4CeCpNO\nrpwuJzmlBXwKEQDj1Buyg6TYdFULkHccADxE3BGEEGVgtbZzWOk9+kiMxeeQ4dlz\nzkMlCw4EIMAGAzaH4gpcbb9MVxa4+XU4Qr1XfB8C9sQOqtEj0QKCAQEA/XOHO9G2\nxIpuVGudWuRqpbQ7DQRGfCWdSxuHDTbmgQn2pQ8Tliy0/CwnSmSd3oLSIGeIhq1I\n/9HTA4LIZ8x/2upwTFdO3g0Y6rBjTWfeuBCwez1NIDjObjuaJT7z6cEwkeA7ELg7\nbF3IUqnToDvMw5OfgoI4u4fgpqn/MyK+sV+6PP2KNo8BE/5gULzsWV923ynRhBUH\n9Ieb0bVCShjgcLQlQNrOfPKGdtkW8vCsfSHxdELMkxqBjwhpH/+ISFP+qUYbhaeB\nL35D9dETOFXYfNfuTmGzJGmM4j0QxgcFX950DYPkzzRZ7PvKvAX6/ZkNOYaD3d8h\nxZ5UgZCkOCWNmwKCAQEAum3rzc+H3L6LuscnyZpO4wc0/cL5hefR/dk5Ul3iof81\nFz2lNTKfwE1dI54G1vS+z5Om6Z3CQrboXWnT4Wf/Cs4a9H6hLmEJQL3UDRGnj5ed\nkxnQW5oNsI4MOLBrLsOB0KcKjW+3FjLvMbg8lUBGG4QRnSgk07h1fL/1Fpi5+cCG\n0wBZu3askScuyITd2Lvny8HIwSRduRU1RvN+OqbiAHzf4AYu82j/X6jQ1yiFiNcx\nVjxmMus9lu0Vi6AmgkEOQZ7h5lNhCb1LJrm0Vc8wgd8Z6lGqK4qjMUf2UZfQkI/f\nmF2snAukkk890OhdnSnIQD62K8Q+ShFdgtXqeQZtOQKCAQEAnEQZsikoDd/oDIbZ\nWwwQMSCBdBIZvzuV0pQjXWNnFVJmTviPs/zWjdBPXU/SAjoYgkAzbg3zPz9IYhbF\npzHv9rKrEHaYOtJKdZDReQ08xbIMjb+LCP3dURvQe3xn+MzTPG3LHRDqGnNsKoNo\n5pdYNZGUPGw7vGwXd8rCfO3EMyp5cldEW0UqfgBNtBn3g1cXvJpVAqHQ6NSfntmq\nCHN0FikL+wOtYl5Jx4cr3hfD0dcWvv7ckSo7jUu7PS5ZAXdAQW/nUi2nufeYwTvq\nJMbRFpAv7wXP5PhrE6Zg7CeyCZznYtnaPmLhuvq30dvCF4/BFqG4Nhj4ApcPNV9P\n0QpeVwKCAQAhljIYVx4z/8QutziM0pcJwb+jRCAuJrCnWh5An5d39gF7mWiNJ/yt\n6YIxK4Qx78/8l65HgluAJ3G/epRolJLXQICMsc+aCnNfTZPJcvfMH9WMrebiyeNT\nfpPnFqmIuEJH9AArsQe8IRsEyxtnDDhVNrrxpEzWM/I+slqWYpeGzk+77eE8q8m1\nMOj1yTIqnNfK1rOzUDjuYkrB6JZCPNSUn+q5coO86Jqxgjl1ueAs4hAKaEFFRSpI\naZgrGoQ1jUDjQ5uRIk5mMcs7Q9Ogbf5gN3B0zZep1oVGGJ/g3Uf+81ymF6JETris\nf0g0vdg3u1JPeLzbL7TFJVHCg4WFnknJAoIBAGcr2Y8Pr9Ma2+8NUOl17ODPZRa+\ngklKqwqITqG2as37rwyzfLp4mqMajqriBPKKOmG3FPqmFqDx7t4vw6zmv4No7WLd\nxaBMukKpqE2xmTfza8oXZ5ZNmY6nplXp0o0IsnxDBLV51VEMb63dQoSxKaiq0hqM\nyqaHQuMP3l4Nq1aCpimFJj2FLQwHBn+vPIY9UNX02VD18ioSKpmjXDHqT/KXihJL\n+N/69wpDicNLEjGqdoEBpyemtDEm97doJLKjPPNFP5QR4qYADMMeGvdcQjdi/jKS\n5SfThlYv1a2Mfo88J5sumWTgFDS15dkZVMsgKBqKO07oeSjci5TqKM1bk24=\n-----END RSA PRIVATE KEY-----\n"} 2026-02-23T07:03:49.548 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-02-23T07:03:49.779 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-02-23T07:03:49.779 INFO:teuthology.orchestra.run.trial010.stdout:Creating initial admin user... 2026-02-23T07:03:50.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:48] ENGINE Bus STARTING 2026-02-23T07:03:50.188 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:48] ENGINE Serving on http://10.20.193.10:8765 2026-02-23T07:03:50.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:48] ENGINE Serving on https://10.20.193.10:7150 2026-02-23T07:03:50.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:48] ENGINE Bus STARTED 2026-02-23T07:03:50.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: [23/Feb/2026:07:03:48] ENGINE Client ('10.20.193.10', 59414) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-23T07:03:50.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-23T07:03:50.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-23T07:03:50.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:50.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:50.189 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:49 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:50.221 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$ZVtvueATG58epIFs3YRlzO824fY5ZuATwRm1SL.LdTGzOxfie1C2W", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1771830230, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-02-23T07:03:50.221 INFO:teuthology.orchestra.run.trial010.stdout:Fetching dashboard port number... 2026-02-23T07:03:50.448 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 8443 2026-02-23T07:03:50.456 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-23T07:03:50.456 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout disabled 2026-02-23T07:03:50.462 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-23T07:03:50.463 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-23T07:03:50.463 INFO:teuthology.orchestra.run.trial010.stdout:firewalld.service is not enabled 2026-02-23T07:03:50.463 INFO:teuthology.orchestra.run.trial010.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-02-23T07:03:50.464 INFO:teuthology.orchestra.run.trial010.stdout:Ceph Dashboard is now available at: 2026-02-23T07:03:50.464 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.464 INFO:teuthology.orchestra.run.trial010.stdout: URL: https://trial010:8443/ 2026-02-23T07:03:50.464 INFO:teuthology.orchestra.run.trial010.stdout: User: admin 2026-02-23T07:03:50.464 INFO:teuthology.orchestra.run.trial010.stdout: Password: eps3exacig 2026-02-23T07:03:50.464 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.464 INFO:teuthology.orchestra.run.trial010.stdout:Saving cluster configuration to /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/config directory 2026-02-23T07:03:50.736 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout:Or, if you are only running a single cluster on this host: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout:Please consider enabling telemetry to help improve Ceph: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: ceph telemetry on 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout:For more information see: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:50.737 INFO:teuthology.orchestra.run.trial010.stdout:Bootstrap complete. 2026-02-23T07:03:50.744 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout static 2026-02-23T07:03:50.750 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-02-23T07:03:50.750 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-23T07:03:50.750 INFO:teuthology.orchestra.run.trial010.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-02-23T07:03:50.907 INFO:tasks.cephadm:Fetching config... 2026-02-23T07:03:50.907 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:03:50.907 DEBUG:teuthology.orchestra.run.trial010:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-02-23T07:03:50.922 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-02-23T07:03:50.922 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:03:50.922 DEBUG:teuthology.orchestra.run.trial010:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-02-23T07:03:50.973 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:50 trial010 ceph-mon[35551]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:50.973 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:50 trial010 ceph-mon[35551]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:50.974 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:50 trial010 ceph-mon[35551]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:50.974 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:50 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:50.974 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:50 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/16558606' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-23T07:03:50.974 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:50 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/3482022525' entity='client.admin' 2026-02-23T07:03:50.974 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:50 trial010 ceph-mon[35551]: mgrmap e12: trial010.ffktgn(active, since 2s) 2026-02-23T07:03:50.979 INFO:tasks.cephadm:Fetching mon keyring... 2026-02-23T07:03:50.979 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:03:50.979 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/keyring of=/dev/stdout 2026-02-23T07:03:51.046 INFO:tasks.cephadm:Fetching pub ssh key... 2026-02-23T07:03:51.046 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:03:51.046 DEBUG:teuthology.orchestra.run.trial010:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-02-23T07:03:51.102 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-02-23T07:03:51.102 DEBUG:teuthology.orchestra.run.trial010:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBC+JXzogjxcsV2NdNa4s+YDjaKm6F3awfTIYpdB3vY ceph-b87796f5-1085-11f1-bf55-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-23T07:03:51.177 INFO:teuthology.orchestra.run.trial010.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBC+JXzogjxcsV2NdNa4s+YDjaKm6F3awfTIYpdB3vY ceph-b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:51.187 DEBUG:teuthology.orchestra.run.trial040:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBC+JXzogjxcsV2NdNa4s+YDjaKm6F3awfTIYpdB3vY ceph-b87796f5-1085-11f1-bf55-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-23T07:03:51.224 INFO:teuthology.orchestra.run.trial040.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBC+JXzogjxcsV2NdNa4s+YDjaKm6F3awfTIYpdB3vY ceph-b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:03:51.234 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-02-23T07:03:51.349 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:03:51.604 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-02-23T07:03:51.604 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-02-23T07:03:51.722 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:03:51.977 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial040 2026-02-23T07:03:51.977 DEBUG:teuthology.orchestra.run.trial040:> set -ex 2026-02-23T07:03:51.977 DEBUG:teuthology.orchestra.run.trial040:> dd of=/etc/ceph/ceph.conf 2026-02-23T07:03:51.995 DEBUG:teuthology.orchestra.run.trial040:> set -ex 2026-02-23T07:03:51.995 DEBUG:teuthology.orchestra.run.trial040:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-23T07:03:52.053 INFO:tasks.cephadm:Adding host trial040 to orchestrator... 2026-02-23T07:03:52.053 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph orch host add trial040 2026-02-23T07:03:52.193 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:03:52.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:52 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/3572923745' entity='client.admin' 2026-02-23T07:03:52.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:52 trial010 ceph-mon[35551]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:52.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:52 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:52.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:52 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:52.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:52 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:52.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:52 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "config rm", "who": "osd/host:trial010", "name": "osd_memory_target"} : dispatch 2026-02-23T07:03:52.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:52 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-23T07:03:52.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:52 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-23T07:03:52.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:52 trial010 ceph-mon[35551]: Updating trial010:/etc/ceph/ceph.conf 2026-02-23T07:03:53.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:53 trial010 ceph-mon[35551]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial040", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T07:03:53.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:53 trial010 ceph-mon[35551]: Deploying cephadm binary to trial040 2026-02-23T07:03:53.939 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:53 trial010 ceph-mon[35551]: Updating trial010:/var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/config/ceph.conf 2026-02-23T07:03:54.127 INFO:teuthology.orchestra.run.trial010.stdout:Added host 'trial040' with addr '10.20.193.40' 2026-02-23T07:03:54.166 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-23T07:03:54.283 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:03:54.515 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:03:54.515 INFO:teuthology.orchestra.run.trial010.stdout:[{"addr": "10.20.193.10", "hostname": "trial010", "labels": [], "status": ""}, {"addr": "10.20.193.40", "hostname": "trial040", "labels": [], "status": ""}] 2026-02-23T07:03:54.554 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph config-key ls 2026-02-23T07:03:54.669 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:03:54.934 INFO:teuthology.orchestra.run.trial010.stdout:[ 2026-02-23T07:03:54.934 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/", 2026-02-23T07:03:54.935 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-23T07:03:54.935 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-23T07:03:54.935 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-23T07:03:54.935 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/auth_debug", 2026-02-23T07:03:54.935 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/container_image", 2026-02-23T07:03:54.935 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-23T07:03:54.935 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/log_to_file", 2026-02-23T07:03:54.935 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/log_to_journald", 2026-02-23T07:03:54.935 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/log_to_stderr", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-23T07:03:54.936 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/debug_ms", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-23T07:03:54.937 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/debug_mon", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/debug_ms", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/debug_paxos", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T07:03:54.938 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/debug_ms", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/debug_osd", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-23T07:03:54.939 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-23T07:03:54.940 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/3/", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/3/+global/public_network", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/4/", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/5/", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/6/", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/6/+global/container_image", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/6/-global/container_image", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/7/", 2026-02-23T07:03:54.941 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/8/", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/9/", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/auth_debug", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/container_image", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-23T07:03:54.942 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/log_to_file", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/log_to_journald", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/log_to_stderr", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_allow_pool_delete", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_clock_drift_allowed", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_cluster_log_to_file", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_max_pg_per_osd", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T07:03:54.943 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/ms_die_on_bug", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/ms_die_on_old_message", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/public_network", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/debug_mgr", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/debug_ms", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-23T07:03:54.944 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/debug_mon", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/debug_ms", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/debug_paxos", 2026-02-23T07:03:54.945 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_data_avail_warn", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/bdev_debug_aio", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/debug_ms", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/debug_osd", 2026-02-23T07:03:54.946 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_op_order", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_shutdown", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_mclock_profile", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_memory_target_autotune", 2026-02-23T07:03:54.947 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_op_queue", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_scrub_max_interval", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-23T07:03:54.948 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/client_keyrings", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/config_checks", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/host.trial010", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/host.trial010.devices.0", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/inventory", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.crash", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.grafana", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.mgr", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.mon", 2026-02-23T07:03:54.949 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.prometheus", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/accessdb_v2", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/cluster/status", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/crt", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/key", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/telemetry/collection", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/telemetry/report_id", 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/telemetry/salt" 2026-02-23T07:03:54.950 INFO:teuthology.orchestra.run.trial010.stdout:] 2026-02-23T07:03:54.971 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-23T07:03:55.086 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:03:55.201 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:55 trial010 ceph-mon[35551]: Updating trial010:/etc/ceph/ceph.client.admin.keyring 2026-02-23T07:03:55.201 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:55 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:55.201 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:55 trial010 ceph-mon[35551]: Added host trial040 2026-02-23T07:03:55.201 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:55 trial010 ceph-mon[35551]: from='client.14194 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-23T07:03:55.201 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:55 trial010 ceph-mon[35551]: mgrmap e13: trial010.ffktgn(active, since 6s) 2026-02-23T07:03:55.202 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:55 trial010 ceph-mon[35551]: Updating trial010:/var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-23T07:03:55.202 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:55 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/170611060' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-23T07:03:55.414 INFO:teuthology.orchestra.run.trial010.stdout:{"trial010": {"hostname": "trial010", "addr": "10.20.193.10", "labels": [], "status": ""}, "trial040": {"hostname": "trial040", "addr": "10.20.193.40", "labels": [], "status": ""}} 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/1199338706' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial010", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial010", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-23T07:03:56.306 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:56 trial010 ceph-mon[35551]: Deploying daemon ceph-exporter.trial010 on trial010 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial010", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial010", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: Deploying daemon crash.trial010 on trial010 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:57.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:57 trial010 ceph-mon[35551]: Deploying daemon node-exporter.trial010 on trial010 2026-02-23T07:03:59.240 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:58 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:59.240 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:58 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:59.240 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:58 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:59.240 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:58 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:59.241 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:58 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:59.241 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:58 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:03:59.241 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:58 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.416 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: Deploying daemon alertmanager.trial010 on trial010 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-23T07:04:00.439 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:03:59 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:00.534 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:04:00.756 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:04:00.756 INFO:teuthology.orchestra.run.trial010.stdout:[{"addr": "10.20.193.10", "hostname": "trial010", "labels": [], "status": ""}, {"addr": "10.20.193.40", "hostname": "trial040", "labels": [], "status": ""}] 2026-02-23T07:04:00.795 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph config-key ls 2026-02-23T07:04:01.062 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:04:01.102 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:00 trial010 ceph-mon[35551]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-23T07:04:01.103 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:00 trial010 ceph-mon[35551]: Deploying daemon grafana.trial010 on trial010 2026-02-23T07:04:01.351 INFO:teuthology.orchestra.run.trial010.stdout:[ 2026-02-23T07:04:01.352 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/10/", 2026-02-23T07:04:01.352 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/10/+mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-23T07:04:01.352 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/", 2026-02-23T07:04:01.352 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-23T07:04:01.352 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-23T07:04:01.353 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-23T07:04:01.353 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/auth_debug", 2026-02-23T07:04:01.353 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/container_image", 2026-02-23T07:04:01.353 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-23T07:04:01.353 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/log_to_file", 2026-02-23T07:04:01.353 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/log_to_journald", 2026-02-23T07:04:01.354 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/log_to_stderr", 2026-02-23T07:04:01.354 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-23T07:04:01.354 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-23T07:04:01.354 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-23T07:04:01.354 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-23T07:04:01.354 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-23T07:04:01.354 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T07:04:01.355 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-23T07:04:01.355 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T07:04:01.355 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T07:04:01.355 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-23T07:04:01.355 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-23T07:04:01.355 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-23T07:04:01.356 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-23T07:04:01.356 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-23T07:04:01.356 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-23T07:04:01.356 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/debug_ms", 2026-02-23T07:04:01.356 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T07:04:01.356 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T07:04:01.356 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T07:04:01.357 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-23T07:04:01.357 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-23T07:04:01.357 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/debug_mon", 2026-02-23T07:04:01.357 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/debug_ms", 2026-02-23T07:04:01.357 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/debug_paxos", 2026-02-23T07:04:01.357 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-23T07:04:01.357 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-23T07:04:01.358 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-23T07:04:01.358 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-23T07:04:01.358 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-23T07:04:01.358 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-23T07:04:01.358 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T07:04:01.358 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T07:04:01.358 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-23T07:04:01.359 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/debug_ms", 2026-02-23T07:04:01.359 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/debug_osd", 2026-02-23T07:04:01.359 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-23T07:04:01.359 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-23T07:04:01.359 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-23T07:04:01.359 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-23T07:04:01.359 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-23T07:04:01.360 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-23T07:04:01.360 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-23T07:04:01.360 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T07:04:01.360 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-23T07:04:01.360 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-23T07:04:01.360 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-23T07:04:01.360 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-23T07:04:01.361 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-23T07:04:01.361 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-23T07:04:01.361 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-23T07:04:01.361 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-23T07:04:01.361 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-23T07:04:01.361 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-23T07:04:01.361 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/3/", 2026-02-23T07:04:01.362 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/3/+global/public_network", 2026-02-23T07:04:01.362 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/4/", 2026-02-23T07:04:01.362 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-23T07:04:01.362 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/5/", 2026-02-23T07:04:01.362 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-23T07:04:01.362 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/6/", 2026-02-23T07:04:01.362 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/6/+global/container_image", 2026-02-23T07:04:01.363 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/6/-global/container_image", 2026-02-23T07:04:01.363 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/7/", 2026-02-23T07:04:01.363 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-23T07:04:01.363 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/8/", 2026-02-23T07:04:01.363 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-23T07:04:01.363 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/9/", 2026-02-23T07:04:01.363 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-23T07:04:01.364 INFO:teuthology.orchestra.run.trial010.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-23T07:04:01.364 INFO:teuthology.orchestra.run.trial010.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-23T07:04:01.364 INFO:teuthology.orchestra.run.trial010.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-23T07:04:01.364 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/auth_debug", 2026-02-23T07:04:01.364 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/container_image", 2026-02-23T07:04:01.364 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-23T07:04:01.364 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/log_to_file", 2026-02-23T07:04:01.365 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/log_to_journald", 2026-02-23T07:04:01.365 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/log_to_stderr", 2026-02-23T07:04:01.365 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_allow_pool_delete", 2026-02-23T07:04:01.365 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_clock_drift_allowed", 2026-02-23T07:04:01.365 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_cluster_log_to_file", 2026-02-23T07:04:01.365 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_max_pg_per_osd", 2026-02-23T07:04:01.365 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-23T07:04:01.366 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T07:04:01.366 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-23T07:04:01.366 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T07:04:01.366 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T07:04:01.366 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-23T07:04:01.366 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/ms_die_on_bug", 2026-02-23T07:04:01.366 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/ms_die_on_old_message", 2026-02-23T07:04:01.367 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-23T07:04:01.367 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-23T07:04:01.367 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/public_network", 2026-02-23T07:04:01.367 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/debug_mgr", 2026-02-23T07:04:01.367 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/debug_ms", 2026-02-23T07:04:01.367 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-23T07:04:01.367 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-23T07:04:01.368 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-23T07:04:01.368 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-23T07:04:01.368 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-23T07:04:01.368 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-23T07:04:01.368 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T07:04:01.368 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T07:04:01.368 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T07:04:01.368 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-23T07:04:01.369 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-23T07:04:01.369 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/debug_mon", 2026-02-23T07:04:01.369 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/debug_ms", 2026-02-23T07:04:01.369 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/debug_paxos", 2026-02-23T07:04:01.369 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_data_avail_warn", 2026-02-23T07:04:01.369 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-23T07:04:01.369 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-23T07:04:01.370 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-23T07:04:01.370 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-23T07:04:01.370 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-23T07:04:01.370 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T07:04:01.370 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T07:04:01.370 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/bdev_debug_aio", 2026-02-23T07:04:01.370 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/debug_ms", 2026-02-23T07:04:01.371 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/debug_osd", 2026-02-23T07:04:01.371 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-23T07:04:01.371 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_op_order", 2026-02-23T07:04:01.371 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-23T07:04:01.371 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_shutdown", 2026-02-23T07:04:01.371 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-23T07:04:01.371 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-23T07:04:01.372 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-23T07:04:01.372 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T07:04:01.372 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_mclock_profile", 2026-02-23T07:04:01.372 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-23T07:04:01.372 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_memory_target_autotune", 2026-02-23T07:04:01.372 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_op_queue", 2026-02-23T07:04:01.372 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-23T07:04:01.372 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-23T07:04:01.373 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-23T07:04:01.373 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-23T07:04:01.373 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_scrub_max_interval", 2026-02-23T07:04:01.373 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-23T07:04:01.373 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-23T07:04:01.373 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_alertmanager_cert", 2026-02-23T07:04:01.373 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_ceph-exporter_cert", 2026-02-23T07:04:01.374 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_grafana_cert", 2026-02-23T07:04:01.374 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_node-exporter_cert", 2026-02-23T07:04:01.374 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-23T07:04:01.374 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-23T07:04:01.374 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_alertmanager_key", 2026-02-23T07:04:01.374 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_ceph-exporter_key", 2026-02-23T07:04:01.375 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_grafana_key", 2026-02-23T07:04:01.375 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_node-exporter_key", 2026-02-23T07:04:01.375 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-23T07:04:01.375 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/client_keyrings", 2026-02-23T07:04:01.375 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/config_checks", 2026-02-23T07:04:01.375 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/host.trial010", 2026-02-23T07:04:01.375 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/host.trial010.devices.0", 2026-02-23T07:04:01.376 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/inventory", 2026-02-23T07:04:01.376 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/osd_remove_queue", 2026-02-23T07:04:01.376 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/prometheus/web_password", 2026-02-23T07:04:01.376 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/prometheus/web_user", 2026-02-23T07:04:01.376 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-23T07:04:01.376 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-23T07:04:01.376 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.crash", 2026-02-23T07:04:01.377 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.grafana", 2026-02-23T07:04:01.377 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.mgr", 2026-02-23T07:04:01.377 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.mon", 2026-02-23T07:04:01.377 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-23T07:04:01.377 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.prometheus", 2026-02-23T07:04:01.377 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-23T07:04:01.377 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-23T07:04:01.378 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/accessdb_v2", 2026-02-23T07:04:01.378 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/cluster/status", 2026-02-23T07:04:01.378 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/crt", 2026-02-23T07:04:01.378 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/key", 2026-02-23T07:04:01.378 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/progress/completed", 2026-02-23T07:04:01.378 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/telemetry/collection", 2026-02-23T07:04:01.378 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/telemetry/report_id", 2026-02-23T07:04:01.379 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/telemetry/salt" 2026-02-23T07:04:01.379 INFO:teuthology.orchestra.run.trial010.stdout:] 2026-02-23T07:04:01.387 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-23T07:04:01.508 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:04:01.827 INFO:teuthology.orchestra.run.trial010.stdout:{"trial010": {"hostname": "trial010", "addr": "10.20.193.10", "labels": [], "status": ""}, "trial040": {"hostname": "trial040", "addr": "10.20.193.40", "labels": [], "status": ""}} 2026-02-23T07:04:02.265 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:01 trial010 ceph-mon[35551]: from='client.14201 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-23T07:04:02.265 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:01 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/1858455555' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-23T07:04:02.265 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:01 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/3442731683' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-23T07:04:04.228 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:03 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:06.040 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:05 trial010 ceph-mon[35551]: Deploying daemon prometheus.trial010 on trial010 2026-02-23T07:04:06.828 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-23T07:04:06.951 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:04:07.182 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-23T07:04:07.183 INFO:teuthology.orchestra.run.trial010.stdout:[{"addr": "10.20.193.10", "hostname": "trial010", "labels": [], "status": ""}, {"addr": "10.20.193.40", "hostname": "trial040", "labels": [], "status": ""}] 2026-02-23T07:04:07.330 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph config-key ls 2026-02-23T07:04:07.449 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:04:07.720 INFO:teuthology.orchestra.run.trial010.stdout:[ 2026-02-23T07:04:07.720 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/10/", 2026-02-23T07:04:07.720 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/10/+mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-23T07:04:07.720 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/", 2026-02-23T07:04:07.720 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-23T07:04:07.720 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-23T07:04:07.720 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/auth_debug", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/container_image", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/log_to_file", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/log_to_journald", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/log_to_stderr", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-23T07:04:07.721 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-23T07:04:07.722 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/debug_ms", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/debug_mon", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/debug_ms", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/debug_paxos", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-23T07:04:07.723 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/debug_ms", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/debug_osd", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-23T07:04:07.724 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-23T07:04:07.725 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/3/", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/3/+global/public_network", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/4/", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/5/", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/6/", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/6/+global/container_image", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/6/-global/container_image", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/7/", 2026-02-23T07:04:07.726 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/8/", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/9/", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/auth_debug", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/container_image", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/log_to_file", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/log_to_journald", 2026-02-23T07:04:07.727 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/log_to_stderr", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_allow_pool_delete", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_clock_drift_allowed", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_cluster_log_to_file", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_max_pg_per_osd", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/ms_die_on_bug", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/ms_die_on_old_message", 2026-02-23T07:04:07.728 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/global/public_network", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/debug_mgr", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/debug_ms", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T07:04:07.729 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/debug_mon", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/debug_ms", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/debug_paxos", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_data_avail_warn", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-23T07:04:07.730 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/bdev_debug_aio", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/debug_ms", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/debug_osd", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_op_order", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_shutdown", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-23T07:04:07.731 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_mclock_profile", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_memory_target_autotune", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_op_queue", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_scrub_max_interval", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/alertmanager/web_password", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/alertmanager/web_user", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-23T07:04:07.732 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_alertmanager_cert", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_ceph-exporter_cert", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_grafana_cert", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_node-exporter_cert", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_prometheus_cert", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_alertmanager_key", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_ceph-exporter_key", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_grafana_key", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_node-exporter_key", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_prometheus_key", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-23T07:04:07.733 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/client_keyrings", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/config_checks", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/host.trial010", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/host.trial010.devices.0", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/inventory", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/osd_remove_queue", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/prometheus/web_password", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/prometheus/web_user", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.crash", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.grafana", 2026-02-23T07:04:07.734 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.mgr", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.mon", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/spec.prometheus", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/accessdb_v2", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/cluster/status", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/crt", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/dashboard/key", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/progress/completed", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/telemetry/collection", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/telemetry/report_id", 2026-02-23T07:04:07.735 INFO:teuthology.orchestra.run.trial010.stdout: "mgr/telemetry/salt" 2026-02-23T07:04:07.736 INFO:teuthology.orchestra.run.trial010.stdout:] 2026-02-23T07:04:07.754 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-23T07:04:07.869 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:04:08.164 INFO:teuthology.orchestra.run.trial010.stdout:{"trial010": {"hostname": "trial010", "addr": "10.20.193.10", "labels": [], "status": ""}, "trial040": {"hostname": "trial040", "addr": "10.20.193.40", "labels": [], "status": ""}} 2026-02-23T07:04:08.165 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-02-23T07:04:08.165 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 -- ceph mgr module disable cephadm 2026-02-23T07:04:08.280 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/mon.trial010/config 2026-02-23T07:04:08.690 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:08 trial010 ceph-mon[35551]: from='client.14207 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-23T07:04:08.690 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:08 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:08.690 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:08 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:08.690 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:08 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:08.690 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:08 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-23T07:04:08.690 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:08 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/1725381817' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-23T07:04:08.690 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:08 trial010 ceph-mon[35551]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-23T07:04:08.690 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:08 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' 2026-02-23T07:04:08.691 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:08 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/2354322143' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-23T07:04:09.541 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-02-23T07:04:09.541 DEBUG:teuthology.orchestra.run.trial010:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-23T07:04:09.557 DEBUG:teuthology.orchestra.run.trial040:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-23T07:04:09.575 INFO:tasks.cephadm:Stopping all daemons... 2026-02-23T07:04:09.576 INFO:tasks.cephadm.mon.trial010:Stopping mon.trial010... 2026-02-23T07:04:09.576 DEBUG:teuthology.orchestra.run.trial010:> sudo systemctl stop ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mon.trial010 2026-02-23T07:04:09.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:09 trial010 ceph-mon[35551]: from='mgr.14164 10.20.193.10:0/1218475552' entity='mgr.trial010.ffktgn' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-23T07:04:09.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:09 trial010 ceph-mon[35551]: mgrmap e14: trial010.ffktgn(active, since 20s) 2026-02-23T07:04:09.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:09 trial010 ceph-mon[35551]: from='client.? 10.20.193.10:0/3941451811' entity='client.admin' cmd={"prefix": "mgr module disable", "module": "cephadm"} : dispatch 2026-02-23T07:04:09.940 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:09 trial010 systemd[1]: Stopping Ceph mon.trial010 for b87796f5-1085-11f1-bf55-d404e6e7d460... 2026-02-23T07:04:09.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:09 trial010 ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010[35547]: 2026-02-23T07:04:09.704+0000 7fd3f62d2640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.trial010 -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 2026-02-23T07:04:09.941 INFO:journalctl@ceph.mon.trial010.trial010.stdout:Feb 23 07:04:09 trial010 ceph-b87796f5-1085-11f1-bf55-d404e6e7d460-mon-trial010[35547]: 2026-02-23T07:04:09.704+0000 7fd3f62d2640 -1 mon.trial010@0(leader) e1 *** Got Signal Terminated *** 2026-02-23T07:04:10.038 DEBUG:teuthology.orchestra.run.trial010:> sudo pkill -f 'journalctl -f -n 0 -u ceph-b87796f5-1085-11f1-bf55-d404e6e7d460@mon.trial010.service' 2026-02-23T07:04:10.078 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-23T07:04:10.079 INFO:tasks.cephadm.mon.trial010:Stopped mon.trial010 2026-02-23T07:04:10.079 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 --force --keep-logs 2026-02-23T07:04:10.235 INFO:teuthology.orchestra.run.trial010.stdout:Deleting cluster with fsid: b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:04:13.015 DEBUG:teuthology.orchestra.run.trial040:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 --force --keep-logs 2026-02-23T07:04:13.131 INFO:teuthology.orchestra.run.trial040.stdout:Deleting cluster with fsid: b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:04:13.187 DEBUG:teuthology.orchestra.run.trial010:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-23T07:04:13.215 DEBUG:teuthology.orchestra.run.trial040:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-23T07:04:13.242 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/contextutil.py", line 30, in nested vars.append(enter()) ^^^^^^^ File "/usr/lib/python3.12/contextlib.py", line 137, in __enter__ return next(self.gen) ^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_ceph-c_244ee61d76a715c3ac0d60eeb3321aefb91c3511/qa/tasks/cephadm.py", line 808, in ceph_bootstrap while proceed(): ^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (3) after waiting for 15 seconds 2026-02-23T07:04:13.244 INFO:tasks.cephadm:Archiving crash dumps... 2026-02-23T07:04:13.246 DEBUG:teuthology.misc:Transferring archived files from trial010:/var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65112/remote/trial010/crash 2026-02-23T07:04:13.247 DEBUG:teuthology.orchestra.run.trial010:> sudo tar c -f - -C /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/crash -- . 2026-02-23T07:04:13.279 INFO:teuthology.orchestra.run.trial010.stderr:tar: /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-23T07:04:13.280 INFO:teuthology.orchestra.run.trial010.stderr:tar: Error is not recoverable: exiting now 2026-02-23T07:04:13.282 DEBUG:teuthology.misc:Transferring archived files from trial040:/var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65112/remote/trial040/crash 2026-02-23T07:04:13.284 DEBUG:teuthology.orchestra.run.trial040:> sudo tar c -f - -C /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/crash -- . 2026-02-23T07:04:13.309 INFO:teuthology.orchestra.run.trial040.stderr:tar: /var/lib/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-23T07:04:13.309 INFO:teuthology.orchestra.run.trial040.stderr:tar: Error is not recoverable: exiting now 2026-02-23T07:04:13.310 INFO:tasks.cephadm:Checking cluster log for badness... 2026-02-23T07:04:13.310 DEBUG:teuthology.orchestra.run.trial010:> sudo grep -E '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.log | grep -E CEPHADM_ | grep -E -v '\(MDS_ALL_DOWN\)' | grep -E -v '\(MDS_UP_LESS_THAN_MAX\)' | grep -E -v CEPHADM_DAEMON_PLACE_FAIL | grep -E -v CEPHADM_FAILED_DAEMON | head -n 1 2026-02-23T07:04:13.347 INFO:tasks.cephadm:Compressing logs... 2026-02-23T07:04:13.347 DEBUG:teuthology.orchestra.run.trial010:> 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 -- 2026-02-23T07:04:13.390 DEBUG:teuthology.orchestra.run.trial040:> 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 -- 2026-02-23T07:04:13.414 INFO:teuthology.orchestra.run.trial010.stderr:find: ‘/var/log/rbd-target-api’: No such file or directorygzip 2026-02-23T07:04:13.414 INFO:teuthology.orchestra.run.trial010.stderr: -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-23T07:04:13.414 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-mon.trial010.log 2026-02-23T07:04:13.414 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.cephadm.log 2026-02-23T07:04:13.414 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-mon.trial010.log: gzip -5 --verbose -- /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.audit.log 2026-02-23T07:04:13.414 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-volume.log 2026-02-23T07:04:13.414 INFO:teuthology.orchestra.run.trial010.stderr: 79.4% -- replaced with /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.cephadm.log.gz 2026-02-23T07:04:13.414 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-mgr.trial010.ffktgn.log 2026-02-23T07:04:13.415 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.audit.log: /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-client.ceph-exporter.trial010.log 2026-02-23T07:04:13.415 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-mgr.trial010.ffktgn.log: gzip -5 --verbose -- /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.log 2026-02-23T07:04:13.415 INFO:teuthology.orchestra.run.trial010.stderr: 92.6% -- replaced with /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-volume.log.gz 2026-02-23T07:04:13.415 INFO:teuthology.orchestra.run.trial010.stderr: 89.1% -- replaced with /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.audit.log.gz 2026-02-23T07:04:13.415 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-client.ceph-exporter.trial010.log: 60.5% -- replaced with /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-client.ceph-exporter.trial010.log.gz 2026-02-23T07:04:13.415 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.log: 79.9% -- replaced with /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph.log.gz 2026-02-23T07:04:13.416 INFO:teuthology.orchestra.run.trial040.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-02-23T07:04:13.416 INFO:teuthology.orchestra.run.trial040.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-23T07:04:13.416 INFO:teuthology.orchestra.run.trial040.stderr:/var/log/ceph/cephadm.log: 75.6% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-23T07:04:13.417 INFO:teuthology.orchestra.run.trial040.stderr: 2026-02-23T07:04:13.417 INFO:teuthology.orchestra.run.trial040.stderr:real 0m0.010s 2026-02-23T07:04:13.417 INFO:teuthology.orchestra.run.trial040.stderr:user 0m0.007s 2026-02-23T07:04:13.417 INFO:teuthology.orchestra.run.trial040.stderr:sys 0m0.012s 2026-02-23T07:04:13.422 INFO:teuthology.orchestra.run.trial010.stderr: 93.1% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-23T07:04:13.434 INFO:teuthology.orchestra.run.trial010.stderr: 91.9% -- replaced with /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-mon.trial010.log.gz 2026-02-23T07:04:13.438 INFO:teuthology.orchestra.run.trial010.stderr: 91.1% -- replaced with /var/log/ceph/b87796f5-1085-11f1-bf55-d404e6e7d460/ceph-mgr.trial010.ffktgn.log.gz 2026-02-23T07:04:13.440 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-23T07:04:13.441 INFO:teuthology.orchestra.run.trial010.stderr:real 0m0.037s 2026-02-23T07:04:13.441 INFO:teuthology.orchestra.run.trial010.stderr:user 0m0.065s 2026-02-23T07:04:13.441 INFO:teuthology.orchestra.run.trial010.stderr:sys 0m0.018s 2026-02-23T07:04:13.441 INFO:tasks.cephadm:Archiving logs... 2026-02-23T07:04:13.442 DEBUG:teuthology.misc:Transferring archived files from trial010:/var/log/ceph to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65112/remote/trial010/log 2026-02-23T07:04:13.443 DEBUG:teuthology.orchestra.run.trial010:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-23T07:04:13.528 DEBUG:teuthology.misc:Transferring archived files from trial040:/var/log/ceph to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65112/remote/trial040/log 2026-02-23T07:04:13.529 DEBUG:teuthology.orchestra.run.trial040:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-23T07:04:13.556 INFO:tasks.cephadm:Removing cluster... 2026-02-23T07:04:13.556 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 --force 2026-02-23T07:04:13.676 INFO:teuthology.orchestra.run.trial010.stdout:Deleting cluster with fsid: b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:04:13.734 DEBUG:teuthology.orchestra.run.trial040:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid b87796f5-1085-11f1-bf55-d404e6e7d460 --force 2026-02-23T07:04:13.851 INFO:teuthology.orchestra.run.trial040.stdout:Deleting cluster with fsid: b87796f5-1085-11f1-bf55-d404e6e7d460 2026-02-23T07:04:13.909 INFO:tasks.cephadm:Removing cephadm ... 2026-02-23T07:04:13.909 DEBUG:teuthology.orchestra.run.trial010:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-23T07:04:13.927 DEBUG:teuthology.orchestra.run.trial040:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-23T07:04:13.943 INFO:tasks.cephadm:Teardown complete 2026-02-23T07:04:13.943 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.12/contextlib.py", line 137, in __enter__ return next(self.gen) ^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_ceph-c_244ee61d76a715c3ac0d60eeb3321aefb91c3511/qa/tasks/cephadm.py", line 2006, in task with contextutil.nested( File "/usr/lib/python3.12/contextlib.py", line 137, in __enter__ return next(self.gen) ^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/contextutil.py", line 30, in nested vars.append(enter()) ^^^^^^^ File "/usr/lib/python3.12/contextlib.py", line 137, in __enter__ return next(self.gen) ^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_ceph-c_244ee61d76a715c3ac0d60eeb3321aefb91c3511/qa/tasks/cephadm.py", line 808, in ceph_bootstrap while proceed(): ^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (3) after waiting for 15 seconds 2026-02-23T07:04:13.944 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-02-23T07:04:13.955 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2026-02-23T07:04:13.972 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial010:/dev/vg_nvme/lv_1... 2026-02-23T07:04:13.972 DEBUG:teuthology.orchestra.run.trial010:> sudo nvme disconnect -n lv_1 2026-02-23T07:04:14.218 INFO:teuthology.orchestra.run.trial010.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-23T07:04:14.220 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial010:/dev/vg_nvme/lv_2... 2026-02-23T07:04:14.220 DEBUG:teuthology.orchestra.run.trial010:> sudo nvme disconnect -n lv_2 2026-02-23T07:04:14.461 INFO:teuthology.orchestra.run.trial010.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-23T07:04:14.462 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial010:/dev/vg_nvme/lv_3... 2026-02-23T07:04:14.462 DEBUG:teuthology.orchestra.run.trial010:> sudo nvme disconnect -n lv_3 2026-02-23T07:04:14.703 INFO:teuthology.orchestra.run.trial010.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-23T07:04:14.705 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial010:/dev/vg_nvme/lv_4... 2026-02-23T07:04:14.705 DEBUG:teuthology.orchestra.run.trial010:> sudo nvme disconnect -n lv_4 2026-02-23T07:04:14.947 INFO:teuthology.orchestra.run.trial010.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-23T07:04:14.949 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-23T07:04:14.949 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/scratch_devs 2026-02-23T07:04:14.974 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial040:/dev/vg_nvme/lv_1... 2026-02-23T07:04:14.975 DEBUG:teuthology.orchestra.run.trial040:> sudo nvme disconnect -n lv_1 2026-02-23T07:04:15.237 INFO:teuthology.orchestra.run.trial040.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-23T07:04:15.238 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial040:/dev/vg_nvme/lv_2... 2026-02-23T07:04:15.238 DEBUG:teuthology.orchestra.run.trial040:> sudo nvme disconnect -n lv_2 2026-02-23T07:04:15.477 INFO:teuthology.orchestra.run.trial040.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-23T07:04:15.479 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial040:/dev/vg_nvme/lv_3... 2026-02-23T07:04:15.479 DEBUG:teuthology.orchestra.run.trial040:> sudo nvme disconnect -n lv_3 2026-02-23T07:04:15.727 INFO:teuthology.orchestra.run.trial040.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-23T07:04:15.729 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial040:/dev/vg_nvme/lv_4... 2026-02-23T07:04:15.729 DEBUG:teuthology.orchestra.run.trial040:> sudo nvme disconnect -n lv_4 2026-02-23T07:04:15.973 INFO:teuthology.orchestra.run.trial040.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-23T07:04:15.975 DEBUG:teuthology.orchestra.run.trial040:> set -ex 2026-02-23T07:04:15.975 DEBUG:teuthology.orchestra.run.trial040:> sudo dd of=/scratch_devs 2026-02-23T07:04:15.998 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-02-23T07:04:16.012 INFO:teuthology.task.clock:Checking final clock skew... 2026-02-23T07:04:16.013 DEBUG:teuthology.orchestra.run.trial010:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-23T07:04:16.016 DEBUG:teuthology.orchestra.run.trial040:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-23T07:04:16.029 INFO:teuthology.orchestra.run.trial010.stderr:bash: line 1: ntpq: command not found 2026-02-23T07:04:16.049 INFO:teuthology.orchestra.run.trial010.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-23T07:04:16.049 INFO:teuthology.orchestra.run.trial010.stdout:=============================================================================== 2026-02-23T07:04:16.049 INFO:teuthology.orchestra.run.trial010.stdout:^- 144.202.66.214.vultruser> 3 6 37 1 +164us[ +164us] +/- 33ms 2026-02-23T07:04:16.049 INFO:teuthology.orchestra.run.trial010.stdout:^* time.cloudflare.com 3 6 37 1 +5015ns[-1579us] +/- 6506us 2026-02-23T07:04:16.049 INFO:teuthology.orchestra.run.trial010.stdout:^- europa.ellipse.net 2 6 37 2 +142us[-1442us] +/- 48ms 2026-02-23T07:04:16.049 INFO:teuthology.orchestra.run.trial010.stdout:^? 23.186.168.130 2 6 17 64 +11ms[+9955us] +/- 65ms 2026-02-23T07:04:16.054 INFO:teuthology.orchestra.run.trial040.stderr:bash: line 1: ntpq: command not found 2026-02-23T07:04:16.067 INFO:teuthology.orchestra.run.trial040.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-23T07:04:16.067 INFO:teuthology.orchestra.run.trial040.stdout:=============================================================================== 2026-02-23T07:04:16.067 INFO:teuthology.orchestra.run.trial040.stdout:^- 144.202.66.214.vultruser> 3 6 37 1 -146us[ -146us] +/- 33ms 2026-02-23T07:04:16.067 INFO:teuthology.orchestra.run.trial040.stdout:^* time.cloudflare.com 3 6 37 1 -265ns[ -924us] +/- 6811us 2026-02-23T07:04:16.067 INFO:teuthology.orchestra.run.trial040.stdout:^- europa.ellipse.net 2 6 17 66 +1112us[ +132us] +/- 47ms 2026-02-23T07:04:16.067 INFO:teuthology.orchestra.run.trial040.stdout:^- 23.186.168.130 2 6 43 57 +1198us[ +277us] +/- 55ms 2026-02-23T07:04:16.068 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-23T07:04:16.083 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-23T07:04:16.083 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-23T07:04:16.096 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:04:16.151 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:04:16.205 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:04:16.233 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T07:04:16.234 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:04:16.259 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T07:04:16.260 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-23T07:04:16.275 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-23T07:04:16.289 INFO:teuthology.task.internal:Duration was 227.258422 seconds 2026-02-23T07:04:16.290 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-23T07:04:16.307 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-23T07:04:16.307 DEBUG:teuthology.orchestra.run.trial010:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-23T07:04:16.310 DEBUG:teuthology.orchestra.run.trial040:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-23T07:04:16.343 INFO:teuthology.orchestra.run.trial010.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-23T07:04:16.347 INFO:teuthology.orchestra.run.trial040.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-23T07:04:16.774 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-23T07:04:16.774 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial010.front.sepia.ceph.com 2026-02-23T07:04:16.775 DEBUG:teuthology.orchestra.run.trial010:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-23T07:04:16.795 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial040.front.sepia.ceph.com 2026-02-23T07:04:16.795 DEBUG:teuthology.orchestra.run.trial040:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-23T07:04:16.833 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-23T07:04:16.833 DEBUG:teuthology.orchestra.run.trial010:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-23T07:04:16.837 DEBUG:teuthology.orchestra.run.trial040:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-23T07:04:16.934 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-23T07:04:16.934 DEBUG:teuthology.orchestra.run.trial010:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-23T07:04:16.936 DEBUG:teuthology.orchestra.run.trial040:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-23T07:04:16.957 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T07:04:16.958 INFO:teuthology.orchestra.run.trial040.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T07:04:16.958 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T07:04:16.958 INFO:teuthology.orchestra.run.trial040.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T07:04:16.958 INFO:teuthology.orchestra.run.trial010.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-23T07:04:16.958 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-23T07:04:16.958 INFO:teuthology.orchestra.run.trial010.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-23T07:04:16.959 INFO:teuthology.orchestra.run.trial040.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-23T07:04:16.959 INFO:teuthology.orchestra.run.trial040.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-23T07:04:16.959 INFO:teuthology.orchestra.run.trial040.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-23T07:04:16.968 INFO:teuthology.orchestra.run.trial040.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 81.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-23T07:04:16.975 INFO:teuthology.orchestra.run.trial010.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 85.7% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-23T07:04:16.977 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-23T07:04:16.992 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-23T07:04:16.992 DEBUG:teuthology.orchestra.run.trial010:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-23T07:04:17.043 DEBUG:teuthology.orchestra.run.trial040:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-23T07:04:17.066 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-23T07:04:17.078 DEBUG:teuthology.orchestra.run.trial010:> 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 2026-02-23T07:04:17.084 DEBUG:teuthology.orchestra.run.trial040:> 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 2026-02-23T07:04:17.107 INFO:teuthology.orchestra.run.trial010.stdout:kernel.core_pattern = core 2026-02-23T07:04:17.131 INFO:teuthology.orchestra.run.trial040.stdout:kernel.core_pattern = core 2026-02-23T07:04:17.161 DEBUG:teuthology.orchestra.run.trial010:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-23T07:04:17.177 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T07:04:17.177 DEBUG:teuthology.orchestra.run.trial040:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-23T07:04:17.216 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T07:04:17.216 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-23T07:04:17.228 INFO:teuthology.task.internal:Transferring archived files... 2026-02-23T07:04:17.228 DEBUG:teuthology.misc:Transferring archived files from trial010:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65112/remote/trial010 2026-02-23T07:04:17.228 DEBUG:teuthology.orchestra.run.trial010:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-23T07:04:17.259 DEBUG:teuthology.misc:Transferring archived files from trial040:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_05:55:57-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65112/remote/trial040 2026-02-23T07:04:17.260 DEBUG:teuthology.orchestra.run.trial040:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-23T07:04:17.290 INFO:teuthology.task.internal:Removing archive directory... 2026-02-23T07:04:17.290 DEBUG:teuthology.orchestra.run.trial010:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-23T07:04:17.299 DEBUG:teuthology.orchestra.run.trial040:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-23T07:04:17.344 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-23T07:04:17.365 INFO:teuthology.task.internal:Not uploading archives. 2026-02-23T07:04:17.365 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-23T07:04:17.383 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-23T07:04:17.383 DEBUG:teuthology.orchestra.run.trial010:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-23T07:04:17.386 DEBUG:teuthology.orchestra.run.trial040:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-23T07:04:17.399 INFO:teuthology.orchestra.run.trial010.stdout: 917576 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 23 07:04 /home/ubuntu/cephtest 2026-02-23T07:04:17.402 INFO:teuthology.orchestra.run.trial040.stdout: 917576 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 23 07:04 /home/ubuntu/cephtest 2026-02-23T07:04:17.404 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-23T07:04:17.421 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-23T07:04:17.462 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: 227.25842237472534 failure_reason: reached maximum tries (3) after waiting for 15 seconds owner: scheduled_shwetabhosale@soko04.front.sepia.ceph.com sentry_event: null status: fail success: false 2026-02-23T07:04:17.462 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-23T07:04:17.582 INFO:teuthology.run:FAIL