2026-02-23T09:41:37.329 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-23T09:41:37.344 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-23T09:41:37.422 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65983 branch: wip-shweta-testing-2026-02-19-2025 description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 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: '65983' kernel: branch: distro kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: trial name: shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' 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 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: trial120.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM0RPFPukR8pc5Xv90qGqN1NwHEID/2lqPJ1XfhOQJanoz9g0XVkPQOXQJ4mfe8KPbhn71xY7q5BjACpUQ+GuO4= trial137.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFqGzKmXBrNr59dGQtO3QI9Dm8Kord0vSN3HPGMJOvFAAMcybWyitnFx/4EVKF75gMkGmTjK1mIxq8X8djsfuwk= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - 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_09:20:59 tube: trial user: shwetabhosale verbose: false worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.3318653 2026-02-23T09:41:37.422 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-23T09:41:37.423 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_244ee61d76a715c3ac0d60eeb3321aefb91c3511/qa/tasks 2026-02-23T09:41:37.423 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-23T09:41:37.424 INFO:teuthology.task.internal:Checking packages... 2026-02-23T09:41:37.424 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '244ee61d76a715c3ac0d60eeb3321aefb91c3511' 2026-02-23T09:41:37.424 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-23T09:41:37.424 INFO:teuthology.packaging:ref: None 2026-02-23T09:41:37.425 INFO:teuthology.packaging:tag: None 2026-02-23T09:41:37.425 INFO:teuthology.packaging:branch: wip-shweta-testing-2026-02-19-2025 2026-02-23T09:41:37.425 INFO:teuthology.packaging:sha1: 244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T09:41:37.425 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-shweta-testing-2026-02-19-2025 2026-02-23T09:41:37.543 INFO:teuthology.task.internal:Found packages for ceph version 20.3.0-5338-g244ee61d-1jammy 2026-02-23T09:41:37.544 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-23T09:41:37.556 INFO:teuthology.task.internal:no buildpackages task found 2026-02-23T09:41:37.556 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-23T09:41:37.570 INFO:teuthology.task.internal:Saving configuration 2026-02-23T09:41:37.580 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-23T09:41:37.593 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-23T09:41:37.670 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial120.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65983', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-23 09:38:06.474251', 'locked_by': 'scheduled_shwetabhosale@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE1iTpXdB7Odtoios6hbpjTIbPHLLGT02dhuKSuJ3rOu'} 2026-02-23T09:41:37.726 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial137.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65983', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-23 09:38:06.475052', 'locked_by': 'scheduled_shwetabhosale@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOS6fN/HXhm4AcIhPjMNTjn0iF7FxKpwPdX9wITEVsn5'} 2026-02-23T09:41:37.726 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-23T09:41:37.737 INFO:teuthology.task.internal:roles: ubuntu@trial120.front.sepia.ceph.com - ['host.a', 'client.0'] 2026-02-23T09:41:37.737 INFO:teuthology.task.internal:roles: ubuntu@trial137.front.sepia.ceph.com - ['host.b', 'client.1'] 2026-02-23T09:41:37.737 INFO:teuthology.run_tasks:Running task console_log... 2026-02-23T09:41:37.874 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x758607acb880>, signals=[15]) 2026-02-23T09:41:37.874 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-23T09:41:37.885 INFO:teuthology.task.internal:Opening connections... 2026-02-23T09:41:37.885 DEBUG:teuthology.task.internal:connecting to ubuntu@trial120.front.sepia.ceph.com 2026-02-23T09:41:37.886 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-23T09:41:37.951 DEBUG:teuthology.task.internal:connecting to ubuntu@trial137.front.sepia.ceph.com 2026-02-23T09:41:37.951 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-23T09:41:38.012 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-23T09:41:38.023 DEBUG:teuthology.orchestra.run.trial120:> uname -m 2026-02-23T09:41:38.026 INFO:teuthology.orchestra.run.trial120.stdout:x86_64 2026-02-23T09:41:38.026 DEBUG:teuthology.orchestra.run.trial120:> cat /etc/os-release 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:PRETTY_NAME="Ubuntu 22.04.5 LTS" 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:NAME="Ubuntu" 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:VERSION_ID="22.04" 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:VERSION="22.04.5 LTS (Jammy Jellyfish)" 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:VERSION_CODENAME=jammy 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:ID=ubuntu 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:ID_LIKE=debian 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:HOME_URL="https://www.ubuntu.com/" 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2026-02-23T09:41:38.071 INFO:teuthology.orchestra.run.trial120.stdout:UBUNTU_CODENAME=jammy 2026-02-23T09:41:38.072 INFO:teuthology.lock.ops:Updating trial120.front.sepia.ceph.com on lock server 2026-02-23T09:41:38.142 DEBUG:teuthology.orchestra.run.trial137:> uname -m 2026-02-23T09:41:38.145 INFO:teuthology.orchestra.run.trial137.stdout:x86_64 2026-02-23T09:41:38.145 DEBUG:teuthology.orchestra.run.trial137:> cat /etc/os-release 2026-02-23T09:41:38.192 INFO:teuthology.orchestra.run.trial137.stdout:PRETTY_NAME="Ubuntu 22.04.5 LTS" 2026-02-23T09:41:38.192 INFO:teuthology.orchestra.run.trial137.stdout:NAME="Ubuntu" 2026-02-23T09:41:38.192 INFO:teuthology.orchestra.run.trial137.stdout:VERSION_ID="22.04" 2026-02-23T09:41:38.193 INFO:teuthology.orchestra.run.trial137.stdout:VERSION="22.04.5 LTS (Jammy Jellyfish)" 2026-02-23T09:41:38.193 INFO:teuthology.orchestra.run.trial137.stdout:VERSION_CODENAME=jammy 2026-02-23T09:41:38.193 INFO:teuthology.orchestra.run.trial137.stdout:ID=ubuntu 2026-02-23T09:41:38.193 INFO:teuthology.orchestra.run.trial137.stdout:ID_LIKE=debian 2026-02-23T09:41:38.193 INFO:teuthology.orchestra.run.trial137.stdout:HOME_URL="https://www.ubuntu.com/" 2026-02-23T09:41:38.193 INFO:teuthology.orchestra.run.trial137.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2026-02-23T09:41:38.193 INFO:teuthology.orchestra.run.trial137.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2026-02-23T09:41:38.193 INFO:teuthology.orchestra.run.trial137.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2026-02-23T09:41:38.193 INFO:teuthology.orchestra.run.trial137.stdout:UBUNTU_CODENAME=jammy 2026-02-23T09:41:38.193 INFO:teuthology.lock.ops:Updating trial137.front.sepia.ceph.com on lock server 2026-02-23T09:41:38.266 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-23T09:41:38.278 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-23T09:41:38.290 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-23T09:41:38.290 DEBUG:teuthology.orchestra.run.trial120:> test '!' -e /home/ubuntu/cephtest 2026-02-23T09:41:38.292 DEBUG:teuthology.orchestra.run.trial137:> test '!' -e /home/ubuntu/cephtest 2026-02-23T09:41:38.294 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-23T09:41:38.310 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-23T09:41:38.310 DEBUG:teuthology.orchestra.run.trial120:> test -z $(ls -A /var/lib/ceph) 2026-02-23T09:41:38.337 DEBUG:teuthology.orchestra.run.trial137:> test -z $(ls -A /var/lib/ceph) 2026-02-23T09:41:38.340 INFO:teuthology.orchestra.run.trial120.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-02-23T09:41:38.344 INFO:teuthology.orchestra.run.trial137.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-02-23T09:41:38.345 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-23T09:41:38.491 INFO:teuthology.run_tasks:Running task kernel... 2026-02-23T09:41:38.510 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'} 2026-02-23T09:41:38.510 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-23T09:41:38.510 DEBUG:teuthology.orchestra.run.trial120:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-23T09:41:38.511 DEBUG:teuthology.orchestra.run.trial137:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-23T09:41:38.513 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:41:38.513 DEBUG:teuthology.orchestra.run.trial120:> uname -r 2026-02-23T09:41:38.514 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:41:38.514 DEBUG:teuthology.orchestra.run.trial137:> uname -r 2026-02-23T09:41:38.559 INFO:teuthology.orchestra.run.trial120.stdout:5.15.0-170-generic 2026-02-23T09:41:38.559 INFO:teuthology.task.kernel:Running kernel on trial120: 5.15.0-170-generic 2026-02-23T09:41:38.559 DEBUG:teuthology.orchestra.run.trial120:> sudo apt-get clean 2026-02-23T09:41:38.560 INFO:teuthology.orchestra.run.trial137.stdout:5.15.0-170-generic 2026-02-23T09:41:38.560 INFO:teuthology.task.kernel:Running kernel on trial137: 5.15.0-170-generic 2026-02-23T09:41:38.560 DEBUG:teuthology.orchestra.run.trial137:> sudo apt-get clean 2026-02-23T09:41:38.616 DEBUG:teuthology.orchestra.run.trial120:> sudo apt-get update 2026-02-23T09:41:38.621 DEBUG:teuthology.orchestra.run.trial137:> sudo apt-get update 2026-02-23T09:41:39.070 INFO:teuthology.orchestra.run.trial120.stdout:Hit:1 https://archive.ubuntu.com/ubuntu jammy InRelease 2026-02-23T09:41:39.070 INFO:teuthology.orchestra.run.trial137.stdout:Hit:1 https://archive.ubuntu.com/ubuntu jammy InRelease 2026-02-23T09:41:39.143 INFO:teuthology.orchestra.run.trial120.stdout:Get:2 https://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2026-02-23T09:41:39.143 INFO:teuthology.orchestra.run.trial137.stdout:Get:2 https://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2026-02-23T09:41:39.421 INFO:teuthology.orchestra.run.trial137.stdout:Get:3 https://archive.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2026-02-23T09:41:39.421 INFO:teuthology.orchestra.run.trial120.stdout:Get:3 https://archive.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2026-02-23T09:41:39.542 INFO:teuthology.orchestra.run.trial137.stdout:Get:4 https://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2026-02-23T09:41:39.543 INFO:teuthology.orchestra.run.trial120.stdout:Get:4 https://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2026-02-23T09:41:39.656 INFO:teuthology.orchestra.run.trial137.stdout:Get:5 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] 2026-02-23T09:41:39.657 INFO:teuthology.orchestra.run.trial120.stdout:Get:5 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] 2026-02-23T09:41:39.985 INFO:teuthology.orchestra.run.trial120.stdout:Get:6 https://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [495 kB] 2026-02-23T09:41:39.985 INFO:teuthology.orchestra.run.trial137.stdout:Get:6 https://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [495 kB] 2026-02-23T09:41:39.994 INFO:teuthology.orchestra.run.trial120.stdout:Get:7 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [19.1 kB] 2026-02-23T09:41:39.995 INFO:teuthology.orchestra.run.trial137.stdout:Get:7 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [19.1 kB] 2026-02-23T09:41:39.995 INFO:teuthology.orchestra.run.trial120.stdout:Get:8 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1256 kB] 2026-02-23T09:41:39.995 INFO:teuthology.orchestra.run.trial137.stdout:Get:8 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1256 kB] 2026-02-23T09:41:40.023 INFO:teuthology.orchestra.run.trial120.stdout:Get:9 https://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [314 kB] 2026-02-23T09:41:40.024 INFO:teuthology.orchestra.run.trial137.stdout:Get:9 https://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [314 kB] 2026-02-23T09:41:40.029 INFO:teuthology.orchestra.run.trial120.stdout:Get:10 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [30.3 kB] 2026-02-23T09:41:40.030 INFO:teuthology.orchestra.run.trial137.stdout:Get:10 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [30.3 kB] 2026-02-23T09:41:40.030 INFO:teuthology.orchestra.run.trial137.stdout:Get:11 https://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [5310 kB] 2026-02-23T09:41:40.030 INFO:teuthology.orchestra.run.trial120.stdout:Get:11 https://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [5310 kB] 2026-02-23T09:41:40.159 INFO:teuthology.orchestra.run.trial120.stdout:Get:12 https://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [1005 kB] 2026-02-23T09:41:40.159 INFO:teuthology.orchestra.run.trial137.stdout:Get:12 https://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [1005 kB] 2026-02-23T09:41:40.177 INFO:teuthology.orchestra.run.trial137.stdout:Get:13 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2983 kB] 2026-02-23T09:41:40.178 INFO:teuthology.orchestra.run.trial120.stdout:Get:13 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2983 kB] 2026-02-23T09:41:40.248 INFO:teuthology.orchestra.run.trial120.stdout:Get:14 https://archive.ubuntu.com/ubuntu jammy-security/main Translation-en [427 kB] 2026-02-23T09:41:40.249 INFO:teuthology.orchestra.run.trial137.stdout:Get:14 https://archive.ubuntu.com/ubuntu jammy-security/main Translation-en [427 kB] 2026-02-23T09:41:40.255 INFO:teuthology.orchestra.run.trial137.stdout:Get:15 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [14.1 kB] 2026-02-23T09:41:40.255 INFO:teuthology.orchestra.run.trial137.stdout:Get:16 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1018 kB] 2026-02-23T09:41:40.256 INFO:teuthology.orchestra.run.trial120.stdout:Get:15 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [14.1 kB] 2026-02-23T09:41:40.256 INFO:teuthology.orchestra.run.trial120.stdout:Get:16 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1018 kB] 2026-02-23T09:41:40.284 INFO:teuthology.orchestra.run.trial120.stdout:Get:17 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [22.7 kB] 2026-02-23T09:41:40.284 INFO:teuthology.orchestra.run.trial120.stdout:Get:18 https://archive.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [5147 kB] 2026-02-23T09:41:40.286 INFO:teuthology.orchestra.run.trial137.stdout:Get:17 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [22.7 kB] 2026-02-23T09:41:40.286 INFO:teuthology.orchestra.run.trial137.stdout:Get:18 https://archive.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [5147 kB] 2026-02-23T09:41:40.403 INFO:teuthology.orchestra.run.trial137.stdout:Get:19 https://archive.ubuntu.com/ubuntu jammy-security/restricted Translation-en [979 kB] 2026-02-23T09:41:40.407 INFO:teuthology.orchestra.run.trial120.stdout:Get:19 https://archive.ubuntu.com/ubuntu jammy-security/restricted Translation-en [979 kB] 2026-02-23T09:41:43.954 INFO:teuthology.orchestra.run.trial137.stdout:Fetched 22.6 MB in 3s (8494 kB/s) 2026-02-23T09:41:43.992 INFO:teuthology.orchestra.run.trial120.stdout:Fetched 22.6 MB in 3s (8467 kB/s) 2026-02-23T09:41:44.489 INFO:teuthology.orchestra.run.trial137.stdout:Reading package lists... 2026-02-23T09:41:44.503 DEBUG:teuthology.orchestra.run.trial137:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2026-02-23T09:41:44.519 INFO:teuthology.orchestra.run.trial120.stdout:Reading package lists... 2026-02-23T09:41:44.532 DEBUG:teuthology.orchestra.run.trial120:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2026-02-23T09:41:44.536 INFO:teuthology.orchestra.run.trial137.stdout:Reading package lists... 2026-02-23T09:41:44.565 INFO:teuthology.orchestra.run.trial120.stdout:Reading package lists... 2026-02-23T09:41:44.645 INFO:teuthology.orchestra.run.trial137.stdout:Building dependency tree... 2026-02-23T09:41:44.645 INFO:teuthology.orchestra.run.trial137.stdout:Reading state information... 2026-02-23T09:41:44.673 INFO:teuthology.orchestra.run.trial120.stdout:Building dependency tree... 2026-02-23T09:41:44.674 INFO:teuthology.orchestra.run.trial120.stdout:Reading state information... 2026-02-23T09:41:44.733 INFO:teuthology.orchestra.run.trial137.stdout:linux-image-generic is already the newest version (5.15.0.170.159). 2026-02-23T09:41:44.733 INFO:teuthology.orchestra.run.trial137.stdout:linux-image-generic set to manually installed. 2026-02-23T09:41:44.733 INFO:teuthology.orchestra.run.trial137.stdout:The following packages were automatically installed and are no longer required: 2026-02-23T09:41:44.733 INFO:teuthology.orchestra.run.trial137.stdout: kpartx libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 2026-02-23T09:41:44.733 INFO:teuthology.orchestra.run.trial137.stdout: libgfxdr0 libglusterfs0 libiscsi7 libpmemobj1 libsgutils2-2 sg3-utils 2026-02-23T09:41:44.733 INFO:teuthology.orchestra.run.trial137.stdout: sg3-utils-udev 2026-02-23T09:41:44.733 INFO:teuthology.orchestra.run.trial137.stdout:Use 'sudo apt autoremove' to remove them. 2026-02-23T09:41:44.752 INFO:teuthology.orchestra.run.trial137.stdout:0 upgraded, 0 newly installed, 0 to remove and 13 not upgraded. 2026-02-23T09:41:44.754 DEBUG:teuthology.orchestra.run.trial137:> dpkg -s linux-image-generic 2026-02-23T09:41:44.761 INFO:teuthology.orchestra.run.trial120.stdout:linux-image-generic is already the newest version (5.15.0.170.159). 2026-02-23T09:41:44.761 INFO:teuthology.orchestra.run.trial120.stdout:linux-image-generic set to manually installed. 2026-02-23T09:41:44.761 INFO:teuthology.orchestra.run.trial120.stdout:The following packages were automatically installed and are no longer required: 2026-02-23T09:41:44.762 INFO:teuthology.orchestra.run.trial120.stdout: kpartx libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 2026-02-23T09:41:44.762 INFO:teuthology.orchestra.run.trial120.stdout: libgfxdr0 libglusterfs0 libiscsi7 libpmemobj1 libsgutils2-2 sg3-utils 2026-02-23T09:41:44.762 INFO:teuthology.orchestra.run.trial120.stdout: sg3-utils-udev 2026-02-23T09:41:44.762 INFO:teuthology.orchestra.run.trial120.stdout:Use 'sudo apt autoremove' to remove them. 2026-02-23T09:41:44.781 INFO:teuthology.orchestra.run.trial120.stdout:0 upgraded, 0 newly installed, 0 to remove and 13 not upgraded. 2026-02-23T09:41:44.783 DEBUG:teuthology.orchestra.run.trial120:> dpkg -s linux-image-generic 2026-02-23T09:41:44.806 INFO:teuthology.orchestra.run.trial137.stdout:Package: linux-image-generic 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Status: install ok installed 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Priority: optional 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Section: kernel 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Installed-Size: 21 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Maintainer: Ubuntu Kernel Team 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Architecture: amd64 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Source: linux-meta 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Version: 5.15.0.170.159 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.6), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-170), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.6) 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Depends: linux-image-5.15.0-170-generic, linux-modules-extra-5.15.0-170-generic, linux-firmware, intel-microcode, amd64-microcode 2026-02-23T09:41:44.807 INFO:teuthology.orchestra.run.trial137.stdout:Recommends: thermald 2026-02-23T09:41:44.808 INFO:teuthology.orchestra.run.trial137.stdout:Description: Generic Linux kernel image 2026-02-23T09:41:44.808 INFO:teuthology.orchestra.run.trial137.stdout: This package will always depend on the latest generic kernel image 2026-02-23T09:41:44.808 INFO:teuthology.orchestra.run.trial137.stdout: available. 2026-02-23T09:41:44.808 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-23T09:41:44.808 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-23T09:41:44.808 DEBUG:teuthology.orchestra.run.trial137:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-23T09:41:44.834 INFO:teuthology.orchestra.run.trial120.stdout:Package: linux-image-generic 2026-02-23T09:41:44.834 INFO:teuthology.orchestra.run.trial120.stdout:Status: install ok installed 2026-02-23T09:41:44.834 INFO:teuthology.orchestra.run.trial120.stdout:Priority: optional 2026-02-23T09:41:44.834 INFO:teuthology.orchestra.run.trial120.stdout:Section: kernel 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout:Installed-Size: 21 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout:Maintainer: Ubuntu Kernel Team 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout:Architecture: amd64 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout:Source: linux-meta 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout:Version: 5.15.0.170.159 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.6), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-170), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.6) 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout:Depends: linux-image-5.15.0-170-generic, linux-modules-extra-5.15.0-170-generic, linux-firmware, intel-microcode, amd64-microcode 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout:Recommends: thermald 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout:Description: Generic Linux kernel image 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout: This package will always depend on the latest generic kernel image 2026-02-23T09:41:44.835 INFO:teuthology.orchestra.run.trial120.stdout: available. 2026-02-23T09:41:44.836 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-23T09:41:44.836 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-23T09:41:44.836 DEBUG:teuthology.orchestra.run.trial120:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-23T09:41:44.857 INFO:teuthology.orchestra.run.trial137.stdout:ttyS1 2026-02-23T09:41:44.883 DEBUG:teuthology.parallel:result is None 2026-02-23T09:41:44.884 INFO:teuthology.orchestra.run.trial120.stdout:ttyS1 2026-02-23T09:41:44.910 DEBUG:teuthology.parallel:result is None 2026-02-23T09:41:44.911 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-23T09:41:44.923 INFO:teuthology.task.internal:Creating test directory... 2026-02-23T09:41:44.923 DEBUG:teuthology.orchestra.run.trial120:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-23T09:41:44.953 DEBUG:teuthology.orchestra.run.trial137:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-23T09:41:44.956 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-23T09:41:44.968 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-23T09:41:44.982 INFO:teuthology.task.internal:Creating archive directory... 2026-02-23T09:41:44.982 DEBUG:teuthology.orchestra.run.trial120:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-23T09:41:44.997 DEBUG:teuthology.orchestra.run.trial137:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-23T09:41:45.008 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-23T09:41:45.020 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-23T09:41:45.020 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:41:45.045 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:41:45.052 INFO:teuthology.orchestra.run.trial120.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-23T09:41:45.055 INFO:teuthology.orchestra.run.trial137.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-23T09:41:45.059 INFO:teuthology.orchestra.run.trial120.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-23T09:41:45.061 INFO:teuthology.orchestra.run.trial137.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-23T09:41:45.062 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-23T09:41:45.074 INFO:teuthology.task.internal:Configuring sudo... 2026-02-23T09:41:45.074 DEBUG:teuthology.orchestra.run.trial120:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-23T09:41:45.105 DEBUG:teuthology.orchestra.run.trial137:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-23T09:41:45.114 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-23T09:41:45.131 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-23T09:41:45.131 DEBUG:teuthology.orchestra.run.trial120:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-23T09:41:45.154 DEBUG:teuthology.orchestra.run.trial137:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-23T09:41:45.161 DEBUG:teuthology.orchestra.run.trial120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T09:41:45.199 DEBUG:teuthology.orchestra.run.trial120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T09:41:45.243 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:41:45.243 DEBUG:teuthology.orchestra.run.trial120:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-23T09:41:45.292 DEBUG:teuthology.orchestra.run.trial137:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T09:41:45.297 DEBUG:teuthology.orchestra.run.trial137:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T09:41:45.341 DEBUG:teuthology.orchestra.run.trial137:> set -ex 2026-02-23T09:41:45.342 DEBUG:teuthology.orchestra.run.trial137:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-23T09:41:45.395 DEBUG:teuthology.orchestra.run.trial120:> sudo service rsyslog restart 2026-02-23T09:41:45.397 DEBUG:teuthology.orchestra.run.trial137:> sudo service rsyslog restart 2026-02-23T09:41:45.454 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-23T09:41:45.467 INFO:teuthology.task.internal:Starting timer... 2026-02-23T09:41:45.467 INFO:teuthology.run_tasks:Running task pcp... 2026-02-23T09:41:45.490 INFO:teuthology.run_tasks:Running task selinux... 2026-02-23T09:41:45.508 DEBUG:teuthology.task.selinux:Excluding trial120: OS 'ubuntu' does not support SELinux 2026-02-23T09:41:45.509 DEBUG:teuthology.task.selinux:Excluding trial137: OS 'ubuntu' does not support SELinux 2026-02-23T09:41:45.509 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-23T09:41:45.509 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2026-02-23T09:41:45.509 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-23T09:41:45.509 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-23T09:41:45.524 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2026-02-23T09:41:45.528 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2026-02-23T09:41:45.645 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-23T09:41:45.657 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-23T09:41:45.658 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial120.front.sepia.ceph.com,trial137.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-23T09:44:12.984 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial120.front.sepia.ceph.com'), Remote(name='ubuntu@trial137.front.sepia.ceph.com')] 2026-02-23T09:44:12.987 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial120.front.sepia.ceph.com' 2026-02-23T09:44:12.990 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-23T09:44:13.064 DEBUG:teuthology.orchestra.run.trial120:> true 2026-02-23T09:44:13.313 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial120.front.sepia.ceph.com' 2026-02-23T09:44:13.314 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial137.front.sepia.ceph.com' 2026-02-23T09:44:13.315 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-23T09:44:13.423 DEBUG:teuthology.orchestra.run.trial137:> true 2026-02-23T09:44:13.671 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial137.front.sepia.ceph.com' 2026-02-23T09:44:13.671 INFO:teuthology.run_tasks:Running task clock... 2026-02-23T09:44:13.693 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-23T09:44:13.693 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-23T09:44:13.694 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:44:13.696 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-23T09:44:13.697 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:44:13.716 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2026-02-23T09:44:13.717 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: Command line: ntpd -gq 2026-02-23T09:44:13.717 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: ---------------------------------------------------- 2026-02-23T09:44:13.717 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: ntp-4 is maintained by Network Time Foundation, 2026-02-23T09:44:13.717 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2026-02-23T09:44:13.717 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: corporation. Support and training for ntp-4 are 2026-02-23T09:44:13.717 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: available at https://www.nwtime.org/support 2026-02-23T09:44:13.718 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: ---------------------------------------------------- 2026-02-23T09:44:13.718 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: proto: precision = 0.020 usec (-25) 2026-02-23T09:44:13.718 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: basedate set to 2022-02-04 2026-02-23T09:44:13.718 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: gps base set to 2022-02-06 (week 2196) 2026-02-23T09:44:13.718 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2026-02-23T09:44:13.718 INFO:teuthology.orchestra.run.trial120.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2026-02-23T09:44:13.718 INFO:teuthology.orchestra.run.trial120.stderr:restrict ::: KOD does nothing without LIMITED. 2026-02-23T09:44:13.720 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: restrict ::: KOD does nothing without LIMITED. 2026-02-23T09:44:13.720 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: Listen and drop on 0 v6wildcard [::]:123 2026-02-23T09:44:13.720 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2026-02-23T09:44:13.720 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: Listen normally on 2 lo 127.0.0.1:123 2026-02-23T09:44:13.720 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: Listen normally on 3 enp1s0f0 10.20.193.120:123 2026-02-23T09:44:13.720 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: Listen normally on 4 lo [::1]:123 2026-02-23T09:44:13.720 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: Listen normally on 5 enp1s0f0 [fe80::925a:8ff:fe77:6146%2]:123 2026-02-23T09:44:13.720 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:14 ntpd[9422]: Listening on routing socket on fd #22 for interface updates 2026-02-23T09:44:13.732 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2026-02-23T09:44:13.732 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: Command line: ntpd -gq 2026-02-23T09:44:13.732 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: ---------------------------------------------------- 2026-02-23T09:44:13.732 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: ntp-4 is maintained by Network Time Foundation, 2026-02-23T09:44:13.732 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2026-02-23T09:44:13.733 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: corporation. Support and training for ntp-4 are 2026-02-23T09:44:13.733 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: available at https://www.nwtime.org/support 2026-02-23T09:44:13.733 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: ---------------------------------------------------- 2026-02-23T09:44:13.733 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: proto: precision = 0.030 usec (-25) 2026-02-23T09:44:13.733 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: basedate set to 2022-02-04 2026-02-23T09:44:13.733 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: gps base set to 2022-02-06 (week 2196) 2026-02-23T09:44:13.733 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2026-02-23T09:44:13.733 INFO:teuthology.orchestra.run.trial137.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2026-02-23T09:44:13.733 INFO:teuthology.orchestra.run.trial137.stderr:restrict ::: KOD does nothing without LIMITED. 2026-02-23T09:44:13.734 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: restrict ::: KOD does nothing without LIMITED. 2026-02-23T09:44:13.735 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: Listen and drop on 0 v6wildcard [::]:123 2026-02-23T09:44:13.735 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2026-02-23T09:44:13.735 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: Listen normally on 2 lo 127.0.0.1:123 2026-02-23T09:44:13.735 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: Listen normally on 3 enp1s0f0 10.20.193.137:123 2026-02-23T09:44:13.735 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: Listen normally on 4 lo [::1]:123 2026-02-23T09:44:13.735 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: Listen normally on 5 enp1s0f0 [fe80::925a:8ff:fe77:5fbe%2]:123 2026-02-23T09:44:13.735 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:14 ntpd[9411]: Listening on routing socket on fd #22 for interface updates 2026-02-23T09:44:14.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:15 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:14.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:15 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:14.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:14.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:14.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:14.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:14.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:14.733 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:14.736 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:14.736 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:14.736 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:14.736 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:14.754 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:15 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:14.754 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:15 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:14.754 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:15 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:14.754 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:15 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:14.769 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:14.770 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:14.770 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:14.770 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:14.812 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:14.812 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:14.812 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:14.812 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:15 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:15.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:15.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:15.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:15.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:15.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:15.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:15.720 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:15.720 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:15.720 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:15.720 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:15.795 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:15.796 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:15.796 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:15.796 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:15.931 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:15.931 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:15.931 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:15.931 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:16 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:16.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:17 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:17 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.737 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.737 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.737 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:16.737 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:16.753 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:17 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.753 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:17 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.753 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:17 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:16.753 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:17 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:16.769 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.769 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.769 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:16.770 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:16.811 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.811 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.811 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:16.811 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:16.927 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:16.927 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:16.927 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:16.927 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:17 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:17.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:17.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:17.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:17.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:17.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:17.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:17.720 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:17.720 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:17.720 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:17.720 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:17.795 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:17.795 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:17.796 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:17.796 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:17.930 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:17.930 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:17.930 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:17.930 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:18 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:18.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:19 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:19 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.731 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.735 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.735 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.735 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:18.735 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:18.760 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:19 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.760 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:19 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.760 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:19 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:18.760 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:19 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:18.769 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.769 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.769 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:18.769 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:18.811 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.811 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.811 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:18.811 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:18.927 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:18.928 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:18.928 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:18.928 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:19 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:19.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:19.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:19.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:19.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:19.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:19.717 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:19.723 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:19.723 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:19.723 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:19.723 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:19.795 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:19.795 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:19.795 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:19.795 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:19.930 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:19.930 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:19.930 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:19.930 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:20.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:21 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:20.716 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:21 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:20.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:20.732 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:20.733 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:20.733 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:20.733 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:20.733 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:20.733 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:20.733 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:20.740 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:20.741 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:20.741 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:20.741 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:21 ntpd[9411]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:20.741 INFO:teuthology.orchestra.run.trial137.stdout:23 Feb 09:44:20 ntpd[9411]: ntpd: time set -0.331145 s 2026-02-23T09:44:20.741 INFO:teuthology.orchestra.run.trial137.stdout:ntpd: time set -0.331145s 2026-02-23T09:44:20.742 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:20 ntpd[9411]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2026-02-23T09:44:20.742 INFO:teuthology.orchestra.run.trial137.stderr:23 Feb 09:44:20 ntpd[9411]: can't open /var/log/ntpstats/loopstats.20260223: Permission denied 2026-02-23T09:44:20.753 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:21 ntpd[9422]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2026-02-23T09:44:20.753 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:21 ntpd[9422]: can't open /var/log/ntpstats/rawstats.20260223: Permission denied 2026-02-23T09:44:20.753 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:21 ntpd[9422]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2026-02-23T09:44:20.753 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:21 ntpd[9422]: can't open /var/log/ntpstats/peerstats.20260223: Permission denied 2026-02-23T09:44:20.754 INFO:teuthology.orchestra.run.trial120.stdout:23 Feb 09:44:20 ntpd[9422]: ntpd: time set -0.804378 s 2026-02-23T09:44:20.754 INFO:teuthology.orchestra.run.trial120.stdout:ntpd: time set -0.804378s 2026-02-23T09:44:20.754 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2026-02-23T09:44:20.754 INFO:teuthology.orchestra.run.trial120.stderr:23 Feb 09:44:20 ntpd[9422]: can't open /var/log/ntpstats/loopstats.20260223: Permission denied 2026-02-23T09:44:20.799 INFO:teuthology.orchestra.run.trial137.stdout: remote refid st t when poll reach delay offset jitter 2026-02-23T09:44:20.799 INFO:teuthology.orchestra.run.trial137.stdout:============================================================================== 2026-02-23T09:44:20.800 INFO:teuthology.orchestra.run.trial137.stdout: 172-233-189-68. .INIT. 16 u - 64 0 0.000 +0.000 0.000 2026-02-23T09:44:20.800 INFO:teuthology.orchestra.run.trial137.stdout: ip229.ip-51-81- .INIT. 16 u - 64 0 0.000 +0.000 0.000 2026-02-23T09:44:20.800 INFO:teuthology.orchestra.run.trial137.stdout: time4.lshiy.com .INIT. 16 u - 64 0 0.000 +0.000 0.000 2026-02-23T09:44:20.800 INFO:teuthology.orchestra.run.trial137.stdout: ntp6.kernfusion .INIT. 16 u - 64 0 0.000 +0.000 0.000 2026-02-23T09:44:20.816 INFO:teuthology.orchestra.run.trial120.stdout: remote refid st t when poll reach delay offset jitter 2026-02-23T09:44:20.816 INFO:teuthology.orchestra.run.trial120.stdout:============================================================================== 2026-02-23T09:44:20.816 INFO:teuthology.orchestra.run.trial120.stdout: 172-235-154-118 .INIT. 16 u - 64 0 0.000 +0.000 0.000 2026-02-23T09:44:20.816 INFO:teuthology.orchestra.run.trial120.stdout: 198.137.202.32 .INIT. 16 u - 64 0 0.000 +0.000 0.000 2026-02-23T09:44:20.817 INFO:teuthology.orchestra.run.trial120.stdout: s2-a.time.mci1. .INIT. 16 u - 64 0 0.000 +0.000 0.000 2026-02-23T09:44:20.817 INFO:teuthology.orchestra.run.trial120.stdout: neoknet.com .INIT. 16 u - 64 0 0.000 +0.000 0.000 2026-02-23T09:44:20.818 INFO:teuthology.run_tasks:Running task nvme_loop... 2026-02-23T09:44:20.833 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2026-02-23T09:44:20.834 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:44:20.834 DEBUG:teuthology.orchestra.run.trial120:> dd if=/scratch_devs of=/dev/stdout 2026-02-23T09:44:20.869 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-23T09:44:20.869 DEBUG:teuthology.orchestra.run.trial120:> stat /dev/vg_nvme/lv_1 2026-02-23T09:44:20.912 INFO:teuthology.orchestra.run.trial120.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-23T09:44:20.912 INFO:teuthology.orchestra.run.trial120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T09:44:20.912 INFO:teuthology.orchestra.run.trial120.stdout:Device: 5h/5d Inode: 906 Links: 1 2026-02-23T09:44:20.912 INFO:teuthology.orchestra.run.trial120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T09:44:20.912 INFO:teuthology.orchestra.run.trial120.stdout:Access: 2026-02-23 09:44:01.155454527 +0000 2026-02-23T09:44:20.912 INFO:teuthology.orchestra.run.trial120.stdout:Modify: 2026-02-23 09:44:00.995457247 +0000 2026-02-23T09:44:20.912 INFO:teuthology.orchestra.run.trial120.stdout:Change: 2026-02-23 09:44:00.995457247 +0000 2026-02-23T09:44:20.912 INFO:teuthology.orchestra.run.trial120.stdout: Birth: - 2026-02-23T09:44:20.912 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-23T09:44:20.959 INFO:teuthology.orchestra.run.trial120.stderr:1+0 records in 2026-02-23T09:44:20.959 INFO:teuthology.orchestra.run.trial120.stderr:1+0 records out 2026-02-23T09:44:20.959 INFO:teuthology.orchestra.run.trial120.stderr:512 bytes copied, 0.000192647 s, 2.7 MB/s 2026-02-23T09:44:20.960 DEBUG:teuthology.orchestra.run.trial120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-23T09:44:21.005 DEBUG:teuthology.orchestra.run.trial120:> stat /dev/vg_nvme/lv_2 2026-02-23T09:44:21.056 INFO:teuthology.orchestra.run.trial120.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-23T09:44:21.056 INFO:teuthology.orchestra.run.trial120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T09:44:21.056 INFO:teuthology.orchestra.run.trial120.stdout:Device: 5h/5d Inode: 928 Links: 1 2026-02-23T09:44:21.057 INFO:teuthology.orchestra.run.trial120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T09:44:21.057 INFO:teuthology.orchestra.run.trial120.stdout:Access: 2026-02-23 09:44:01.503448608 +0000 2026-02-23T09:44:21.057 INFO:teuthology.orchestra.run.trial120.stdout:Modify: 2026-02-23 09:44:01.315451805 +0000 2026-02-23T09:44:21.057 INFO:teuthology.orchestra.run.trial120.stdout:Change: 2026-02-23 09:44:01.315451805 +0000 2026-02-23T09:44:21.057 INFO:teuthology.orchestra.run.trial120.stdout: Birth: - 2026-02-23T09:44:21.057 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-23T09:44:21.104 INFO:teuthology.orchestra.run.trial120.stderr:1+0 records in 2026-02-23T09:44:21.104 INFO:teuthology.orchestra.run.trial120.stderr:1+0 records out 2026-02-23T09:44:21.104 INFO:teuthology.orchestra.run.trial120.stderr:512 bytes copied, 0.000174423 s, 2.9 MB/s 2026-02-23T09:44:21.105 DEBUG:teuthology.orchestra.run.trial120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-23T09:44:21.154 DEBUG:teuthology.orchestra.run.trial120:> stat /dev/vg_nvme/lv_3 2026-02-23T09:44:21.201 INFO:teuthology.orchestra.run.trial120.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-23T09:44:21.201 INFO:teuthology.orchestra.run.trial120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T09:44:21.201 INFO:teuthology.orchestra.run.trial120.stdout:Device: 5h/5d Inode: 954 Links: 1 2026-02-23T09:44:21.201 INFO:teuthology.orchestra.run.trial120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T09:44:21.201 INFO:teuthology.orchestra.run.trial120.stdout:Access: 2026-02-23 09:44:01.675445684 +0000 2026-02-23T09:44:21.201 INFO:teuthology.orchestra.run.trial120.stdout:Modify: 2026-02-23 09:44:01.671445753 +0000 2026-02-23T09:44:21.201 INFO:teuthology.orchestra.run.trial120.stdout:Change: 2026-02-23 09:44:01.671445753 +0000 2026-02-23T09:44:21.201 INFO:teuthology.orchestra.run.trial120.stdout: Birth: - 2026-02-23T09:44:21.202 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-23T09:44:21.248 INFO:teuthology.orchestra.run.trial120.stderr:1+0 records in 2026-02-23T09:44:21.248 INFO:teuthology.orchestra.run.trial120.stderr:1+0 records out 2026-02-23T09:44:21.248 INFO:teuthology.orchestra.run.trial120.stderr:512 bytes copied, 0.000187467 s, 2.7 MB/s 2026-02-23T09:44:21.249 DEBUG:teuthology.orchestra.run.trial120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-23T09:44:21.298 DEBUG:teuthology.orchestra.run.trial120:> stat /dev/vg_nvme/lv_4 2026-02-23T09:44:21.345 INFO:teuthology.orchestra.run.trial120.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-23T09:44:21.345 INFO:teuthology.orchestra.run.trial120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T09:44:21.345 INFO:teuthology.orchestra.run.trial120.stdout:Device: 5h/5d Inode: 978 Links: 1 2026-02-23T09:44:21.345 INFO:teuthology.orchestra.run.trial120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T09:44:21.345 INFO:teuthology.orchestra.run.trial120.stdout:Access: 2026-02-23 09:44:02.159437455 +0000 2026-02-23T09:44:21.345 INFO:teuthology.orchestra.run.trial120.stdout:Modify: 2026-02-23 09:44:01.995440244 +0000 2026-02-23T09:44:21.345 INFO:teuthology.orchestra.run.trial120.stdout:Change: 2026-02-23 09:44:01.995440244 +0000 2026-02-23T09:44:21.345 INFO:teuthology.orchestra.run.trial120.stdout: Birth: - 2026-02-23T09:44:21.346 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-23T09:44:21.399 INFO:teuthology.orchestra.run.trial120.stderr:1+0 records in 2026-02-23T09:44:21.399 INFO:teuthology.orchestra.run.trial120.stderr:1+0 records out 2026-02-23T09:44:21.400 INFO:teuthology.orchestra.run.trial120.stderr:512 bytes copied, 0.000174944 s, 2.9 MB/s 2026-02-23T09:44:21.401 DEBUG:teuthology.orchestra.run.trial120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-23T09:44:21.446 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:44:21.523 INFO:teuthology.orchestra.run.trial120.stdout:loop 2026-02-23T09:44:21.524 INFO:tasks.nvme_loop:Connecting nvme_loop trial120:/dev/vg_nvme/lv_1... 2026-02-23T09:44:21.524 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:44:21.579 INFO:teuthology.orchestra.run.trial120.stdout:1 2026-02-23T09:44:21.596 INFO:teuthology.orchestra.run.trial120.stdout:/dev/vg_nvme/lv_11 2026-02-23T09:44:21.612 INFO:tasks.nvme_loop:Connecting nvme_loop trial120:/dev/vg_nvme/lv_2... 2026-02-23T09:44:21.612 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:44:21.667 INFO:teuthology.orchestra.run.trial120.stdout:1 2026-02-23T09:44:21.685 INFO:teuthology.orchestra.run.trial120.stdout:/dev/vg_nvme/lv_21 2026-02-23T09:44:21.700 INFO:tasks.nvme_loop:Connecting nvme_loop trial120:/dev/vg_nvme/lv_3... 2026-02-23T09:44:21.701 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:44:21.753 INFO:teuthology.orchestra.run.trial120.stdout:1 2026-02-23T09:44:21.772 INFO:teuthology.orchestra.run.trial120.stdout:/dev/vg_nvme/lv_31 2026-02-23T09:44:21.788 INFO:tasks.nvme_loop:Connecting nvme_loop trial120:/dev/vg_nvme/lv_4... 2026-02-23T09:44:21.788 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:44:21.843 INFO:teuthology.orchestra.run.trial120.stdout:1 2026-02-23T09:44:21.863 INFO:teuthology.orchestra.run.trial120.stdout:/dev/vg_nvme/lv_41 2026-02-23T09:44:21.877 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:44:21.878 DEBUG:teuthology.orchestra.run.trial120:> dd if=/scratch_devs of=/dev/stdout 2026-02-23T09:44:21.929 DEBUG:teuthology.orchestra.run.trial120:> lsblk 2026-02-23T09:44:21.978 INFO:teuthology.orchestra.run.trial120.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-23T09:44:21.979 INFO:teuthology.orchestra.run.trial120.stdout:loop0 7:0 0 63.8M 1 loop /snap/core20/2686 2026-02-23T09:44:21.979 INFO:teuthology.orchestra.run.trial120.stdout:loop1 7:1 0 91.4M 1 loop /snap/lxd/36918 2026-02-23T09:44:21.979 INFO:teuthology.orchestra.run.trial120.stdout:loop2 7:2 0 48.1M 1 loop /snap/snapd/25935 2026-02-23T09:44:21.979 INFO:teuthology.orchestra.run.trial120.stdout:nvme1n1 259:0 0 1.7T 0 disk 2026-02-23T09:44:21.979 INFO:teuthology.orchestra.run.trial120.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-23T09:44:21.979 INFO:teuthology.orchestra.run.trial120.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-23T09:44:21.979 INFO:teuthology.orchestra.run.trial120.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-23T09:44:21.979 INFO:teuthology.orchestra.run.trial120.stdout:nvme0n1 259:1 0 894.3G 0 disk 2026-02-23T09:44:21.980 INFO:teuthology.orchestra.run.trial120.stdout:├─nvme0n1p1 259:2 0 512M 0 part /boot/efi 2026-02-23T09:44:21.980 INFO:teuthology.orchestra.run.trial120.stdout:└─nvme0n1p2 259:3 0 893.8G 0 part / 2026-02-23T09:44:21.980 INFO:teuthology.orchestra.run.trial120.stdout:nvme2n1 259:4 0 1.7T 0 disk 2026-02-23T09:44:21.980 INFO:teuthology.orchestra.run.trial120.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-23T09:44:21.980 INFO:teuthology.orchestra.run.trial120.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-23T09:44:21.980 INFO:teuthology.orchestra.run.trial120.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-23T09:44:21.980 INFO:teuthology.orchestra.run.trial120.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-23T09:44:21.980 INFO:teuthology.orchestra.run.trial120.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-23T09:44:21.980 INFO:teuthology.orchestra.run.trial120.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-23T09:44:21.981 DEBUG:teuthology.orchestra.run.trial120:> sudo nvme list -o json 2026-02-23T09:44:22.028 INFO:teuthology.orchestra.run.trial120.stdout:{ 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "Devices" : [ 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: { 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "DevicePath" : "/dev/nvme0n1", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "Firmware" : "E2MU200", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "Index" : 0, 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "ModelNumber" : "Micron_7450_MTFDKBA960TFR", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "SerialNumber" : "25174FCD467A" 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: }, 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: { 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "DevicePath" : "/dev/nvme1n1", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "Firmware" : "E3MQ000", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "Index" : 1, 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "ModelNumber" : "MTFDKCC1T9TGP-1BK1JABYY", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "SerialNumber" : "092510AB6E52" 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: }, 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: { 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "DevicePath" : "/dev/nvme2n1", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "Firmware" : "E3MQ000", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "Index" : 2, 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "ModelNumber" : "MTFDKCC1T9TGP-1BK1JABYY", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "SerialNumber" : "092510AB6E79" 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: }, 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: { 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "DevicePath" : "/dev/nvme3n1", 2026-02-23T09:44:22.029 INFO:teuthology.orchestra.run.trial120.stdout: "Firmware" : "5.15.0-1", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "Index" : 3, 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "ModelNumber" : "Linux", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "SerialNumber" : "d22bab77318415e6fd87" 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: }, 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: { 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "DevicePath" : "/dev/nvme4n1", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "Firmware" : "5.15.0-1", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "Index" : 4, 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "ModelNumber" : "Linux", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "SerialNumber" : "b197b2e61feeb5e15342" 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: }, 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: { 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "DevicePath" : "/dev/nvme5n1", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "Firmware" : "5.15.0-1", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "Index" : 5, 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "ModelNumber" : "Linux", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "SerialNumber" : "faa804b89017bb91eb8c" 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: }, 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: { 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "DevicePath" : "/dev/nvme6n1", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "Firmware" : "5.15.0-1", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "Index" : 6, 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "ModelNumber" : "Linux", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: "SerialNumber" : "9999153180506902af48" 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: } 2026-02-23T09:44:22.030 INFO:teuthology.orchestra.run.trial120.stdout: ] 2026-02-23T09:44:22.031 INFO:teuthology.orchestra.run.trial120.stdout:} 2026-02-23T09:44:22.031 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-23T09:44:22.084 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:22.085 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:22.085 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00480916 s, 852 kB/s 2026-02-23T09:44:22.086 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-23T09:44:22.136 INFO:teuthology.orchestra.run.trial120.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:22.136 INFO:teuthology.orchestra.run.trial120.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:22.136 INFO:teuthology.orchestra.run.trial120.stdout:00000016 2026-02-23T09:44:22.137 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-23T09:44:22.192 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:22.192 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:22.192 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00466683 s, 878 kB/s 2026-02-23T09:44:22.193 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-23T09:44:22.243 INFO:teuthology.orchestra.run.trial120.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:22.244 INFO:teuthology.orchestra.run.trial120.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:22.244 INFO:teuthology.orchestra.run.trial120.stdout:40000016 2026-02-23T09:44:22.245 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-23T09:44:22.300 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:22.301 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:22.301 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00461199 s, 888 kB/s 2026-02-23T09:44:22.302 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-23T09:44:22.352 INFO:teuthology.orchestra.run.trial120.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:22.352 INFO:teuthology.orchestra.run.trial120.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:22.352 INFO:teuthology.orchestra.run.trial120.stdout:280000016 2026-02-23T09:44:22.353 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-23T09:44:22.408 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:22.408 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:22.408 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00472935 s, 866 kB/s 2026-02-23T09:44:22.410 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-23T09:44:22.463 INFO:teuthology.orchestra.run.trial120.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:22.463 INFO:teuthology.orchestra.run.trial120.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:22.464 INFO:teuthology.orchestra.run.trial120.stdout:00000016 2026-02-23T09:44:22.465 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-23T09:44:22.516 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:22.516 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:22.517 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00471563 s, 869 kB/s 2026-02-23T09:44:22.518 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-23T09:44:22.567 INFO:teuthology.orchestra.run.trial120.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:22.568 INFO:teuthology.orchestra.run.trial120.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:22.568 INFO:teuthology.orchestra.run.trial120.stdout:40000016 2026-02-23T09:44:22.569 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-23T09:44:22.624 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:22.624 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:22.624 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00461202 s, 888 kB/s 2026-02-23T09:44:22.625 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-23T09:44:22.675 INFO:teuthology.orchestra.run.trial120.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:22.675 INFO:teuthology.orchestra.run.trial120.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:22.675 INFO:teuthology.orchestra.run.trial120.stdout:280000016 2026-02-23T09:44:22.676 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-23T09:44:22.727 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:22.727 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:22.728 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00468753 s, 874 kB/s 2026-02-23T09:44:22.728 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-23T09:44:22.779 INFO:teuthology.orchestra.run.trial120.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:22.779 INFO:teuthology.orchestra.run.trial120.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:22.779 INFO:teuthology.orchestra.run.trial120.stdout:00000016 2026-02-23T09:44:22.780 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-23T09:44:22.832 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:22.832 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:22.832 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00469837 s, 872 kB/s 2026-02-23T09:44:22.833 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-23T09:44:22.883 INFO:teuthology.orchestra.run.trial120.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:22.884 INFO:teuthology.orchestra.run.trial120.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:22.884 INFO:teuthology.orchestra.run.trial120.stdout:40000016 2026-02-23T09:44:22.885 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-23T09:44:22.940 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:22.940 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:22.940 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0047476 s, 863 kB/s 2026-02-23T09:44:22.941 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-23T09:44:22.991 INFO:teuthology.orchestra.run.trial120.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:22.992 INFO:teuthology.orchestra.run.trial120.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:22.992 INFO:teuthology.orchestra.run.trial120.stdout:280000016 2026-02-23T09:44:22.993 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-23T09:44:23.048 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:23.048 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:23.048 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00491765 s, 833 kB/s 2026-02-23T09:44:23.050 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-23T09:44:23.099 INFO:teuthology.orchestra.run.trial120.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:23.100 INFO:teuthology.orchestra.run.trial120.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:23.100 INFO:teuthology.orchestra.run.trial120.stdout:00000016 2026-02-23T09:44:23.101 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-23T09:44:23.155 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:23.156 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:23.156 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0046118 s, 888 kB/s 2026-02-23T09:44:23.156 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-23T09:44:23.207 INFO:teuthology.orchestra.run.trial120.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:23.207 INFO:teuthology.orchestra.run.trial120.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:23.208 INFO:teuthology.orchestra.run.trial120.stdout:40000016 2026-02-23T09:44:23.209 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-23T09:44:23.260 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records in 2026-02-23T09:44:23.260 INFO:teuthology.orchestra.run.trial120.stderr:4096+0 records out 2026-02-23T09:44:23.260 INFO:teuthology.orchestra.run.trial120.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00472712 s, 866 kB/s 2026-02-23T09:44:23.261 DEBUG:teuthology.orchestra.run.trial120:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-23T09:44:23.307 INFO:teuthology.orchestra.run.trial120.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:23.307 INFO:teuthology.orchestra.run.trial120.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:23.307 INFO:teuthology.orchestra.run.trial120.stdout:280000016 2026-02-23T09:44:23.309 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-23T09:44:23.309 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:44:23.309 DEBUG:teuthology.orchestra.run.trial120:> sudo dd of=/scratch_devs 2026-02-23T09:44:23.358 DEBUG:teuthology.orchestra.run.trial137:> set -ex 2026-02-23T09:44:23.358 DEBUG:teuthology.orchestra.run.trial137:> dd if=/scratch_devs of=/dev/stdout 2026-02-23T09:44:23.364 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-23T09:44:23.364 DEBUG:teuthology.orchestra.run.trial137:> stat /dev/vg_nvme/lv_1 2026-02-23T09:44:23.409 INFO:teuthology.orchestra.run.trial137.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-23T09:44:23.409 INFO:teuthology.orchestra.run.trial137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T09:44:23.409 INFO:teuthology.orchestra.run.trial137.stdout:Device: 5h/5d Inode: 907 Links: 1 2026-02-23T09:44:23.409 INFO:teuthology.orchestra.run.trial137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T09:44:23.409 INFO:teuthology.orchestra.run.trial137.stdout:Access: 2026-02-23 09:44:00.689568596 +0000 2026-02-23T09:44:23.409 INFO:teuthology.orchestra.run.trial137.stdout:Modify: 2026-02-23 09:44:00.509571654 +0000 2026-02-23T09:44:23.409 INFO:teuthology.orchestra.run.trial137.stdout:Change: 2026-02-23 09:44:00.509571654 +0000 2026-02-23T09:44:23.409 INFO:teuthology.orchestra.run.trial137.stdout: Birth: - 2026-02-23T09:44:23.410 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-23T09:44:23.455 INFO:teuthology.orchestra.run.trial137.stderr:1+0 records in 2026-02-23T09:44:23.455 INFO:teuthology.orchestra.run.trial137.stderr:1+0 records out 2026-02-23T09:44:23.455 INFO:teuthology.orchestra.run.trial137.stderr:512 bytes copied, 0.000178842 s, 2.9 MB/s 2026-02-23T09:44:23.456 DEBUG:teuthology.orchestra.run.trial137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-23T09:44:23.502 DEBUG:teuthology.orchestra.run.trial137:> stat /dev/vg_nvme/lv_2 2026-02-23T09:44:23.553 INFO:teuthology.orchestra.run.trial137.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-23T09:44:23.553 INFO:teuthology.orchestra.run.trial137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T09:44:23.553 INFO:teuthology.orchestra.run.trial137.stdout:Device: 5h/5d Inode: 929 Links: 1 2026-02-23T09:44:23.553 INFO:teuthology.orchestra.run.trial137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T09:44:23.553 INFO:teuthology.orchestra.run.trial137.stdout:Access: 2026-02-23 09:44:01.053562407 +0000 2026-02-23T09:44:23.553 INFO:teuthology.orchestra.run.trial137.stdout:Modify: 2026-02-23 09:44:00.861565669 +0000 2026-02-23T09:44:23.554 INFO:teuthology.orchestra.run.trial137.stdout:Change: 2026-02-23 09:44:00.861565669 +0000 2026-02-23T09:44:23.554 INFO:teuthology.orchestra.run.trial137.stdout: Birth: - 2026-02-23T09:44:23.554 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-23T09:44:23.604 INFO:teuthology.orchestra.run.trial137.stderr:1+0 records in 2026-02-23T09:44:23.604 INFO:teuthology.orchestra.run.trial137.stderr:1+0 records out 2026-02-23T09:44:23.604 INFO:teuthology.orchestra.run.trial137.stderr:512 bytes copied, 0.000175365 s, 2.9 MB/s 2026-02-23T09:44:23.605 DEBUG:teuthology.orchestra.run.trial137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-23T09:44:23.654 DEBUG:teuthology.orchestra.run.trial137:> stat /dev/vg_nvme/lv_3 2026-02-23T09:44:23.701 INFO:teuthology.orchestra.run.trial137.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-23T09:44:23.701 INFO:teuthology.orchestra.run.trial137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T09:44:23.701 INFO:teuthology.orchestra.run.trial137.stdout:Device: 5h/5d Inode: 952 Links: 1 2026-02-23T09:44:23.701 INFO:teuthology.orchestra.run.trial137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T09:44:23.702 INFO:teuthology.orchestra.run.trial137.stdout:Access: 2026-02-23 09:44:01.417556218 +0000 2026-02-23T09:44:23.702 INFO:teuthology.orchestra.run.trial137.stdout:Modify: 2026-02-23 09:44:01.213559687 +0000 2026-02-23T09:44:23.702 INFO:teuthology.orchestra.run.trial137.stdout:Change: 2026-02-23 09:44:01.213559687 +0000 2026-02-23T09:44:23.702 INFO:teuthology.orchestra.run.trial137.stdout: Birth: - 2026-02-23T09:44:23.702 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-23T09:44:23.751 INFO:teuthology.orchestra.run.trial137.stderr:1+0 records in 2026-02-23T09:44:23.752 INFO:teuthology.orchestra.run.trial137.stderr:1+0 records out 2026-02-23T09:44:23.752 INFO:teuthology.orchestra.run.trial137.stderr:512 bytes copied, 0.000176788 s, 2.9 MB/s 2026-02-23T09:44:23.753 DEBUG:teuthology.orchestra.run.trial137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-23T09:44:23.801 DEBUG:teuthology.orchestra.run.trial137:> stat /dev/vg_nvme/lv_4 2026-02-23T09:44:23.848 INFO:teuthology.orchestra.run.trial137.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-23T09:44:23.848 INFO:teuthology.orchestra.run.trial137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-23T09:44:23.848 INFO:teuthology.orchestra.run.trial137.stdout:Device: 5h/5d Inode: 979 Links: 1 2026-02-23T09:44:23.848 INFO:teuthology.orchestra.run.trial137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-23T09:44:23.848 INFO:teuthology.orchestra.run.trial137.stdout:Access: 2026-02-23 09:44:01.781550029 +0000 2026-02-23T09:44:23.848 INFO:teuthology.orchestra.run.trial137.stdout:Modify: 2026-02-23 09:44:01.597553156 +0000 2026-02-23T09:44:23.848 INFO:teuthology.orchestra.run.trial137.stdout:Change: 2026-02-23 09:44:01.597553156 +0000 2026-02-23T09:44:23.848 INFO:teuthology.orchestra.run.trial137.stdout: Birth: - 2026-02-23T09:44:23.848 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-23T09:44:23.895 INFO:teuthology.orchestra.run.trial137.stderr:1+0 records in 2026-02-23T09:44:23.896 INFO:teuthology.orchestra.run.trial137.stderr:1+0 records out 2026-02-23T09:44:23.896 INFO:teuthology.orchestra.run.trial137.stderr:512 bytes copied, 0.000170927 s, 3.0 MB/s 2026-02-23T09:44:23.897 DEBUG:teuthology.orchestra.run.trial137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-23T09:44:23.946 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:44:24.021 INFO:teuthology.orchestra.run.trial137.stdout:loop 2026-02-23T09:44:24.022 INFO:tasks.nvme_loop:Connecting nvme_loop trial137:/dev/vg_nvme/lv_1... 2026-02-23T09:44:24.022 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:44:24.081 INFO:teuthology.orchestra.run.trial137.stdout:1 2026-02-23T09:44:24.099 INFO:teuthology.orchestra.run.trial137.stdout:/dev/vg_nvme/lv_11 2026-02-23T09:44:24.113 INFO:tasks.nvme_loop:Connecting nvme_loop trial137:/dev/vg_nvme/lv_2... 2026-02-23T09:44:24.114 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:44:24.175 INFO:teuthology.orchestra.run.trial137.stdout:1 2026-02-23T09:44:24.193 INFO:teuthology.orchestra.run.trial137.stdout:/dev/vg_nvme/lv_21 2026-02-23T09:44:24.210 INFO:tasks.nvme_loop:Connecting nvme_loop trial137:/dev/vg_nvme/lv_3... 2026-02-23T09:44:24.210 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:44:24.269 INFO:teuthology.orchestra.run.trial137.stdout:1 2026-02-23T09:44:24.288 INFO:teuthology.orchestra.run.trial137.stdout:/dev/vg_nvme/lv_31 2026-02-23T09:44:24.305 INFO:tasks.nvme_loop:Connecting nvme_loop trial137:/dev/vg_nvme/lv_4... 2026-02-23T09:44:24.306 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:44:24.361 INFO:teuthology.orchestra.run.trial137.stdout:1 2026-02-23T09:44:24.379 INFO:teuthology.orchestra.run.trial137.stdout:/dev/vg_nvme/lv_41 2026-02-23T09:44:24.395 DEBUG:teuthology.orchestra.run.trial137:> set -ex 2026-02-23T09:44:24.395 DEBUG:teuthology.orchestra.run.trial137:> dd if=/scratch_devs of=/dev/stdout 2026-02-23T09:44:24.441 DEBUG:teuthology.orchestra.run.trial137:> lsblk 2026-02-23T09:44:24.487 INFO:teuthology.orchestra.run.trial137.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-23T09:44:24.487 INFO:teuthology.orchestra.run.trial137.stdout:loop0 7:0 0 63.8M 1 loop /snap/core20/2686 2026-02-23T09:44:24.487 INFO:teuthology.orchestra.run.trial137.stdout:loop1 7:1 0 91.4M 1 loop /snap/lxd/36918 2026-02-23T09:44:24.487 INFO:teuthology.orchestra.run.trial137.stdout:loop2 7:2 0 48.1M 1 loop /snap/snapd/25935 2026-02-23T09:44:24.487 INFO:teuthology.orchestra.run.trial137.stdout:nvme0n1 259:0 0 894.3G 0 disk 2026-02-23T09:44:24.487 INFO:teuthology.orchestra.run.trial137.stdout:├─nvme0n1p1 259:1 0 512M 0 part /boot/efi 2026-02-23T09:44:24.487 INFO:teuthology.orchestra.run.trial137.stdout:└─nvme0n1p2 259:2 0 893.8G 0 part / 2026-02-23T09:44:24.487 INFO:teuthology.orchestra.run.trial137.stdout:nvme1n1 259:3 0 1.7T 0 disk 2026-02-23T09:44:24.488 INFO:teuthology.orchestra.run.trial137.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-23T09:44:24.488 INFO:teuthology.orchestra.run.trial137.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-23T09:44:24.488 INFO:teuthology.orchestra.run.trial137.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-23T09:44:24.488 INFO:teuthology.orchestra.run.trial137.stdout:nvme2n1 259:4 0 1.7T 0 disk 2026-02-23T09:44:24.488 INFO:teuthology.orchestra.run.trial137.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-23T09:44:24.488 INFO:teuthology.orchestra.run.trial137.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-23T09:44:24.488 INFO:teuthology.orchestra.run.trial137.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-23T09:44:24.489 INFO:teuthology.orchestra.run.trial137.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-23T09:44:24.489 INFO:teuthology.orchestra.run.trial137.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-23T09:44:24.489 INFO:teuthology.orchestra.run.trial137.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-23T09:44:24.489 DEBUG:teuthology.orchestra.run.trial137:> sudo nvme list -o json 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout:{ 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "Devices" : [ 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: { 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "DevicePath" : "/dev/nvme0n1", 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "Firmware" : "E2MU200", 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "Index" : 0, 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "ModelNumber" : "Micron_7450_MTFDKBA960TFR", 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "SerialNumber" : "25174FCD7691" 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: }, 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: { 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "DevicePath" : "/dev/nvme1n1", 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "Firmware" : "E3MQ000", 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "Index" : 1, 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "ModelNumber" : "MTFDKCC1T9TGP-1BK1JABYY", 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "SerialNumber" : "092510AB6BD5" 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: }, 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: { 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "DevicePath" : "/dev/nvme2n1", 2026-02-23T09:44:24.537 INFO:teuthology.orchestra.run.trial137.stdout: "Firmware" : "E3MQ000", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "Index" : 2, 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ModelNumber" : "MTFDKCC1T9TGP-1BK1JABYY", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "SerialNumber" : "092510AB6B81" 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: }, 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: { 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "DevicePath" : "/dev/nvme3n1", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "Firmware" : "5.15.0-1", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "Index" : 3, 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ModelNumber" : "Linux", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "SerialNumber" : "c2608119228c10403c24" 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: }, 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: { 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "DevicePath" : "/dev/nvme4n1", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "Firmware" : "5.15.0-1", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "Index" : 4, 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ModelNumber" : "Linux", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "SerialNumber" : "498be07d2ff62d2393ef" 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: }, 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: { 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "DevicePath" : "/dev/nvme5n1", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "Firmware" : "5.15.0-1", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "Index" : 5, 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ModelNumber" : "Linux", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "SerialNumber" : "35c681c6a118c9a739ac" 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: }, 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: { 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "DevicePath" : "/dev/nvme6n1", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "Firmware" : "5.15.0-1", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "Index" : 6, 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ModelNumber" : "Linux", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "ProductName" : "Unknown Device", 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: "SerialNumber" : "ca8585aff4e6f9686bed" 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: } 2026-02-23T09:44:24.538 INFO:teuthology.orchestra.run.trial137.stdout: ] 2026-02-23T09:44:24.539 INFO:teuthology.orchestra.run.trial137.stdout:} 2026-02-23T09:44:24.539 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-23T09:44:24.592 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:24.592 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:24.592 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.004636 s, 884 kB/s 2026-02-23T09:44:24.593 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-23T09:44:24.643 INFO:teuthology.orchestra.run.trial137.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:24.643 INFO:teuthology.orchestra.run.trial137.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:24.644 INFO:teuthology.orchestra.run.trial137.stdout:00000016 2026-02-23T09:44:24.644 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-23T09:44:24.695 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:24.696 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:24.696 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00487913 s, 839 kB/s 2026-02-23T09:44:24.696 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-23T09:44:24.743 INFO:teuthology.orchestra.run.trial137.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:24.743 INFO:teuthology.orchestra.run.trial137.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:24.743 INFO:teuthology.orchestra.run.trial137.stdout:40000016 2026-02-23T09:44:24.744 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-23T09:44:24.796 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:24.796 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:24.796 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00470508 s, 871 kB/s 2026-02-23T09:44:24.798 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-23T09:44:24.848 INFO:teuthology.orchestra.run.trial137.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:24.848 INFO:teuthology.orchestra.run.trial137.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:24.848 INFO:teuthology.orchestra.run.trial137.stdout:280000016 2026-02-23T09:44:24.849 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-23T09:44:24.904 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:24.904 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:24.904 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00490148 s, 836 kB/s 2026-02-23T09:44:24.906 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-23T09:44:24.955 INFO:teuthology.orchestra.run.trial137.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:24.956 INFO:teuthology.orchestra.run.trial137.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:24.956 INFO:teuthology.orchestra.run.trial137.stdout:00000016 2026-02-23T09:44:24.957 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-23T09:44:25.012 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:25.012 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:25.012 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00454739 s, 901 kB/s 2026-02-23T09:44:25.013 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-23T09:44:25.064 INFO:teuthology.orchestra.run.trial137.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:25.064 INFO:teuthology.orchestra.run.trial137.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:25.064 INFO:teuthology.orchestra.run.trial137.stdout:40000016 2026-02-23T09:44:25.065 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-23T09:44:25.120 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:25.120 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:25.120 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00467054 s, 877 kB/s 2026-02-23T09:44:25.122 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-23T09:44:25.172 INFO:teuthology.orchestra.run.trial137.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:25.172 INFO:teuthology.orchestra.run.trial137.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:25.172 INFO:teuthology.orchestra.run.trial137.stdout:280000016 2026-02-23T09:44:25.173 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-23T09:44:25.228 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:25.229 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:25.229 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00463593 s, 884 kB/s 2026-02-23T09:44:25.230 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-23T09:44:25.284 INFO:teuthology.orchestra.run.trial137.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:25.284 INFO:teuthology.orchestra.run.trial137.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:25.284 INFO:teuthology.orchestra.run.trial137.stdout:00000016 2026-02-23T09:44:25.285 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-23T09:44:25.336 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:25.337 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:25.337 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00472272 s, 867 kB/s 2026-02-23T09:44:25.338 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-23T09:44:25.388 INFO:teuthology.orchestra.run.trial137.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:25.388 INFO:teuthology.orchestra.run.trial137.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:25.388 INFO:teuthology.orchestra.run.trial137.stdout:40000016 2026-02-23T09:44:25.388 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-23T09:44:25.439 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:25.440 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:25.440 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00456669 s, 897 kB/s 2026-02-23T09:44:25.441 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-23T09:44:25.487 INFO:teuthology.orchestra.run.trial137.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:25.488 INFO:teuthology.orchestra.run.trial137.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:25.488 INFO:teuthology.orchestra.run.trial137.stdout:280000016 2026-02-23T09:44:25.489 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-23T09:44:25.544 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:25.544 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:25.544 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00459541 s, 891 kB/s 2026-02-23T09:44:25.546 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-23T09:44:25.600 INFO:teuthology.orchestra.run.trial137.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:25.600 INFO:teuthology.orchestra.run.trial137.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:25.600 INFO:teuthology.orchestra.run.trial137.stdout:00000016 2026-02-23T09:44:25.601 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-23T09:44:25.656 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:25.656 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:25.656 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00456761 s, 897 kB/s 2026-02-23T09:44:25.658 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-23T09:44:25.707 INFO:teuthology.orchestra.run.trial137.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:25.707 INFO:teuthology.orchestra.run.trial137.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:25.707 INFO:teuthology.orchestra.run.trial137.stdout:40000016 2026-02-23T09:44:25.708 DEBUG:teuthology.orchestra.run.trial137:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-23T09:44:25.760 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records in 2026-02-23T09:44:25.760 INFO:teuthology.orchestra.run.trial137.stderr:4096+0 records out 2026-02-23T09:44:25.760 INFO:teuthology.orchestra.run.trial137.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00468074 s, 875 kB/s 2026-02-23T09:44:25.762 DEBUG:teuthology.orchestra.run.trial137:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-23T09:44:25.811 INFO:teuthology.orchestra.run.trial137.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-23T09:44:25.811 INFO:teuthology.orchestra.run.trial137.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-23T09:44:25.811 INFO:teuthology.orchestra.run.trial137.stdout:280000016 2026-02-23T09:44:25.812 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-23T09:44:25.812 DEBUG:teuthology.orchestra.run.trial137:> set -ex 2026-02-23T09:44:25.812 DEBUG:teuthology.orchestra.run.trial137:> sudo dd of=/scratch_devs 2026-02-23T09:44:25.861 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-23T09:44:25.992 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-23T09:44:25.992 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T09:44:25.994 INFO:tasks.cephadm:Cluster fsid is 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:25.994 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-23T09:44:25.994 INFO:tasks.cephadm:No mon roles; fabricating mons 2026-02-23T09:44:25.994 INFO:tasks.cephadm:Monitor IPs: {'mon.trial120': '10.20.193.120', 'mon.trial137': '10.20.193.137'} 2026-02-23T09:44:25.994 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-23T09:44:25.994 DEBUG:teuthology.orchestra.run.trial120:> sudo hostname $(hostname -s) 2026-02-23T09:44:26.004 DEBUG:teuthology.orchestra.run.trial137:> sudo hostname $(hostname -s) 2026-02-23T09:44:26.014 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-23T09:44:26.014 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T09:44:26.144 INFO:tasks.cephadm:builder_project result: [{'url': 'https://3.chacra.ceph.com/r/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/ubuntu/jammy/flavors/default/', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/ubuntu/jammy/flavors/default/', 'ref': 'wip-shweta-testing-2026-02-19-2025', 'sha1': '244ee61d76a715c3ac0d60eeb3321aefb91c3511', 'distro': 'ubuntu', 'distro_version': '22.04', 'distro_codename': 'jammy', 'modified': '2026-02-20 22:23:21.367694', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['x86_64'], 'extra': {'version': '20.3.0-5338-g244ee61d', 'package_manager_version': '20.3.0-5338-g244ee61d-1jammy', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/3126/', 'root_build_cause': '', 'node_name': '10.20.192.24+soko14', 'job_name': 'ceph-dev-pipeline'}}] 2026-02-23T09:44:26.269 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref wip-shweta-testing-2026-02-19-2025, sha1 244ee61d76a715c3ac0d60eeb3321aefb91c3511 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T09:44:26.270 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/ubuntu/jammy/x86_64/flavors/default/cephadm 2026-02-23T09:44:26.270 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/ubuntu/jammy/x86_64/flavors/default/cephadm 2026-02-23T09:44:26.270 DEBUG:teuthology.orchestra.run.trial120:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-23T09:44:26.637 INFO:teuthology.orchestra.run.trial120.stdout:-rw-rw-r-- 1 ubuntu ubuntu 1083604 Feb 23 09:44 /home/ubuntu/cephtest/cephadm 2026-02-23T09:44:26.637 DEBUG:teuthology.orchestra.run.trial137:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-shweta-testing-2026-02-19-2025/244ee61d76a715c3ac0d60eeb3321aefb91c3511/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-23T09:44:26.986 INFO:teuthology.orchestra.run.trial137.stdout:-rw-rw-r-- 1 ubuntu ubuntu 1083604 Feb 23 09:44 /home/ubuntu/cephtest/cephadm 2026-02-23T09:44:26.986 DEBUG:teuthology.orchestra.run.trial120:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-23T09:44:26.992 DEBUG:teuthology.orchestra.run.trial137:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-23T09:44:27.013 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 on all hosts... 2026-02-23T09:44:27.013 DEBUG:teuthology.orchestra.run.trial120:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 pull 2026-02-23T09:44:27.034 DEBUG:teuthology.orchestra.run.trial137:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 pull 2026-02-23T09:44:27.119 INFO:teuthology.orchestra.run.trial120.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511... 2026-02-23T09:44:27.127 INFO:teuthology.orchestra.run.trial137.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511... 2026-02-23T09:44:45.795 INFO:teuthology.orchestra.run.trial120.stdout:{ 2026-02-23T09:44:45.796 INFO:teuthology.orchestra.run.trial120.stdout: "ceph_version": "ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev)", 2026-02-23T09:44:45.796 INFO:teuthology.orchestra.run.trial120.stdout: "image_id": "d53f437b9974e91900768e66cdcee7298151761d59e3725242d4220dd9008a26", 2026-02-23T09:44:45.796 INFO:teuthology.orchestra.run.trial120.stdout: "repo_digests": [ 2026-02-23T09:44:45.796 INFO:teuthology.orchestra.run.trial120.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:aa1908bf3487bd0120867a595cd8279257306a73ebf8926eb7370fa78e59f3f2" 2026-02-23T09:44:45.796 INFO:teuthology.orchestra.run.trial120.stdout: ] 2026-02-23T09:44:45.796 INFO:teuthology.orchestra.run.trial120.stdout:} 2026-02-23T09:44:46.064 INFO:teuthology.orchestra.run.trial137.stdout:{ 2026-02-23T09:44:46.064 INFO:teuthology.orchestra.run.trial137.stdout: "ceph_version": "ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev)", 2026-02-23T09:44:46.064 INFO:teuthology.orchestra.run.trial137.stdout: "image_id": "d53f437b9974e91900768e66cdcee7298151761d59e3725242d4220dd9008a26", 2026-02-23T09:44:46.064 INFO:teuthology.orchestra.run.trial137.stdout: "repo_digests": [ 2026-02-23T09:44:46.064 INFO:teuthology.orchestra.run.trial137.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:aa1908bf3487bd0120867a595cd8279257306a73ebf8926eb7370fa78e59f3f2" 2026-02-23T09:44:46.064 INFO:teuthology.orchestra.run.trial137.stdout: ] 2026-02-23T09:44:46.064 INFO:teuthology.orchestra.run.trial137.stdout:} 2026-02-23T09:44:46.085 DEBUG:teuthology.orchestra.run.trial120:> sudo mkdir -p /etc/ceph 2026-02-23T09:44:46.095 DEBUG:teuthology.orchestra.run.trial137:> sudo mkdir -p /etc/ceph 2026-02-23T09:44:46.103 DEBUG:teuthology.orchestra.run.trial120:> sudo chmod 777 /etc/ceph 2026-02-23T09:44:46.146 DEBUG:teuthology.orchestra.run.trial137:> sudo chmod 777 /etc/ceph 2026-02-23T09:44:46.155 INFO:tasks.cephadm:Writing seed config... 2026-02-23T09:44:46.159 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-23T09:44:46.160 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-23T09:44:46.160 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-23T09:44:46.160 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-23T09:44:46.160 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-23T09:44:46.160 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-23T09:44:46.160 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-23T09:44:46.160 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2026-02-23T09:44:46.162 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:44:46.163 DEBUG:teuthology.orchestra.run.trial120:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-23T09:44:46.193 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 = 3d9e5df8-109c-11f1-a015-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-23T09:44:46.194 DEBUG:teuthology.orchestra.run.trial120:mon.trial120> sudo journalctl -f -n 0 -u ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mon.trial120.service 2026-02-23T09:44:46.238 INFO:tasks.cephadm:Bootstrapping... 2026-02-23T09:44:46.238 DEBUG:teuthology.orchestra.run.trial120:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 -v bootstrap --fsid 3d9e5df8-109c-11f1-a015-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.120 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-23T09:44:46.367 INFO:teuthology.orchestra.run.trial120.stdout:-------------------------------------------------------------------------------- 2026-02-23T09:44:46.367 INFO:teuthology.orchestra.run.trial120.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511', '-v', 'bootstrap', '--fsid', '3d9e5df8-109c-11f1-a015-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.120', '--skip-admin-label'] 2026-02-23T09:44:46.368 INFO:teuthology.orchestra.run.trial120.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-23T09:44:46.368 INFO:teuthology.orchestra.run.trial120.stdout:Verifying podman|docker is present... 2026-02-23T09:44:46.369 INFO:teuthology.orchestra.run.trial120.stdout:Verifying lvm2 is present... 2026-02-23T09:44:46.369 INFO:teuthology.orchestra.run.trial120.stdout:Verifying time synchronization is in place... 2026-02-23T09:44:46.370 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-23T09:44:46.370 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-23T09:44:46.373 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-23T09:44:46.373 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout inactive 2026-02-23T09:44:46.376 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2026-02-23T09:44:46.376 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2026-02-23T09:44:46.379 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2026-02-23T09:44:46.379 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout inactive 2026-02-23T09:44:46.382 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2026-02-23T09:44:46.382 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout masked 2026-02-23T09:44:46.384 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2026-02-23T09:44:46.384 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout inactive 2026-02-23T09:44:46.387 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2026-02-23T09:44:46.387 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2026-02-23T09:44:46.390 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2026-02-23T09:44:46.390 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout inactive 2026-02-23T09:44:46.393 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout enabled 2026-02-23T09:44:46.396 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout active 2026-02-23T09:44:46.396 INFO:teuthology.orchestra.run.trial120.stdout:Unit ntp.service is enabled and running 2026-02-23T09:44:46.397 INFO:teuthology.orchestra.run.trial120.stdout:Repeating the final host check... 2026-02-23T09:44:46.397 INFO:teuthology.orchestra.run.trial120.stdout:docker (/usr/bin/docker) is present 2026-02-23T09:44:46.397 INFO:teuthology.orchestra.run.trial120.stdout:systemctl is present 2026-02-23T09:44:46.397 INFO:teuthology.orchestra.run.trial120.stdout:lvcreate is present 2026-02-23T09:44:46.399 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-23T09:44:46.399 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-23T09:44:46.402 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-23T09:44:46.402 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout inactive 2026-02-23T09:44:46.405 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2026-02-23T09:44:46.405 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2026-02-23T09:44:46.408 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2026-02-23T09:44:46.408 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout inactive 2026-02-23T09:44:46.411 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2026-02-23T09:44:46.411 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout masked 2026-02-23T09:44:46.414 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2026-02-23T09:44:46.414 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout inactive 2026-02-23T09:44:46.417 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2026-02-23T09:44:46.417 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2026-02-23T09:44:46.419 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2026-02-23T09:44:46.420 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout inactive 2026-02-23T09:44:46.423 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout enabled 2026-02-23T09:44:46.427 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout active 2026-02-23T09:44:46.427 INFO:teuthology.orchestra.run.trial120.stdout:Unit ntp.service is enabled and running 2026-02-23T09:44:46.427 INFO:teuthology.orchestra.run.trial120.stdout:Host looks OK 2026-02-23T09:44:46.427 INFO:teuthology.orchestra.run.trial120.stdout:Cluster fsid: 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:46.427 INFO:teuthology.orchestra.run.trial120.stdout:Acquiring lock 139710377963824 on /run/cephadm/3d9e5df8-109c-11f1-a015-d404e6e7d460.lock 2026-02-23T09:44:46.427 INFO:teuthology.orchestra.run.trial120.stdout:Lock 139710377963824 acquired on /run/cephadm/3d9e5df8-109c-11f1-a015-d404e6e7d460.lock 2026-02-23T09:44:46.427 INFO:teuthology.orchestra.run.trial120.stdout:Verifying IP 10.20.193.120 port 3300 ... 2026-02-23T09:44:46.428 INFO:teuthology.orchestra.run.trial120.stdout:Verifying IP 10.20.193.120 port 6789 ... 2026-02-23T09:44:46.428 INFO:teuthology.orchestra.run.trial120.stdout:Base mon IP(s) is [10.20.193.120:3300, 10.20.193.120:6789], mon addrv is [v2:10.20.193.120:3300,v1:10.20.193.120:6789] 2026-02-23T09:44:46.429 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.120 metric 100 2026-02-23T09:44:46.429 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.120 metric 100 2026-02-23T09:44:46.429 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout 10.20.192.1 dev enp1s0f0 proto dhcp scope link src 10.20.193.120 metric 100 2026-02-23T09:44:46.429 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout 10.20.192.11 dev enp1s0f0 proto dhcp scope link src 10.20.193.120 metric 100 2026-02-23T09:44:46.429 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout 10.20.192.13 dev enp1s0f0 proto dhcp scope link src 10.20.193.120 metric 100 2026-02-23T09:44:46.430 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2026-02-23T09:44:46.430 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-02-23T09:44:46.430 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp1s0f0 proto kernel metric 256 pref medium 2026-02-23T09:44:46.433 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-23T09:44:46.433 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2026-02-23T09:44:46.433 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-23T09:44:46.433 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout 2: enp1s0f0: mtu 1500 state UP qlen 1000 2026-02-23T09:44:46.433 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:6146/64 scope link 2026-02-23T09:44:46.433 INFO:teuthology.orchestra.run.trial120.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-23T09:44:46.433 INFO:teuthology.orchestra.run.trial120.stdout:Mon IP `10.20.193.120` is in CIDR network `10.20.192.0/20` 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Mon IP `10.20.193.120` is in CIDR network `10.20.192.0/20` 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Mon IP `10.20.193.120` is in CIDR network `10.20.192.1/32` 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Mon IP `10.20.193.120` is in CIDR network `10.20.192.1/32` 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Mon IP `10.20.193.120` is in CIDR network `10.20.192.11/32` 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Mon IP `10.20.193.120` is in CIDR network `10.20.192.11/32` 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Mon IP `10.20.193.120` is in CIDR network `10.20.192.13/32` 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Mon IP `10.20.193.120` is in CIDR network `10.20.192.13/32` 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20', '10.20.192.1/32', '10.20.192.1/32', '10.20.192.11/32', '10.20.192.11/32', '10.20.192.13/32', '10.20.192.13/32'] 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-23T09:44:46.434 INFO:teuthology.orchestra.run.trial120.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511... 2026-02-23T09:44:46.600 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/docker: stdout 244ee61d76a715c3ac0d60eeb3321aefb91c3511: Pulling from ceph-ci/ceph 2026-02-23T09:44:46.600 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/docker: stdout Digest: sha256:aa1908bf3487bd0120867a595cd8279257306a73ebf8926eb7370fa78e59f3f2 2026-02-23T09:44:46.600 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T09:44:46.600 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/docker: stdout quay.ceph.io/ceph-ci/ceph:244ee61d76a715c3ac0d60eeb3321aefb91c3511 2026-02-23T09:44:46.720 INFO:teuthology.orchestra.run.trial120.stdout:ceph: stdout ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev) 2026-02-23T09:44:46.720 INFO:teuthology.orchestra.run.trial120.stdout:Ceph version: ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev) 2026-02-23T09:44:46.720 INFO:teuthology.orchestra.run.trial120.stdout:Extracting ceph user uid/gid from container image... 2026-02-23T09:44:46.807 INFO:teuthology.orchestra.run.trial120.stdout:stat: stdout 167 167 2026-02-23T09:44:46.807 INFO:teuthology.orchestra.run.trial120.stdout:Creating initial keys... 2026-02-23T09:44:46.891 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-authtool: stdout AQCOIZxp+KvZMxAAdUj5MSZ98X9ufuXNjhvdTg== 2026-02-23T09:44:46.976 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-authtool: stdout AQCOIZxplSzyOBAAwD4UKlRDaPS8+LTTBeYZAw== 2026-02-23T09:44:47.058 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-authtool: stdout AQCPIZxplhVFAhAAxCOrmClgpGTUeQ0R5HO+hg== 2026-02-23T09:44:47.058 INFO:teuthology.orchestra.run.trial120.stdout:Creating initial monmap... 2026-02-23T09:44:47.150 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-23T09:44:47.150 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-23T09:44:47.150 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:47.150 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-23T09:44:47.150 INFO:teuthology.orchestra.run.trial120.stdout:monmaptool for trial120 [v2:10.20.193.120:3300,v1:10.20.193.120:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-23T09:44:47.150 INFO:teuthology.orchestra.run.trial120.stdout:setting min_mon_release = tentacle 2026-02-23T09:44:47.150 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/monmaptool: set fsid to 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:47.150 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-23T09:44:47.150 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:44:47.151 INFO:teuthology.orchestra.run.trial120.stdout:Creating mon... 2026-02-23T09:44:47.281 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 0 set uid:gid to 167:167 (ceph:ceph) 2026-02-23T09:44:47.282 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 1 imported monmap: 2026-02-23T09:44:47.282 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr epoch 0 2026-02-23T09:44:47.282 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:47.282 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr last_changed 2026-02-23T09:44:47.126433+0000 2026-02-23T09:44:47.282 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr created 2026-02-23T09:44:47.126433+0000 2026-02-23T09:44:47.282 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr min_mon_release 20 (tentacle) 2026-02-23T09:44:47.282 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2026-02-23T09:44:47.282 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 0: [v2:10.20.193.120:3300/0,v1:10.20.193.120:6789/0] mon.trial120 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 0 /usr/bin/ceph-mon: set fsid to 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: RocksDB version: 7.9.2 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Git sha 0 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Compile date 2026-02-20 21:07:39 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: DB SUMMARY 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: DB Session ID: Z6Y5NWGXTY70X6579TRD 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-trial120/store.db dir, Total Num: 0, files: 2026-02-23T09:44:47.283 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-trial120/store.db: 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.error_if_exists: 0 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.create_if_missing: 1 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.paranoid_checks: 1 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.flush_verify_memtable_count: 1 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.env: 0xed5c80 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.fs: PosixFileSystem 2026-02-23T09:44:47.284 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.info_log: 0x392485a0 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_file_opening_threads: 16 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.statistics: (nil) 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.use_fsync: 0 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_log_file_size: 0 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.log_file_time_to_roll: 0 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.keep_log_file_num: 1000 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.recycle_log_file_num: 0 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.allow_fallocate: 1 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.allow_mmap_reads: 0 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.allow_mmap_writes: 0 2026-02-23T09:44:47.285 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.use_direct_reads: 0 2026-02-23T09:44:47.286 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-23T09:44:47.286 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.create_missing_column_families: 0 2026-02-23T09:44:47.286 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.db_log_dir: 2026-02-23T09:44:47.286 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.wal_dir: 2026-02-23T09:44:47.286 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.table_cache_numshardbits: 6 2026-02-23T09:44:47.286 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.WAL_ttl_seconds: 0 2026-02-23T09:44:47.286 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.WAL_size_limit_MB: 0 2026-02-23T09:44:47.286 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.is_fd_close_on_exec: 1 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.advise_random_on_open: 1 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.db_write_buffer_size: 0 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.write_buffer_manager: 0x39245b80 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.use_adaptive_mutex: 0 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.rate_limiter: (nil) 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.wal_recovery_mode: 2 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.enable_thread_tracking: 0 2026-02-23T09:44:47.287 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.enable_pipelined_write: 0 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.unordered_write: 0 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.row_cache: None 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.wal_filter: None 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.allow_ingest_behind: 0 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.two_write_queues: 0 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.manual_wal_flush: 0 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.wal_compression: 0 2026-02-23T09:44:47.288 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.atomic_flush: 0 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.persist_stats_to_disk: 0 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.write_dbid_to_manifest: 0 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.log_readahead_size: 0 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.best_efforts_recovery: 0 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.allow_data_in_errors: 0 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.db_host_id: __hostname__ 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.enforce_single_del_contracts: true 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_background_jobs: 2 2026-02-23T09:44:47.289 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_background_compactions: -1 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_subcompactions: 1 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.delayed_write_rate : 16777216 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_total_wal_size: 0 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.stats_dump_period_sec: 600 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.stats_persist_period_sec: 600 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_open_files: -1 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.bytes_per_sync: 0 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.wal_bytes_per_sync: 0 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.strict_bytes_per_sync: 0 2026-02-23T09:44:47.290 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.compaction_readahead_size: 0 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Options.max_background_flushes: -1 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Compression algorithms supported: 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: kZSTD supported: 0 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: kXpressCompression supported: 0 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: kBZip2Compression supported: 0 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: kLZ4Compression supported: 1 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: kZlibCompression supported: 1 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: kLZ4HCCompression supported: 1 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: kSnappyCompression supported: 1 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: Fast CRC32 supported: Supported on x86 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.223+0000 7f4eca351c00 4 rocksdb: DMutex implementation: pthread_mutex_t 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.291 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-trial120/store.db/MANIFEST-000001 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.merge_operator: 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_filter: None 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_filter_factory: None 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.sst_partitioner_factory: None 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.memtable_factory: SkipListFactory 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.table_factory: BlockBasedTable 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x391ebd40) 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-23T09:44:47.292 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x39217690 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2026-02-23T09:44:47.293 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2026-02-23T09:44:47.294 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.write_buffer_size: 33554432 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_write_buffer_number: 2 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression: NoCompression 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression: Disabled 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.prefix_extractor: nullptr 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.num_levels: 7 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-23T09:44:47.295 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression_opts.window_bits: -14 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression_opts.level: 32767 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression_opts.strategy: 0 2026-02-23T09:44:47.296 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression_opts.enabled: false 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.target_file_size_base: 67108864 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.target_file_size_multiplier: 1 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-23T09:44:47.297 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.arena_block_size: 1048576 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.disable_auto_compactions: 0 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-23T09:44:47.298 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.inplace_update_support: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.inplace_update_num_locks: 10000 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.memtable_huge_page_size: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.bloom_locality: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.max_successive_merges: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.optimize_filters_for_hits: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.paranoid_file_checks: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.force_consistency_checks: 1 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.report_bg_io_stats: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.ttl: 2592000 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.periodic_compaction_seconds: 0 2026-02-23T09:44:47.299 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.enable_blob_files: false 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.min_blob_size: 0 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.blob_file_size: 268435456 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.blob_compression_type: NoCompression 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.enable_blob_garbage_collection: false 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.blob_file_starting_level: 0 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-trial120/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 5329f420-6c70-4a9f-a3f9-89f2441b5bb8 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2026-02-23T09:44:47.300 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x39264e00 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: DB pointer 0x39376000 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4ec1adb640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4ec1adb640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 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-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 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-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 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-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2026-02-23T09:44:47.301 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 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-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 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-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x39217690#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.302 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2026-02-23T09:44:47.303 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr 2026-02-23T09:44:47.303 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2026-02-23T09:44:47.303 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2026-02-23T09:44:47.303 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph-mon: stderr debug 2026-02-23T09:44:47.227+0000 7f4eca351c00 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-trial120 for mon.trial120 2026-02-23T09:44:47.303 INFO:teuthology.orchestra.run.trial120.stdout:create mon.trial120 on 2026-02-23T09:44:47.621 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-02-23T09:44:47.803 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460.target → /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460.target. 2026-02-23T09:44:47.804 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460.target → /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460.target. 2026-02-23T09:44:47.983 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mon.trial120 2026-02-23T09:44:47.983 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Failed to reset failed state of unit ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mon.trial120.service: Unit ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mon.trial120.service not loaded. 2026-02-23T09:44:48.151 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460.target.wants/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mon.trial120.service → /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service. 2026-02-23T09:44:48.157 INFO:teuthology.orchestra.run.trial120.stdout:firewalld does not appear to be present 2026-02-23T09:44:48.157 INFO:teuthology.orchestra.run.trial120.stdout:Not possible to enable service . firewalld.service is not available 2026-02-23T09:44:48.157 INFO:teuthology.orchestra.run.trial120.stdout:Waiting for mon to start... 2026-02-23T09:44:48.157 INFO:teuthology.orchestra.run.trial120.stdout:Waiting for mon... 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout cluster: 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout id: 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout services: 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum trial120 (age 0.227153s) [leader: trial120] 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout data: 2026-02-23T09:44:48.569 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-23T09:44:48.570 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-23T09:44:48.570 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-23T09:44:48.570 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout pgs: 2026-02-23T09:44:48.570 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:48.570 INFO:teuthology.orchestra.run.trial120.stdout:mon is available 2026-02-23T09:44:48.570 INFO:teuthology.orchestra.run.trial120.stdout:Assimilating anything we can from ceph.conf... 2026-02-23T09:44:48.598 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:48 trial120 bash[10619]: cluster 2026-02-23T09:44:48.310147+0000 mon.trial120 (mon.0) 1 : cluster [INF] mon.trial120 is new leader, mons trial120 in quorum (ranks 0) 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout [global] 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout fsid = 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.120:3300,v1:10.20.193.120:6789] 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-23T09:44:48.726 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:48.727 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-23T09:44:48.727 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-23T09:44:48.727 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:48.727 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout [osd] 2026-02-23T09:44:48.727 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-23T09:44:48.727 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-23T09:44:48.727 INFO:teuthology.orchestra.run.trial120.stdout:Generating new minimal ceph.conf... 2026-02-23T09:44:48.886 INFO:teuthology.orchestra.run.trial120.stdout:Restarting the monitor... 2026-02-23T09:44:49.006 INFO:teuthology.orchestra.run.trial120.stdout:Setting public_network to 10.20.192.11/32,10.20.192.1/32,10.20.192.0/20,10.20.192.13/32 in global config section 2026-02-23T09:44:49.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:48 trial120 systemd[1]: Stopping Ceph mon.trial120 for 3d9e5df8-109c-11f1-a015-d404e6e7d460... 2026-02-23T09:44:49.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:48 trial120 bash[10619]: debug 2026-02-23T09:44:48.930+0000 7f1a1828b640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.trial120 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2026-02-23T09:44:49.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:48 trial120 bash[10619]: debug 2026-02-23T09:44:48.930+0000 7f1a1828b640 -1 mon.trial120@0(leader) e1 *** Got Signal Terminated *** 2026-02-23T09:44:49.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:48 trial120 bash[11013]: ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460-mon-trial120 2026-02-23T09:44:49.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 systemd[1]: ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mon.trial120.service: Deactivated successfully. 2026-02-23T09:44:49.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 systemd[1]: Stopped Ceph mon.trial120 for 3d9e5df8-109c-11f1-a015-d404e6e7d460. 2026-02-23T09:44:49.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 systemd[1]: Started Ceph mon.trial120 for 3d9e5df8-109c-11f1-a015-d404e6e7d460. 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 0 set uid:gid to 167:167 (ceph:ceph) 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 0 ceph version 20.3.0-5338-g244ee61d (244ee61d76a715c3ac0d60eeb3321aefb91c3511) tentacle (dev - RelWithDebInfo), process ceph-mon, pid 7 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 0 pidfile_write: ignore empty --pid-file 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 0 load: jerasure load: lrc 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: RocksDB version: 7.9.2 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Git sha 0 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Compile date 2026-02-20 21:07:39 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: DB SUMMARY 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: DB Session ID: YVLXNZYWAQWVRXOZLIYD 2026-02-23T09:44:49.162 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: CURRENT file: CURRENT 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: IDENTITY file: IDENTITY 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-trial120/store.db dir, Total Num: 1, files: 000008.sst 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-trial120/store.db: 000009.log size: 76195 ; 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.error_if_exists: 0 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.create_if_missing: 0 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.paranoid_checks: 1 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.flush_verify_memtable_count: 1 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.env: 0xed5c80 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.fs: PosixFileSystem 2026-02-23T09:44:49.163 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.info_log: 0xfc5d200 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.max_file_opening_threads: 16 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.086+0000 7fbc5a564c00 4 rocksdb: Options.statistics: (nil) 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.use_fsync: 0 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_log_file_size: 0 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.log_file_time_to_roll: 0 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.keep_log_file_num: 1000 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.recycle_log_file_num: 0 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.allow_fallocate: 1 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.allow_mmap_reads: 0 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.allow_mmap_writes: 0 2026-02-23T09:44:49.164 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.use_direct_reads: 0 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.create_missing_column_families: 0 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.db_log_dir: 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.wal_dir: 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.table_cache_numshardbits: 6 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.WAL_ttl_seconds: 0 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.WAL_size_limit_MB: 0 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.is_fd_close_on_exec: 1 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.advise_random_on_open: 1 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.db_write_buffer_size: 0 2026-02-23T09:44:49.165 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.write_buffer_manager: 0xfc58140 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.use_adaptive_mutex: 0 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.rate_limiter: (nil) 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.wal_recovery_mode: 2 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.enable_thread_tracking: 0 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.enable_pipelined_write: 0 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.unordered_write: 0 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-23T09:44:49.166 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.row_cache: None 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.wal_filter: None 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.allow_ingest_behind: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.two_write_queues: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.manual_wal_flush: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.wal_compression: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.atomic_flush: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.persist_stats_to_disk: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.write_dbid_to_manifest: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.log_readahead_size: 0 2026-02-23T09:44:49.167 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.best_efforts_recovery: 0 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.allow_data_in_errors: 0 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.db_host_id: __hostname__ 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.enforce_single_del_contracts: true 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_background_jobs: 2 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_background_compactions: -1 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_subcompactions: 1 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.delayed_write_rate : 16777216 2026-02-23T09:44:49.168 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_total_wal_size: 0 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.stats_dump_period_sec: 600 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.stats_persist_period_sec: 600 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_open_files: -1 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bytes_per_sync: 0 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.wal_bytes_per_sync: 0 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.strict_bytes_per_sync: 0 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_readahead_size: 0 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_background_flushes: -1 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Compression algorithms supported: 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: kZSTD supported: 0 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: kXpressCompression supported: 0 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: kBZip2Compression supported: 0 2026-02-23T09:44:49.169 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: kLZ4Compression supported: 1 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: kZlibCompression supported: 1 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: kLZ4HCCompression supported: 1 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: kSnappyCompression supported: 1 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Fast CRC32 supported: Supported on x86 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: DMutex implementation: pthread_mutex_t 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-trial120/store.db/MANIFEST-000010 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.merge_operator: 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_filter: None 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_filter_factory: None 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.sst_partitioner_factory: None 2026-02-23T09:44:49.170 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.memtable_factory: SkipListFactory 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.table_factory: BlockBasedTable 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xfc5d940) 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cache_index_and_filter_blocks: 1 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: pin_top_level_index_and_filter: 1 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: index_type: 0 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: data_block_index_type: 0 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: index_shortening: 1 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: data_block_hash_table_util_ratio: 0.750000 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: checksum: 4 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: no_block_cache: 0 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: block_cache: 0xfc2ba50 2026-02-23T09:44:49.171 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: block_cache_name: BinnedLRUCache 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: block_cache_options: 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: capacity : 536870912 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: num_shard_bits : 4 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: strict_capacity_limit : 0 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: high_pri_pool_ratio: 0.000 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: block_cache_compressed: (nil) 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: persistent_cache: (nil) 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: block_size: 4096 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: block_size_deviation: 10 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: block_restart_interval: 16 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: index_block_restart_interval: 1 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: metadata_block_size: 4096 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: partition_filters: 0 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: use_delta_encoding: 1 2026-02-23T09:44:49.172 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: filter_policy: bloomfilter 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: whole_key_filtering: 1 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: verify_compression: 0 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: read_amp_bytes_per_bit: 0 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: format_version: 5 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: enable_index_compression: 1 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: block_align: 0 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: max_auto_readahead_size: 262144 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: prepopulate_block_cache: 0 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: initial_auto_readahead_size: 8192 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: num_file_reads_for_auto_readahead: 2 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.write_buffer_size: 33554432 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_write_buffer_number: 2 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression: NoCompression 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression: Disabled 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.prefix_extractor: nullptr 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-23T09:44:49.173 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.num_levels: 7 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression_opts.window_bits: -14 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression_opts.level: 32767 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression_opts.strategy: 0 2026-02-23T09:44:49.174 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression_opts.enabled: false 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.target_file_size_base: 67108864 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.target_file_size_multiplier: 1 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-23T09:44:49.175 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.arena_block_size: 1048576 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.disable_auto_compactions: 0 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-23T09:44:49.176 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.inplace_update_support: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.inplace_update_num_locks: 10000 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.memtable_huge_page_size: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.bloom_locality: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.max_successive_merges: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.optimize_filters_for_hits: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.paranoid_file_checks: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.force_consistency_checks: 1 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.report_bg_io_stats: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.ttl: 2592000 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.periodic_compaction_seconds: 0 2026-02-23T09:44:49.177 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.enable_blob_files: false 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.min_blob_size: 0 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.blob_file_size: 268435456 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.blob_compression_type: NoCompression 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.enable_blob_garbage_collection: false 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.blob_file_starting_level: 0 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-trial120/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-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 5329f420-6c70-4a9f-a3f9-89f2441b5bb8 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1771839889092362, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-02-23T09:44:49.178 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1771839889093209, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 73337, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 227, "table_properties": {"data_size": 71605, "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": 66109, "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": 1771839889, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "5329f420-6c70-4a9f-a3f9-89f2441b5bb8", "db_session_id": "YVLXNZYWAQWVRXOZLIYD", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1771839889093277, "job": 1, "event": "recovery_finished"} 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-trial120/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0xfc78e00 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 4 rocksdb: DB pointer 0x10a6a000 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc503cb640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc503cb640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: ** DB Stats ** 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Uptime(secs): 0.0 total, 0.0 interval 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: 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-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: 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-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: ** Compaction Stats [default] ** 2026-02-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: 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-23T09:44:49.179 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: L0 2/0 73.52 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 116.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Sum 2/0 73.52 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 116.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 116.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: ** Compaction Stats [default] ** 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: 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-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 116.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Uptime(secs): 0.0 total, 0.0 interval 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Flush(GB): cumulative 0.000, interval 0.000 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: AddFile(Total Files): cumulative 0, interval 0 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: AddFile(L0 Files): cumulative 0, interval 0 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: AddFile(Keys): cumulative 0, interval 0 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Cumulative compaction: 0.00 GB write, 26.57 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Interval compaction: 0.00 GB write, 26.57 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: 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-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: Block cache BinnedLRUCache@0xfc2ba50#7 capacity: 512.00 MB usage: 1.08 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.8e-05 secs_since: 0 2026-02-23T09:44:49.180 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: 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-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: ** File Read Latency Histogram By Level [default] ** 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 0 starting mon.trial120 rank 0 at public addrs [v2:10.20.193.120:3300/0,v1:10.20.193.120:6789/0] at bind addrs [v2:10.20.193.120:3300/0,v1:10.20.193.120:6789/0] mon_data /var/lib/ceph/mon/ceph-trial120 fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.090+0000 7fbc5a564c00 1 mon.trial120@-1(???) e1 preinit fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.094+0000 7fbc5a564c00 0 mon.trial120@-1(???).mds e1 new map 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.094+0000 7fbc5a564c00 0 mon.trial120@-1(???).mds e1 print_map 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: e1 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: btime 2026-02-23T09:44:48:312585+0000 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: enable_multiple, ever_enabled_multiple: 1,1 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: 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-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: legacy client fscid: -1 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: No filesystems configured 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.094+0000 7fbc5a564c00 0 mon.trial120@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.094+0000 7fbc5a564c00 0 mon.trial120@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.094+0000 7fbc5a564c00 0 mon.trial120@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.094+0000 7fbc5a564c00 0 mon.trial120@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-23T09:44:49.181 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: debug 2026-02-23T09:44:49.094+0000 7fbc5a564c00 1 mon.trial120@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2026-02-23T09:44:49.212 INFO:teuthology.orchestra.run.trial120.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-23T09:44:49.213 INFO:teuthology.orchestra.run.trial120.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-23T09:44:49.213 INFO:teuthology.orchestra.run.trial120.stdout:Creating mgr... 2026-02-23T09:44:49.213 INFO:teuthology.orchestra.run.trial120.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-23T09:44:49.213 INFO:teuthology.orchestra.run.trial120.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-23T09:44:49.213 INFO:teuthology.orchestra.run.trial120.stdout:Verifying port 0.0.0.0:8443 ... 2026-02-23T09:44:49.427 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mgr.trial120.ychbxb 2026-02-23T09:44:49.427 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Failed to reset failed state of unit ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mgr.trial120.ychbxb.service: Unit ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mgr.trial120.ychbxb.service not loaded. 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116096+0000 mon.trial120 (mon.0) 1 : cluster [INF] mon.trial120 is new leader, mons trial120 in quorum (ranks 0) 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116096+0000 mon.trial120 (mon.0) 1 : cluster [INF] mon.trial120 is new leader, mons trial120 in quorum (ranks 0) 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116128+0000 mon.trial120 (mon.0) 2 : cluster [DBG] monmap epoch 1 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116128+0000 mon.trial120 (mon.0) 2 : cluster [DBG] monmap epoch 1 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116134+0000 mon.trial120 (mon.0) 3 : cluster [DBG] fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116134+0000 mon.trial120 (mon.0) 3 : cluster [DBG] fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116137+0000 mon.trial120 (mon.0) 4 : cluster [DBG] last_changed 2026-02-23T09:44:47.126433+0000 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116137+0000 mon.trial120 (mon.0) 4 : cluster [DBG] last_changed 2026-02-23T09:44:47.126433+0000 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116143+0000 mon.trial120 (mon.0) 5 : cluster [DBG] created 2026-02-23T09:44:47.126433+0000 2026-02-23T09:44:49.516 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116143+0000 mon.trial120 (mon.0) 5 : cluster [DBG] created 2026-02-23T09:44:47.126433+0000 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116147+0000 mon.trial120 (mon.0) 6 : cluster [DBG] min_mon_release 20 (tentacle) 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116147+0000 mon.trial120 (mon.0) 6 : cluster [DBG] min_mon_release 20 (tentacle) 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116153+0000 mon.trial120 (mon.0) 7 : cluster [DBG] election_strategy: 1 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116153+0000 mon.trial120 (mon.0) 7 : cluster [DBG] election_strategy: 1 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116158+0000 mon.trial120 (mon.0) 8 : cluster [DBG] 0: [v2:10.20.193.120:3300/0,v1:10.20.193.120:6789/0] mon.trial120 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.116158+0000 mon.trial120 (mon.0) 8 : cluster [DBG] 0: [v2:10.20.193.120:3300/0,v1:10.20.193.120:6789/0] mon.trial120 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.139951+0000 mon.trial120 (mon.0) 9 : cluster [DBG] fsmap 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.139951+0000 mon.trial120 (mon.0) 9 : cluster [DBG] fsmap 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.139965+0000 mon.trial120 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.139965+0000 mon.trial120 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.140244+0000 mon.trial120 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: cluster 2026-02-23T09:44:49.140244+0000 mon.trial120 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: audit 2026-02-23T09:44:49.185727+0000 mon.trial120 (mon.0) 12 : audit [INF] from='client.? 10.20.193.120:0/1424865398' entity='client.admin' 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 bash[11121]: audit 2026-02-23T09:44:49.185727+0000 mon.trial120 (mon.0) 12 : audit [INF] from='client.? 10.20.193.120:0/1424865398' entity='client.admin' 2026-02-23T09:44:49.517 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:44:49.585 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460.target.wants/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mgr.trial120.ychbxb.service → /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service. 2026-02-23T09:44:49.590 INFO:teuthology.orchestra.run.trial120.stdout:firewalld does not appear to be present 2026-02-23T09:44:49.590 INFO:teuthology.orchestra.run.trial120.stdout:Not possible to enable service . firewalld.service is not available 2026-02-23T09:44:49.590 INFO:teuthology.orchestra.run.trial120.stdout:firewalld does not appear to be present 2026-02-23T09:44:49.591 INFO:teuthology.orchestra.run.trial120.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2026-02-23T09:44:49.591 INFO:teuthology.orchestra.run.trial120.stdout:Waiting for mgr to start... 2026-02-23T09:44:49.591 INFO:teuthology.orchestra.run.trial120.stdout:Waiting for mgr... 2026-02-23T09:44:49.758 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:49.758 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout { 2026-02-23T09:44:49.758 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "fsid": "3d9e5df8-109c-11f1-a015-d404e6e7d460", 2026-02-23T09:44:49.758 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "health": { 2026-02-23T09:44:49.758 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-23T09:44:49.758 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-23T09:44:49.758 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-23T09:44:49.758 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:49.758 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 0 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ], 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "trial120" 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ], 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-23T09:44:49.759 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-23T09:44:49.760 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "btime": "2026-02-23T09:44:48:312585+0000", 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-23T09:44:49.761 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ], 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "modified": "2026-02-23T09:44:48.312987+0000", 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout } 2026-02-23T09:44:49.762 INFO:teuthology.orchestra.run.trial120.stdout:mgr not available, waiting (1/15)... 2026-02-23T09:44:49.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:49 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:44:50.658 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:50 trial120 bash[11121]: audit 2026-02-23T09:44:49.725685+0000 mon.trial120 (mon.0) 13 : audit [DBG] from='client.? 10.20.193.120:0/442403386' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-23T09:44:50.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:50 trial120 bash[11121]: audit 2026-02-23T09:44:49.725685+0000 mon.trial120 (mon.0) 13 : audit [DBG] from='client.? 10.20.193.120:0/442403386' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout { 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "fsid": "3d9e5df8-109c-11f1-a015-d404e6e7d460", 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "health": { 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 0 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ], 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "trial120" 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ], 2026-02-23T09:44:51.918 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-23T09:44:51.919 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "btime": "2026-02-23T09:44:48:312585+0000", 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ], 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T09:44:51.920 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:51.921 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-23T09:44:51.921 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:51.921 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "modified": "2026-02-23T09:44:48.312987+0000", 2026-02-23T09:44:51.921 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T09:44:51.921 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:51.921 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-23T09:44:51.921 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout } 2026-02-23T09:44:51.921 INFO:teuthology.orchestra.run.trial120.stdout:mgr not available, waiting (2/15)... 2026-02-23T09:44:52.158 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:51 trial120 bash[11121]: audit 2026-02-23T09:44:51.888960+0000 mon.trial120 (mon.0) 14 : audit [DBG] from='client.? 10.20.193.120:0/3045097452' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-23T09:44:52.158 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:51 trial120 bash[11121]: audit 2026-02-23T09:44:51.888960+0000 mon.trial120 (mon.0) 14 : audit [DBG] from='client.? 10.20.193.120:0/3045097452' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-23T09:44:53.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: cluster 2026-02-23T09:44:52.436833+0000 mon.trial120 (mon.0) 15 : cluster [INF] Activating manager daemon trial120.ychbxb 2026-02-23T09:44:53.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: cluster 2026-02-23T09:44:52.436833+0000 mon.trial120 (mon.0) 15 : cluster [INF] Activating manager daemon trial120.ychbxb 2026-02-23T09:44:53.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: cluster 2026-02-23T09:44:52.439507+0000 mon.trial120 (mon.0) 16 : cluster [DBG] mgrmap e2: trial120.ychbxb(active, starting, since 0.0029853s) 2026-02-23T09:44:53.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: cluster 2026-02-23T09:44:52.439507+0000 mon.trial120 (mon.0) 16 : cluster [DBG] mgrmap e2: trial120.ychbxb(active, starting, since 0.0029853s) 2026-02-23T09:44:53.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.440356+0000 mon.trial120 (mon.0) 17 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "mds metadata"} : dispatch 2026-02-23T09:44:53.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.440356+0000 mon.trial120 (mon.0) 17 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "mds metadata"} : dispatch 2026-02-23T09:44:53.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.440437+0000 mon.trial120 (mon.0) 18 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "osd metadata"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.440437+0000 mon.trial120 (mon.0) 18 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "osd metadata"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.440503+0000 mon.trial120 (mon.0) 19 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.440503+0000 mon.trial120 (mon.0) 19 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.440577+0000 mon.trial120 (mon.0) 20 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata", "id": "trial120"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.440577+0000 mon.trial120 (mon.0) 20 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata", "id": "trial120"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.441204+0000 mon.trial120 (mon.0) 21 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "mgr metadata", "who": "trial120.ychbxb", "id": "trial120.ychbxb"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.441204+0000 mon.trial120 (mon.0) 21 : audit [DBG] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix": "mgr metadata", "who": "trial120.ychbxb", "id": "trial120.ychbxb"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: cluster 2026-02-23T09:44:52.469437+0000 mon.trial120 (mon.0) 22 : cluster [INF] Manager daemon trial120.ychbxb is now available 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: cluster 2026-02-23T09:44:52.469437+0000 mon.trial120 (mon.0) 22 : cluster [INF] Manager daemon trial120.ychbxb is now available 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.476071+0000 mon.trial120 (mon.0) 23 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/mirror_snapshot_schedule"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.476071+0000 mon.trial120 (mon.0) 23 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/mirror_snapshot_schedule"} : dispatch 2026-02-23T09:44:53.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.476978+0000 mon.trial120 (mon.0) 24 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:53.411 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.476978+0000 mon.trial120 (mon.0) 24 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:53.411 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.477097+0000 mon.trial120 (mon.0) 25 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/trash_purge_schedule"} : dispatch 2026-02-23T09:44:53.411 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.477097+0000 mon.trial120 (mon.0) 25 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/trash_purge_schedule"} : dispatch 2026-02-23T09:44:53.411 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.477877+0000 mon.trial120 (mon.0) 26 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:53.411 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.477877+0000 mon.trial120 (mon.0) 26 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:53.411 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.479132+0000 mon.trial120 (mon.0) 27 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:53.411 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:52 trial120 bash[11121]: audit 2026-02-23T09:44:52.479132+0000 mon.trial120 (mon.0) 27 : audit [INF] from='mgr.14100 10.20.193.120:0/1184321912' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:54.207 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:54.207 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout { 2026-02-23T09:44:54.207 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "fsid": "3d9e5df8-109c-11f1-a015-d404e6e7d460", 2026-02-23T09:44:54.207 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "health": { 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 0 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ], 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "trial120" 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ], 2026-02-23T09:44:54.208 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-23T09:44:54.209 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-23T09:44:54.210 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "btime": "2026-02-23T09:44:48:312585+0000", 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ], 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T09:44:54.211 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:54.212 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-23T09:44:54.212 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-23T09:44:54.212 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "modified": "2026-02-23T09:44:48.312987+0000", 2026-02-23T09:44:54.212 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-23T09:44:54.212 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout }, 2026-02-23T09:44:54.212 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-23T09:44:54.212 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout } 2026-02-23T09:44:54.212 INFO:teuthology.orchestra.run.trial120.stdout:mgr is available 2026-02-23T09:44:54.441 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout [global] 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout fsid = 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.120:3300,v1:10.20.193.120:6789] 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-23T09:44:54.442 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-23T09:44:54.443 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 2026-02-23T09:44:54.443 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout [osd] 2026-02-23T09:44:54.443 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-23T09:44:54.443 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-23T09:44:54.443 INFO:teuthology.orchestra.run.trial120.stdout:Enabling cephadm module... 2026-02-23T09:44:54.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:54 trial120 bash[11121]: cluster 2026-02-23T09:44:53.442219+0000 mon.trial120 (mon.0) 28 : cluster [DBG] mgrmap e3: trial120.ychbxb(active, since 1.0057s) 2026-02-23T09:44:54.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:54 trial120 bash[11121]: cluster 2026-02-23T09:44:53.442219+0000 mon.trial120 (mon.0) 28 : cluster [DBG] mgrmap e3: trial120.ychbxb(active, since 1.0057s) 2026-02-23T09:44:54.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:54 trial120 bash[11121]: audit 2026-02-23T09:44:54.172783+0000 mon.trial120 (mon.0) 29 : audit [DBG] from='client.? 10.20.193.120:0/1037961013' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-23T09:44:54.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:54 trial120 bash[11121]: audit 2026-02-23T09:44:54.172783+0000 mon.trial120 (mon.0) 29 : audit [DBG] from='client.? 10.20.193.120:0/1037961013' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-23T09:44:54.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:54 trial120 bash[11121]: audit 2026-02-23T09:44:54.410772+0000 mon.trial120 (mon.0) 30 : audit [INF] from='client.? 10.20.193.120:0/3123752125' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-23T09:44:54.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:54 trial120 bash[11121]: audit 2026-02-23T09:44:54.410772+0000 mon.trial120 (mon.0) 30 : audit [INF] from='client.? 10.20.193.120:0/3123752125' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-23T09:44:55.772 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:55 trial120 bash[11121]: audit 2026-02-23T09:44:54.689593+0000 mon.trial120 (mon.0) 31 : audit [INF] from='client.? 10.20.193.120:0/2658560251' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-23T09:44:55.773 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:55 trial120 bash[11121]: audit 2026-02-23T09:44:54.689593+0000 mon.trial120 (mon.0) 31 : audit [INF] from='client.? 10.20.193.120:0/2658560251' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-23T09:44:55.797 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout { 2026-02-23T09:44:55.797 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 4, 2026-02-23T09:44:55.797 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-23T09:44:55.798 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "active_name": "trial120.ychbxb", 2026-02-23T09:44:55.798 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-23T09:44:55.798 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout } 2026-02-23T09:44:55.798 INFO:teuthology.orchestra.run.trial120.stdout:Waiting for the mgr to restart... 2026-02-23T09:44:55.798 INFO:teuthology.orchestra.run.trial120.stdout:Waiting for mgr epoch 4... 2026-02-23T09:44:56.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:56 trial120 bash[11121]: audit 2026-02-23T09:44:55.440927+0000 mon.trial120 (mon.0) 32 : audit [INF] from='client.? 10.20.193.120:0/2658560251' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-23T09:44:56.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:56 trial120 bash[11121]: audit 2026-02-23T09:44:55.440927+0000 mon.trial120 (mon.0) 32 : audit [INF] from='client.? 10.20.193.120:0/2658560251' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-23T09:44:56.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:56 trial120 bash[11121]: cluster 2026-02-23T09:44:55.443198+0000 mon.trial120 (mon.0) 33 : cluster [DBG] mgrmap e4: trial120.ychbxb(active, since 3s) 2026-02-23T09:44:56.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:56 trial120 bash[11121]: cluster 2026-02-23T09:44:55.443198+0000 mon.trial120 (mon.0) 33 : cluster [DBG] mgrmap e4: trial120.ychbxb(active, since 3s) 2026-02-23T09:44:56.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:56 trial120 bash[11121]: audit 2026-02-23T09:44:55.767524+0000 mon.trial120 (mon.0) 34 : audit [DBG] from='client.? 10.20.193.120:0/2051621538' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-23T09:44:56.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:56 trial120 bash[11121]: audit 2026-02-23T09:44:55.767524+0000 mon.trial120 (mon.0) 34 : audit [DBG] from='client.? 10.20.193.120:0/2051621538' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-23T09:44:58.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.220549+0000 mon.trial120 (mon.0) 35 : cluster [INF] Active manager daemon trial120.ychbxb restarted 2026-02-23T09:44:58.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.220549+0000 mon.trial120 (mon.0) 35 : cluster [INF] Active manager daemon trial120.ychbxb restarted 2026-02-23T09:44:58.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.220762+0000 mon.trial120 (mon.0) 36 : cluster [INF] Activating manager daemon trial120.ychbxb 2026-02-23T09:44:58.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.220762+0000 mon.trial120 (mon.0) 36 : cluster [INF] Activating manager daemon trial120.ychbxb 2026-02-23T09:44:58.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.223294+0000 mon.trial120 (mon.0) 37 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2026-02-23T09:44:58.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.223294+0000 mon.trial120 (mon.0) 37 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2026-02-23T09:44:58.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.223367+0000 mon.trial120 (mon.0) 38 : cluster [DBG] mgrmap e5: trial120.ychbxb(active, starting, since 0.00271748s) 2026-02-23T09:44:58.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.223367+0000 mon.trial120 (mon.0) 38 : cluster [DBG] mgrmap e5: trial120.ychbxb(active, starting, since 0.00271748s) 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.224183+0000 mon.trial120 (mon.0) 39 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata", "id": "trial120"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.224183+0000 mon.trial120 (mon.0) 39 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata", "id": "trial120"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.224897+0000 mon.trial120 (mon.0) 40 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "mgr metadata", "who": "trial120.ychbxb", "id": "trial120.ychbxb"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.224897+0000 mon.trial120 (mon.0) 40 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "mgr metadata", "who": "trial120.ychbxb", "id": "trial120.ychbxb"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.225517+0000 mon.trial120 (mon.0) 41 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "mds metadata"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.225517+0000 mon.trial120 (mon.0) 41 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "mds metadata"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.225596+0000 mon.trial120 (mon.0) 42 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "osd metadata"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.225596+0000 mon.trial120 (mon.0) 42 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "osd metadata"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.225675+0000 mon.trial120 (mon.0) 43 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: audit 2026-02-23T09:44:58.225675+0000 mon.trial120 (mon.0) 43 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata"} : dispatch 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.253339+0000 mon.trial120 (mon.0) 44 : cluster [INF] Manager daemon trial120.ychbxb is now available 2026-02-23T09:44:58.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:58 trial120 bash[11121]: cluster 2026-02-23T09:44:58.253339+0000 mon.trial120 (mon.0) 44 : cluster [INF] Manager daemon trial120.ychbxb is now available 2026-02-23T09:44:59.261 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout { 2026-02-23T09:44:59.261 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 6, 2026-02-23T09:44:59.261 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-23T09:44:59.261 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout } 2026-02-23T09:44:59.261 INFO:teuthology.orchestra.run.trial120.stdout:mgr epoch 4 is available 2026-02-23T09:44:59.262 INFO:teuthology.orchestra.run.trial120.stdout:Verifying orchestrator module is enabled... 2026-02-23T09:44:59.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.518731+0000 mon.trial120 (mon.0) 45 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.518731+0000 mon.trial120 (mon.0) 45 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.520352+0000 mon.trial120 (mon.0) 46 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.520352+0000 mon.trial120 (mon.0) 46 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:58.520523+0000 mgr.trial120.ychbxb (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:58.520523+0000 mgr.trial120.ychbxb (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.521427+0000 mon.trial120 (mon.0) 47 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.521427+0000 mon.trial120 (mon.0) 47 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.522600+0000 mon.trial120 (mon.0) 48 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.522600+0000 mon.trial120 (mon.0) 48 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.524484+0000 mon.trial120 (mon.0) 49 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.524484+0000 mon.trial120 (mon.0) 49 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.526321+0000 mon.trial120 (mon.0) 50 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.526321+0000 mon.trial120 (mon.0) 50 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.526417+0000 mon.trial120 (mon.0) 51 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.526417+0000 mon.trial120 (mon.0) 51 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.528722+0000 mon.trial120 (mon.0) 52 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.528722+0000 mon.trial120 (mon.0) 52 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.531682+0000 mon.trial120 (mon.0) 53 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/mirror_snapshot_schedule"} : dispatch 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.531682+0000 mon.trial120 (mon.0) 53 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/mirror_snapshot_schedule"} : dispatch 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.533258+0000 mon.trial120 (mon.0) 54 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/trash_purge_schedule"} : dispatch 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.533258+0000 mon.trial120 (mon.0) 54 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/trash_purge_schedule"} : dispatch 2026-02-23T09:44:59.911 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.795164+0000 mon.trial120 (mon.0) 55 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.795164+0000 mon.trial120 (mon.0) 55 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.796777+0000 mon.trial120 (mon.0) 56 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:58.796777+0000 mon.trial120 (mon.0) 56 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:58.968605+0000 mgr.trial120.ychbxb (mgr.14118) 2 : cephadm [INF] [23/Feb/2026:09:44:58] ENGINE Bus STARTING 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:58.968605+0000 mgr.trial120.ychbxb (mgr.14118) 2 : cephadm [INF] [23/Feb/2026:09:44:58] ENGINE Bus STARTING 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:59.069796+0000 mgr.trial120.ychbxb (mgr.14118) 3 : cephadm [INF] [23/Feb/2026:09:44:59] ENGINE Serving on http://10.20.193.120:8765 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:59.069796+0000 mgr.trial120.ychbxb (mgr.14118) 3 : cephadm [INF] [23/Feb/2026:09:44:59] ENGINE Serving on http://10.20.193.120:8765 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:59.178575+0000 mgr.trial120.ychbxb (mgr.14118) 4 : cephadm [INF] [23/Feb/2026:09:44:59] ENGINE Serving on https://10.20.193.120:7150 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:59.178575+0000 mgr.trial120.ychbxb (mgr.14118) 4 : cephadm [INF] [23/Feb/2026:09:44:59] ENGINE Serving on https://10.20.193.120:7150 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:59.178657+0000 mgr.trial120.ychbxb (mgr.14118) 5 : cephadm [INF] [23/Feb/2026:09:44:59] ENGINE Bus STARTED 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:59.178657+0000 mgr.trial120.ychbxb (mgr.14118) 5 : cephadm [INF] [23/Feb/2026:09:44:59] ENGINE Bus STARTED 2026-02-23T09:44:59.912 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:59.178998+0000 mon.trial120 (mon.0) 57 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:59.178998+0000 mon.trial120 (mon.0) 57 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:59.179070+0000 mgr.trial120.ychbxb (mgr.14118) 6 : cephadm [INF] [23/Feb/2026:09:44:59] ENGINE Client ('10.20.193.120', 45170) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cephadm 2026-02-23T09:44:59.179070+0000 mgr.trial120.ychbxb (mgr.14118) 6 : cephadm [INF] [23/Feb/2026:09:44:59] ENGINE Client ('10.20.193.120', 45170) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:59.225861+0000 mgr.trial120.ychbxb (mgr.14118) 7 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:59.225861+0000 mgr.trial120.ychbxb (mgr.14118) 7 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cluster 2026-02-23T09:44:59.226343+0000 mon.trial120 (mon.0) 58 : cluster [DBG] mgrmap e6: trial120.ychbxb(active, since 1.00569s) 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: cluster 2026-02-23T09:44:59.226343+0000 mon.trial120 (mon.0) 58 : cluster [DBG] mgrmap e6: trial120.ychbxb(active, since 1.00569s) 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:59.230279+0000 mgr.trial120.ychbxb (mgr.14118) 8 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:59.230279+0000 mgr.trial120.ychbxb (mgr.14118) 8 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:59.507813+0000 mon.trial120 (mon.0) 59 : audit [INF] from='client.? 10.20.193.120:0/1300918364' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-23T09:44:59.913 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:44:59 trial120 bash[11121]: audit 2026-02-23T09:44:59.507813+0000 mon.trial120 (mon.0) 59 : audit [INF] from='client.? 10.20.193.120:0/1300918364' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-23T09:45:00.260 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-23T09:45:00.260 INFO:teuthology.orchestra.run.trial120.stdout:Setting orchestrator backend to cephadm... 2026-02-23T09:45:00.753 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-23T09:45:00.753 INFO:teuthology.orchestra.run.trial120.stdout:Generating ssh key... 2026-02-23T09:45:01.258 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJwv8YRtzlLVnhUnPAIA6ve8s5WH/ovXSqmg7WpD7Fvv ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:45:01.258 INFO:teuthology.orchestra.run.trial120.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-23T09:45:01.258 INFO:teuthology.orchestra.run.trial120.stdout:Adding key to root@localhost authorized_keys... 2026-02-23T09:45:01.259 INFO:teuthology.orchestra.run.trial120.stdout:Adding host trial120... 2026-02-23T09:45:01.302 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.224462+0000 mon.trial120 (mon.0) 60 : audit [INF] from='client.? 10.20.193.120:0/1300918364' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-23T09:45:01.302 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.224462+0000 mon.trial120 (mon.0) 60 : audit [INF] from='client.? 10.20.193.120:0/1300918364' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-23T09:45:01.302 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: cluster 2026-02-23T09:45:00.227836+0000 mon.trial120 (mon.0) 61 : cluster [DBG] mgrmap e7: trial120.ychbxb(active, since 2s) 2026-02-23T09:45:01.302 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: cluster 2026-02-23T09:45:00.227836+0000 mon.trial120 (mon.0) 61 : cluster [DBG] mgrmap e7: trial120.ychbxb(active, since 2s) 2026-02-23T09:45:01.302 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.483556+0000 mgr.trial120.ychbxb (mgr.14118) 9 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:01.303 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.483556+0000 mgr.trial120.ychbxb (mgr.14118) 9 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:01.303 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.487041+0000 mon.trial120 (mon.0) 62 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:01.303 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.487041+0000 mon.trial120 (mon.0) 62 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:01.303 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.493388+0000 mon.trial120 (mon.0) 63 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:45:01.303 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.493388+0000 mon.trial120 (mon.0) 63 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:45:01.303 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.984449+0000 mon.trial120 (mon.0) 64 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:01.303 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.984449+0000 mon.trial120 (mon.0) 64 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:01.303 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.986145+0000 mon.trial120 (mon.0) 65 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:01.303 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:01 trial120 bash[11121]: audit 2026-02-23T09:45:00.986145+0000 mon.trial120 (mon.0) 65 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:02.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: audit 2026-02-23T09:45:00.723804+0000 mgr.trial120.ychbxb (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:02.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: audit 2026-02-23T09:45:00.723804+0000 mgr.trial120.ychbxb (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:02.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: audit 2026-02-23T09:45:00.965343+0000 mgr.trial120.ychbxb (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:02.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: audit 2026-02-23T09:45:00.965343+0000 mgr.trial120.ychbxb (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:02.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: cephadm 2026-02-23T09:45:00.965514+0000 mgr.trial120.ychbxb (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2026-02-23T09:45:02.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: cephadm 2026-02-23T09:45:00.965514+0000 mgr.trial120.ychbxb (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2026-02-23T09:45:02.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: cluster 2026-02-23T09:45:01.227411+0000 mon.trial120 (mon.0) 66 : cluster [DBG] mgrmap e8: trial120.ychbxb(active, since 3s) 2026-02-23T09:45:02.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: cluster 2026-02-23T09:45:01.227411+0000 mon.trial120 (mon.0) 66 : cluster [DBG] mgrmap e8: trial120.ychbxb(active, since 3s) 2026-02-23T09:45:02.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: audit 2026-02-23T09:45:01.229258+0000 mgr.trial120.ychbxb (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:02.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: audit 2026-02-23T09:45:01.229258+0000 mgr.trial120.ychbxb (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:02.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: audit 2026-02-23T09:45:01.487829+0000 mgr.trial120.ychbxb (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial120", "addr": "10.20.193.120", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:02.410 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:02 trial120 bash[11121]: audit 2026-02-23T09:45:01.487829+0000 mgr.trial120.ychbxb (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial120", "addr": "10.20.193.120", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:03.367 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:03 trial120 bash[11121]: cephadm 2026-02-23T09:45:01.804599+0000 mgr.trial120.ychbxb (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to trial120 2026-02-23T09:45:03.368 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:03 trial120 bash[11121]: cephadm 2026-02-23T09:45:01.804599+0000 mgr.trial120.ychbxb (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to trial120 2026-02-23T09:45:03.393 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout Added host 'trial120' with addr '10.20.193.120' 2026-02-23T09:45:03.394 INFO:teuthology.orchestra.run.trial120.stdout:Deploying mon service with default placement... 2026-02-23T09:45:03.645 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-23T09:45:03.645 INFO:teuthology.orchestra.run.trial120.stdout:Deploying mgr service with default placement... 2026-02-23T09:45:03.895 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-02-23T09:45:03.895 INFO:teuthology.orchestra.run.trial120.stdout:Deploying crash service with default placement... 2026-02-23T09:45:04.151 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2026-02-23T09:45:04.151 INFO:teuthology.orchestra.run.trial120.stdout:Deploying ceph-exporter service with default placement... 2026-02-23T09:45:04.380 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.358528+0000 mon.trial120 (mon.0) 67 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.380 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.358528+0000 mon.trial120 (mon.0) 67 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.380 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: cephadm 2026-02-23T09:45:03.358858+0000 mgr.trial120.ychbxb (mgr.14118) 16 : cephadm [INF] Added host trial120 2026-02-23T09:45:04.380 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: cephadm 2026-02-23T09:45:03.358858+0000 mgr.trial120.ychbxb (mgr.14118) 16 : cephadm [INF] Added host trial120 2026-02-23T09:45:04.380 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.359134+0000 mon.trial120 (mon.0) 68 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:45:04.380 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.359134+0000 mon.trial120 (mon.0) 68 : audit [DBG] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:45:04.380 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.616406+0000 mon.trial120 (mon.0) 69 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.381 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.616406+0000 mon.trial120 (mon.0) 69 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.381 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.865377+0000 mon.trial120 (mon.0) 70 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.381 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.865377+0000 mon.trial120 (mon.0) 70 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.381 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.876006+0000 mon.trial120 (mon.0) 71 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.381 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:03.876006+0000 mon.trial120 (mon.0) 71 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.381 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:04.120058+0000 mon.trial120 (mon.0) 72 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.381 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:04.120058+0000 mon.trial120 (mon.0) 72 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.381 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:04.152801+0000 mon.trial120 (mon.0) 73 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.381 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:04 trial120 bash[11121]: audit 2026-02-23T09:45:04.152801+0000 mon.trial120 (mon.0) 73 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:04.404 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2026-02-23T09:45:04.404 INFO:teuthology.orchestra.run.trial120.stdout:Deploying prometheus service with default placement... 2026-02-23T09:45:04.647 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2026-02-23T09:45:04.647 INFO:teuthology.orchestra.run.trial120.stdout:Deploying grafana service with default placement... 2026-02-23T09:45:04.895 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2026-02-23T09:45:04.896 INFO:teuthology.orchestra.run.trial120.stdout:Deploying node-exporter service with default placement... 2026-02-23T09:45:05.149 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2026-02-23T09:45:05.149 INFO:teuthology.orchestra.run.trial120.stdout:Deploying alertmanager service with default placement... 2026-02-23T09:45:05.398 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2026-02-23T09:45:05.436 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:03.613314+0000 mgr.trial120.ychbxb (mgr.14118) 17 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:03.613314+0000 mgr.trial120.ychbxb (mgr.14118) 17 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: cephadm 2026-02-23T09:45:03.614394+0000 mgr.trial120.ychbxb (mgr.14118) 18 : cephadm [INF] Saving service mon spec with placement count:5 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: cephadm 2026-02-23T09:45:03.614394+0000 mgr.trial120.ychbxb (mgr.14118) 18 : cephadm [INF] Saving service mon spec with placement count:5 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:03.862539+0000 mgr.trial120.ychbxb (mgr.14118) 19 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:03.862539+0000 mgr.trial120.ychbxb (mgr.14118) 19 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: cephadm 2026-02-23T09:45:03.863102+0000 mgr.trial120.ychbxb (mgr.14118) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: cephadm 2026-02-23T09:45:03.863102+0000 mgr.trial120.ychbxb (mgr.14118) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.117304+0000 mgr.trial120.ychbxb (mgr.14118) 21 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.117304+0000 mgr.trial120.ychbxb (mgr.14118) 21 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: cephadm 2026-02-23T09:45:04.118087+0000 mgr.trial120.ychbxb (mgr.14118) 22 : cephadm [INF] Saving service crash spec with placement * 2026-02-23T09:45:05.437 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: cephadm 2026-02-23T09:45:04.118087+0000 mgr.trial120.ychbxb (mgr.14118) 22 : cephadm [INF] Saving service crash spec with placement * 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.372029+0000 mgr.trial120.ychbxb (mgr.14118) 23 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.372029+0000 mgr.trial120.ychbxb (mgr.14118) 23 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: cephadm 2026-02-23T09:45:04.372989+0000 mgr.trial120.ychbxb (mgr.14118) 24 : cephadm [INF] Saving service ceph-exporter spec with placement * 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: cephadm 2026-02-23T09:45:04.372989+0000 mgr.trial120.ychbxb (mgr.14118) 24 : cephadm [INF] Saving service ceph-exporter spec with placement * 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.374515+0000 mon.trial120 (mon.0) 74 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.374515+0000 mon.trial120 (mon.0) 74 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.617169+0000 mon.trial120 (mon.0) 75 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.617169+0000 mon.trial120 (mon.0) 75 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.868291+0000 mon.trial120 (mon.0) 76 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:04.868291+0000 mon.trial120 (mon.0) 76 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:05.120647+0000 mon.trial120 (mon.0) 77 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.438 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:05.120647+0000 mon.trial120 (mon.0) 77 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.439 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:05.367720+0000 mon.trial120 (mon.0) 78 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.439 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:05 trial120 bash[11121]: audit 2026-02-23T09:45:05.367720+0000 mon.trial120 (mon.0) 78 : audit [INF] from='mgr.14118 10.20.193.120:0/1481467298' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:05.879 INFO:teuthology.orchestra.run.trial120.stdout:Enabling the dashboard module... 2026-02-23T09:45:06.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:04.614512+0000 mgr.trial120.ychbxb (mgr.14118) 25 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:06.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:04.614512+0000 mgr.trial120.ychbxb (mgr.14118) 25 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:06.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: cephadm 2026-02-23T09:45:04.615165+0000 mgr.trial120.ychbxb (mgr.14118) 26 : cephadm [INF] Saving service prometheus spec with placement count:1 2026-02-23T09:45:06.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: cephadm 2026-02-23T09:45:04.615165+0000 mgr.trial120.ychbxb (mgr.14118) 26 : cephadm [INF] Saving service prometheus spec with placement count:1 2026-02-23T09:45:06.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:04.865082+0000 mgr.trial120.ychbxb (mgr.14118) 27 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:06.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:04.865082+0000 mgr.trial120.ychbxb (mgr.14118) 27 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:06.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: cephadm 2026-02-23T09:45:04.866090+0000 mgr.trial120.ychbxb (mgr.14118) 28 : cephadm [INF] Saving service grafana spec with placement count:1 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: cephadm 2026-02-23T09:45:04.866090+0000 mgr.trial120.ychbxb (mgr.14118) 28 : cephadm [INF] Saving service grafana spec with placement count:1 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:05.117404+0000 mgr.trial120.ychbxb (mgr.14118) 29 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:05.117404+0000 mgr.trial120.ychbxb (mgr.14118) 29 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: cephadm 2026-02-23T09:45:05.118327+0000 mgr.trial120.ychbxb (mgr.14118) 30 : cephadm [INF] Saving service node-exporter spec with placement * 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: cephadm 2026-02-23T09:45:05.118327+0000 mgr.trial120.ychbxb (mgr.14118) 30 : cephadm [INF] Saving service node-exporter spec with placement * 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:05.364468+0000 mgr.trial120.ychbxb (mgr.14118) 31 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:05.364468+0000 mgr.trial120.ychbxb (mgr.14118) 31 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: cephadm 2026-02-23T09:45:05.365401+0000 mgr.trial120.ychbxb (mgr.14118) 32 : cephadm [INF] Saving service alertmanager spec with placement count:1 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: cephadm 2026-02-23T09:45:05.365401+0000 mgr.trial120.ychbxb (mgr.14118) 32 : cephadm [INF] Saving service alertmanager spec with placement count:1 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:05.611458+0000 mon.trial120 (mon.0) 79 : audit [INF] from='client.? 10.20.193.120:0/1445047575' entity='client.admin' 2026-02-23T09:45:06.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:05.611458+0000 mon.trial120 (mon.0) 79 : audit [INF] from='client.? 10.20.193.120:0/1445047575' entity='client.admin' 2026-02-23T09:45:06.661 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:05.851325+0000 mon.trial120 (mon.0) 80 : audit [INF] from='client.? 10.20.193.120:0/2806239597' entity='client.admin' 2026-02-23T09:45:06.661 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:05.851325+0000 mon.trial120 (mon.0) 80 : audit [INF] from='client.? 10.20.193.120:0/2806239597' entity='client.admin' 2026-02-23T09:45:06.661 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:06.129631+0000 mon.trial120 (mon.0) 81 : audit [INF] from='client.? 10.20.193.120:0/1400473195' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-23T09:45:06.661 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:06 trial120 bash[11121]: audit 2026-02-23T09:45:06.129631+0000 mon.trial120 (mon.0) 81 : audit [INF] from='client.? 10.20.193.120:0/1400473195' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-23T09:45:07.248 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout { 2026-02-23T09:45:07.248 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "epoch": 9, 2026-02-23T09:45:07.248 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-23T09:45:07.248 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "active_name": "trial120.ychbxb", 2026-02-23T09:45:07.248 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-23T09:45:07.248 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout } 2026-02-23T09:45:07.249 INFO:teuthology.orchestra.run.trial120.stdout:Waiting for the mgr to restart... 2026-02-23T09:45:07.249 INFO:teuthology.orchestra.run.trial120.stdout:Waiting for mgr epoch 9... 2026-02-23T09:45:08.158 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:07 trial120 bash[11121]: audit 2026-02-23T09:45:06.851124+0000 mon.trial120 (mon.0) 82 : audit [INF] from='client.? 10.20.193.120:0/1400473195' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-23T09:45:08.158 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:07 trial120 bash[11121]: audit 2026-02-23T09:45:06.851124+0000 mon.trial120 (mon.0) 82 : audit [INF] from='client.? 10.20.193.120:0/1400473195' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-23T09:45:08.158 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:07 trial120 bash[11121]: cluster 2026-02-23T09:45:06.855037+0000 mon.trial120 (mon.0) 83 : cluster [DBG] mgrmap e9: trial120.ychbxb(active, since 8s) 2026-02-23T09:45:08.158 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:07 trial120 bash[11121]: cluster 2026-02-23T09:45:06.855037+0000 mon.trial120 (mon.0) 83 : cluster [DBG] mgrmap e9: trial120.ychbxb(active, since 8s) 2026-02-23T09:45:08.158 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:07 trial120 bash[11121]: audit 2026-02-23T09:45:07.221772+0000 mon.trial120 (mon.0) 84 : audit [DBG] from='client.? 10.20.193.120:0/95670754' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-23T09:45:08.158 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:07 trial120 bash[11121]: audit 2026-02-23T09:45:07.221772+0000 mon.trial120 (mon.0) 84 : audit [DBG] from='client.? 10.20.193.120:0/95670754' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-23T09:45:09.883 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.652480+0000 mon.trial120 (mon.0) 85 : cluster [INF] Active manager daemon trial120.ychbxb restarted 2026-02-23T09:45:09.883 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.652480+0000 mon.trial120 (mon.0) 85 : cluster [INF] Active manager daemon trial120.ychbxb restarted 2026-02-23T09:45:09.883 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.652700+0000 mon.trial120 (mon.0) 86 : cluster [INF] Activating manager daemon trial120.ychbxb 2026-02-23T09:45:09.883 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.652700+0000 mon.trial120 (mon.0) 86 : cluster [INF] Activating manager daemon trial120.ychbxb 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.655498+0000 mon.trial120 (mon.0) 87 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.655498+0000 mon.trial120 (mon.0) 87 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.655617+0000 mon.trial120 (mon.0) 88 : cluster [DBG] mgrmap e10: trial120.ychbxb(active, starting, since 0.00303143s) 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.655617+0000 mon.trial120 (mon.0) 88 : cluster [DBG] mgrmap e10: trial120.ychbxb(active, starting, since 0.00303143s) 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.656378+0000 mon.trial120 (mon.0) 89 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata", "id": "trial120"} : dispatch 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.656378+0000 mon.trial120 (mon.0) 89 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata", "id": "trial120"} : dispatch 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.657100+0000 mon.trial120 (mon.0) 90 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "mgr metadata", "who": "trial120.ychbxb", "id": "trial120.ychbxb"} : dispatch 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.657100+0000 mon.trial120 (mon.0) 90 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "mgr metadata", "who": "trial120.ychbxb", "id": "trial120.ychbxb"} : dispatch 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.657659+0000 mon.trial120 (mon.0) 91 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "mds metadata"} : dispatch 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.657659+0000 mon.trial120 (mon.0) 91 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "mds metadata"} : dispatch 2026-02-23T09:45:09.884 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.657746+0000 mon.trial120 (mon.0) 92 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "osd metadata"} : dispatch 2026-02-23T09:45:09.885 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.657746+0000 mon.trial120 (mon.0) 92 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "osd metadata"} : dispatch 2026-02-23T09:45:09.885 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.657824+0000 mon.trial120 (mon.0) 93 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata"} : dispatch 2026-02-23T09:45:09.885 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: audit 2026-02-23T09:45:09.657824+0000 mon.trial120 (mon.0) 93 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "mon metadata"} : dispatch 2026-02-23T09:45:09.885 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.685338+0000 mon.trial120 (mon.0) 94 : cluster [INF] Manager daemon trial120.ychbxb is now available 2026-02-23T09:45:09.885 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:09 trial120 bash[11121]: cluster 2026-02-23T09:45:09.685338+0000 mon.trial120 (mon.0) 94 : cluster [INF] Manager daemon trial120.ychbxb is now available 2026-02-23T09:45:10.693 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout { 2026-02-23T09:45:10.694 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2026-02-23T09:45:10.694 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-23T09:45:10.694 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout } 2026-02-23T09:45:10.694 INFO:teuthology.orchestra.run.trial120.stdout:mgr epoch 9 is available 2026-02-23T09:45:10.694 INFO:teuthology.orchestra.run.trial120.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-02-23T09:45:11.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:10 trial120 bash[11121]: audit 2026-02-23T09:45:09.874373+0000 mon.trial120 (mon.0) 95 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:45:11.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:10 trial120 bash[11121]: audit 2026-02-23T09:45:09.874373+0000 mon.trial120 (mon.0) 95 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-23T09:45:11.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:10 trial120 bash[11121]: audit 2026-02-23T09:45:09.883926+0000 mon.trial120 (mon.0) 96 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/mirror_snapshot_schedule"} : dispatch 2026-02-23T09:45:11.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:10 trial120 bash[11121]: audit 2026-02-23T09:45:09.883926+0000 mon.trial120 (mon.0) 96 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/mirror_snapshot_schedule"} : dispatch 2026-02-23T09:45:11.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:10 trial120 bash[11121]: audit 2026-02-23T09:45:09.885424+0000 mon.trial120 (mon.0) 97 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/trash_purge_schedule"} : dispatch 2026-02-23T09:45:11.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:10 trial120 bash[11121]: audit 2026-02-23T09:45:09.885424+0000 mon.trial120 (mon.0) 97 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial120.ychbxb/trash_purge_schedule"} : dispatch 2026-02-23T09:45:11.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:10 trial120 bash[11121]: cluster 2026-02-23T09:45:10.659889+0000 mon.trial120 (mon.0) 98 : cluster [DBG] mgrmap e11: trial120.ychbxb(active, since 1.0073s) 2026-02-23T09:45:11.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:10 trial120 bash[11121]: cluster 2026-02-23T09:45:10.659889+0000 mon.trial120 (mon.0) 98 : cluster [DBG] mgrmap e11: trial120.ychbxb(active, since 1.0073s) 2026-02-23T09:45:11.839 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIFIDCCAwigAwIBAgIUUZ3Stm9ptRPZ4kE5KRWxbF/vFO8wDQYJKoZIhvcNAQEL\nBQAwPDE6MDgGA1UEAwwxY2VwaGFkbS1yb290LTNkOWU1ZGY4LTEwOWMtMTFmMS1h\nMDE1LWQ0MDRlNmU3ZDQ2MDAeFw0yNjAyMjMwOTQ1MTFaFw0yOTAyMjIwOTQ1MTFa\nMBgxFjAUBgNVBAMMDTEwLjIwLjE5My4xMjAwggIiMA0GCSqGSIb3DQEBAQUAA4IC\nDwAwggIKAoICAQC8sqeOQONQPYgRnn2+h0ylsirZsbmju7P+V13RzWOu6G6KtPyZ\ntnOSmVhUZexCWOJdIpIQvXfEoWm0RHRlS/mHdc3F3EtaQmzb90kwaR8vfrSot7Ge\na0dBppG5CNQOROX9zYv5SZahOxlhezhx7kFqlCFVOfePuu7YLATZ7pzOl4HAJTi7\n/uEyeqRr20JOrKbCPP7zMgTPH20Ae9cQ0n4KuV6dS+BpNZMK+Yh382jizpRL+1qz\nmqfeHGWaucOAHKJWwhMox6pg+gwXky4/HHu8VyJ6PjuqBAGeBx3uVPhnqfbzVtBu\nR8j5INvPzRLXOEnXwkraYdMc9tNtQjl288ltfpjV4BvuToiQnn8V5IR/wm0plcQX\n/mPp2r31noNTiOUR620r6qPMw24bve11zNZAFeKTwXS5PUpgxV4s2Fp6uwAyJ49k\nTtsKDHe20+cft7BMK8SAik9n+4dA+CYxqFiKxUL6jziLFNC9De6y6uhJ33NzmMY7\nSd0IkgCsMFd8miofsXBPiRHfbZyrEfTo0yxYzyXXVVcsODKHEEtuDzgstrjzy1hn\njSgmBXtQH3YBt4F4apxQl/NLjL4r7bSj7iS0mjZdBc/73lVY6+5MQUAIPdIUWGaW\njXNRMpjk00d+tSttNozc7SePvvAAu920lurcqth2qL5UGGtj2kE2z5K1pwIDAQAB\noz4wPDAsBgNVHREEJTAjggh0cmlhbDEyMIIRZGFzaGJvYXJkX3NlcnZlcnOHBAoU\nwXgwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAaKd0mPnmUjR3oonD\nMS2INVYRoL6ZVwg9E3ebWVf2Hag3YSobch2MCjabwx8a0t9fiWvWs99AQYwnxmPY\nJzUPF+Ro5Y7rMKCyzAJxRHOLNpsGlqpxjlJIZbvq31Ehf3iceiP9kDryw6g1lCc6\nMulQa4F9cvLGofIFJeAVqXG+se+w+K8W5dQ3+uAUz9kztXf6Fn9JA1jBZO+aValY\nbTXAOvmUc79SNYsloRWkPtjmVtmAQVzTGHfxrbcZ5fOGj85e/n12gy/c3iHfdmJA\nuVB/FsiQ0tcuPDc3BI9h+TI69+PCjjPPEya+q84o8MtnhIQoEdoDNm91cg/akMu2\nrI7ijoBAphz4ntmIpDfGlFeEHK1h8Hy6uEdHmdpz9kgpUhXBLKjjID7nfAFCUCDN\n3HoW2ba6BsP2ejYR3PSR2tUzA9d9ND0pQ1U1+iZiEUquhmgvB70g07K73dWtHcSF\n8qGuQ767HU8iskpEM3rguHTEv+3hyyZhB0Jc4wGKcEbOCK45qNiYKxS2wM1f/46g\n8sHhe/TnRA5kNlPXpR1ofFhiE2v60UuYX5ORmfF5rBhZLX/2nRaodVvWH3pSmP9p\nszcfo4Odv7HFmB3rUD4fbk62DV7ApObqtLNQgcAV4L+dRAAJMLUZAkmV7f7RY3nY\nZWNHOlo5lLzekt0cNNUz6FFAtf8=\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKQIBAAKCAgEAvLKnjkDjUD2IEZ59vodMpbIq2bG5o7uz/ldd0c1jruhuirT8\nmbZzkplYVGXsQljiXSKSEL13xKFptER0ZUv5h3XNxdxLWkJs2/dJMGkfL360qLex\nnmtHQaaRuQjUDkTl/c2L+UmWoTsZYXs4ce5BapQhVTn3j7ru2CwE2e6czpeBwCU4\nu/7hMnqka9tCTqymwjz+8zIEzx9tAHvXENJ+CrlenUvgaTWTCvmId/No4s6US/ta\ns5qn3hxlmrnDgByiVsITKMeqYPoMF5MuPxx7vFciej47qgQBngcd7lT4Z6n281bQ\nbkfI+SDbz80S1zhJ18JK2mHTHPbTbUI5dvPJbX6Y1eAb7k6IkJ5/FeSEf8JtKZXE\nF/5j6dq99Z6DU4jlEettK+qjzMNuG73tdczWQBXik8F0uT1KYMVeLNhaersAMieP\nZE7bCgx3ttPnH7ewTCvEgIpPZ/uHQPgmMahYisVC+o84ixTQvQ3usuroSd9zc5jG\nO0ndCJIArDBXfJoqH7FwT4kR322cqxH06NMsWM8l11VXLDgyhxBLbg84LLa488tY\nZ40oJgV7UB92AbeBeGqcUJfzS4y+K+20o+4ktJo2XQXP+95VWOvuTEFACD3SFFhm\nlo1zUTKY5NNHfrUrbTaM3O0nj77wALvdtJbq3KrYdqi+VBhrY9pBNs+StacCAwEA\nAQKCAgBHrR0UXfV6f0T2XFurSb2Fmx3Hv0iityPx0sHidcANqmCC86iXwsQ3xWPV\n+zk5IoYpln4hObcKy71ZKj+EUs2f9NGK/Njqmhy7mT0F1IhyBBEfnVcss9dHSrxD\nquTR3r32IGOw95DuAYLskl+odzYGA+p9cx1kTT94gY/+MDMEDmzMzda1ImXsRMW7\n6ndPZymY0o6NVkyZWHiRHHle/HXAIRWdbjr5+82094AtABqxPIL8MagMXQyyw9qc\nYT+vpDDN/75DWUSQvapmMhP5CRq/OeHwyT7kn8z1eAKYi1IoHlmdqTZXDZF7gE2+\nq0ki01DJUhYYydvlPqSk9ejaFFRISjQUNBpQpkpBaia/GKRXArMyZ/yukawssXeP\naT0U6wZBNtuD4FqssUyYo7IcsQDfygYUKwy+NhxML8CHQfcuSDIu8UM31MVhYh66\nDy6kgUFJlnlwlVR0arN1GoKQdZKoMP5ysTx8jnhFxeZlIk67y1tX30gdhVms3Yit\nEoR7sxCiUdTE0UHesL0ux0rafnEzF3ofLQGF4HHRAp/whegRkK7Nw4xJBwzFYxxM\n1X2LPx1E1lPsmmt8QwK+/5oFwd4FT2u/nyKjJ3zjgOFgpYxcZhcODUwl7IWf/oWQ\nfrCtVMYuWjIuhhr+UG/WmBQrcBPr/e2n3V30k4vUlG1aXrCKkQKCAQEA38corzLI\n5BqJWpwzyvuvB8ngmdFwgysb0EPLQiwifgZrWTQEvdM7q1UcUhBojAgGfoVzcabv\nWUyt0mxCa15vTRa+rXzv10CLbVbSKwR79VfwL8mn41RtL5giYVqobvyK/p64zokL\nUyIbiNTlDmvd9aVYG7YwW9xVDStbc6wd9utNhVtdpZyeBwA6+IJrULbcCFyFXdf3\n1kCLB+SVQgFrriVGWOLLGZNY22RzbvygtcJbMqfzWpRbGow0wFFyXgjRQcHk4d+c\nkVzyb+oiqGwMTHIuhZKON1eR6AHAwnFtECoeVHFw4Dso2o5K8dCzLHctgNFIoVge\nTI7MzQMrwT8APQKCAQEA195iBBwqaEgQeaBwNHEv7IggAIsyCfiho9ggxKcC43iy\nUv3+g9l2LAOWgUlqmKHKqcCREfLrh55TafCBu8snYvcjGxyVVW3M7RO6dOzip5wj\n4SEMniA1e8jy4lI9wvaLJJYHDp+FPPlZXk8vnCc15yPmr6M2nrQwY/i50rjWxn6A\n3YD/kMAPFlFp516vriWWrymruyVBUdgjGyDynXNkP0LijEqUIOx5lJwt5A2EVaKG\ntj/68g2G+Ouqry02Fr6AN6OuTiknxJa3azQr1ExNh0DhhXkSYwd7tL4F5Bxt2lyI\nXVxi766NUUiQ/tGCc7FyY75FbIJtzlNYArZvdvFnswKCAQBazlRiE7eVaHdIP458\n1fjGrlLn2CdR8tJMhtYaOhKdFTnGbudlqCvUcKsXWfUyracE/F5GRjlmAUmf07J4\nI1AC9jHV8JbawCRT8CFEt4MdodujaK8p/n54C8IXw1QKBYzZmcrgdJgV2gdWVR3F\n5luhbMD+LcYd4KDawTdRDwzxv7YrYVH0/ELcEGndof6uOCW9dt3foN2/IV3JjCZN\nLIpnllSfiRhlfndWP8LfzL/iQcYEHkcQAJefhDl7uRExu14+0tFwHu9HxXHTnC0I\nLyAmfUcHiNsQ9gYNIXj47lIVdyHrnkTxmNARMCCVU90BNDNQzJwubLWO13ufzaOZ\nvVj5AoIBAQDQI1XyjI2/Gqz3+N/3UKNaty3UGGJZBugjqIJ/2mCIn5mhN9Gto4Gz\nkooNgpJLNMTJxCicW9MJYnkfDoyoW4tQeuXYgEjkpAgRFxKTJsyru3tE2K7n0DqB\nbhHyckWmtD0ZO6b2TI0Va37l1ggb0hrBEPaepwpFH4wA+JODQEGmBdeOu5CvKt/h\nLwKj2cIecZPGtLEmsxc2KOZAhBYqBlbEQGNbzZTh4eCgj64X04ijYR/uneYCeVSI\nsgJTAY7Dg07xVtr79eaoQIH91cHk4uVl4gMQxNobrd1zOj1H4rlw8ANzsV6bp3wO\nwZ88cxoLHy8iSRV7OI9Tfzy+8NSspLrNAoIBAQDVSPyOE+yjGept7ulfIOSzS/tS\nMylIfBYX2H+1GFZ5wgHdUcMnaEUb67goiEo/Cz80r7Igqnq5TVCBcmD0yxQfR/4O\nrG3RlkN+U/OOzeraX1gyO1rOIxNwGTY47G5x4F848VNd/csgvEQ4j3h3bh89fCbm\n1D3h6IGWNUwcMYDFxOXu5OJTH31qZA/QBIQ3UL9xxtxH+CwbEhVxwKqlN8YG+udI\nIzTXdcZun5JGgdPvkR6W4z/N6Sida34mmKy6wwW0nHFLqx1W59GvSDlqDmDmI7M6\nQM3rV+jWMcnJngUOCgRZwyPrjcjl5hqr221LHq8mxzJK6IBWugHhV6Zj+D8E\n-----END RSA PRIVATE KEY-----\n"} 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.060685+0000 mgr.trial120.ychbxb (mgr.14164) 1 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Bus STARTING 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.060685+0000 mgr.trial120.ychbxb (mgr.14164) 1 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Bus STARTING 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.161597+0000 mgr.trial120.ychbxb (mgr.14164) 2 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Serving on http://10.20.193.120:8765 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.161597+0000 mgr.trial120.ychbxb (mgr.14164) 2 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Serving on http://10.20.193.120:8765 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.269523+0000 mgr.trial120.ychbxb (mgr.14164) 3 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Serving on https://10.20.193.120:7150 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.269523+0000 mgr.trial120.ychbxb (mgr.14164) 3 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Serving on https://10.20.193.120:7150 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.269586+0000 mgr.trial120.ychbxb (mgr.14164) 4 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Bus STARTED 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.269586+0000 mgr.trial120.ychbxb (mgr.14164) 4 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Bus STARTED 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.269951+0000 mgr.trial120.ychbxb (mgr.14164) 5 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Client ('10.20.193.120', 48930) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: cephadm 2026-02-23T09:45:10.269951+0000 mgr.trial120.ychbxb (mgr.14164) 5 : cephadm [INF] [23/Feb/2026:09:45:10] ENGINE Client ('10.20.193.120', 48930) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: audit 2026-02-23T09:45:10.658579+0000 mgr.trial120.ychbxb (mgr.14164) 6 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: audit 2026-02-23T09:45:10.658579+0000 mgr.trial120.ychbxb (mgr.14164) 6 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: audit 2026-02-23T09:45:10.662852+0000 mgr.trial120.ychbxb (mgr.14164) 7 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-23T09:45:12.067 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:11 trial120 bash[11121]: audit 2026-02-23T09:45:10.662852+0000 mgr.trial120.ychbxb (mgr.14164) 7 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-23T09:45:12.091 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-02-23T09:45:12.353 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-02-23T09:45:12.354 INFO:teuthology.orchestra.run.trial120.stdout:Creating initial admin user... 2026-02-23T09:45:12.808 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$CksTaLtR4cP9UkwkzKtPl.TgDOpnQxxkTHd7hLCUH6PfNdaOWgA7y", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1771839912, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-02-23T09:45:12.808 INFO:teuthology.orchestra.run.trial120.stdout:Fetching dashboard port number... 2026-02-23T09:45:13.032 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:12 trial120 bash[11121]: audit 2026-02-23T09:45:10.914316+0000 mgr.trial120.ychbxb (mgr.14164) 8 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:13.033 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:12 trial120 bash[11121]: audit 2026-02-23T09:45:10.914316+0000 mgr.trial120.ychbxb (mgr.14164) 8 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:13.033 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:12 trial120 bash[11121]: cluster 2026-02-23T09:45:11.711288+0000 mon.trial120 (mon.0) 99 : cluster [DBG] mgrmap e12: trial120.ychbxb(active, since 2s) 2026-02-23T09:45:13.033 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:12 trial120 bash[11121]: cluster 2026-02-23T09:45:11.711288+0000 mon.trial120 (mon.0) 99 : cluster [DBG] mgrmap e12: trial120.ychbxb(active, since 2s) 2026-02-23T09:45:13.033 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:12 trial120 bash[11121]: audit 2026-02-23T09:45:12.060330+0000 mon.trial120 (mon.0) 100 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:13.033 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:12 trial120 bash[11121]: audit 2026-02-23T09:45:12.060330+0000 mon.trial120 (mon.0) 100 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:13.033 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:12 trial120 bash[11121]: audit 2026-02-23T09:45:12.323832+0000 mon.trial120 (mon.0) 101 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:13.033 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:12 trial120 bash[11121]: audit 2026-02-23T09:45:12.323832+0000 mon.trial120 (mon.0) 101 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:13.056 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stdout 8443 2026-02-23T09:45:13.057 INFO:teuthology.orchestra.run.trial120.stdout:firewalld does not appear to be present 2026-02-23T09:45:13.057 INFO:teuthology.orchestra.run.trial120.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-02-23T09:45:13.058 INFO:teuthology.orchestra.run.trial120.stdout:Ceph Dashboard is now available at: 2026-02-23T09:45:13.058 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.058 INFO:teuthology.orchestra.run.trial120.stdout: URL: https://trial120:8443/ 2026-02-23T09:45:13.058 INFO:teuthology.orchestra.run.trial120.stdout: User: admin 2026-02-23T09:45:13.058 INFO:teuthology.orchestra.run.trial120.stdout: Password: 1e7zjfid24 2026-02-23T09:45:13.058 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.058 INFO:teuthology.orchestra.run.trial120.stdout:Saving cluster configuration to /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/config directory 2026-02-23T09:45:13.363 INFO:teuthology.orchestra.run.trial120.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-02-23T09:45:13.364 INFO:teuthology.orchestra.run.trial120.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-02-23T09:45:13.364 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.364 INFO:teuthology.orchestra.run.trial120.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-02-23T09:45:13.364 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.364 INFO:teuthology.orchestra.run.trial120.stdout:Or, if you are only running a single cluster on this host: 2026-02-23T09:45:13.364 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.364 INFO:teuthology.orchestra.run.trial120.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout:Please consider enabling telemetry to help improve Ceph: 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout: ceph telemetry on 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout:For more information see: 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:13.365 INFO:teuthology.orchestra.run.trial120.stdout:Bootstrap complete. 2026-02-23T09:45:13.370 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout static 2026-02-23T09:45:13.374 INFO:teuthology.orchestra.run.trial120.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-02-23T09:45:13.374 INFO:teuthology.orchestra.run.trial120.stdout:systemctl: stdout inactive 2026-02-23T09:45:13.374 INFO:teuthology.orchestra.run.trial120.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-02-23T09:45:13.600 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:45:13.606 INFO:tasks.cephadm:Fetching config... 2026-02-23T09:45:13.606 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:45:13.606 DEBUG:teuthology.orchestra.run.trial120:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-02-23T09:45:13.610 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-02-23T09:45:13.610 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:45:13.610 DEBUG:teuthology.orchestra.run.trial120:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-02-23T09:45:13.660 INFO:tasks.cephadm:Fetching mon keyring... 2026-02-23T09:45:13.660 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:45:13.660 DEBUG:teuthology.orchestra.run.trial120:> sudo dd if=/var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/keyring of=/dev/stdout 2026-02-23T09:45:13.708 INFO:tasks.cephadm:Fetching pub ssh key... 2026-02-23T09:45:13.708 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:45:13.708 DEBUG:teuthology.orchestra.run.trial120:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-02-23T09:45:13.753 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-02-23T09:45:13.754 DEBUG:teuthology.orchestra.run.trial120:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJwv8YRtzlLVnhUnPAIA6ve8s5WH/ovXSqmg7WpD7Fvv ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-23T09:45:13.811 INFO:teuthology.orchestra.run.trial120.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJwv8YRtzlLVnhUnPAIA6ve8s5WH/ovXSqmg7WpD7Fvv ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:45:13.818 DEBUG:teuthology.orchestra.run.trial137:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJwv8YRtzlLVnhUnPAIA6ve8s5WH/ovXSqmg7WpD7Fvv ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-23T09:45:13.836 INFO:teuthology.orchestra.run.trial137.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJwv8YRtzlLVnhUnPAIA6ve8s5WH/ovXSqmg7WpD7Fvv ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:45:13.842 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-02-23T09:45:13.866 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:12.058065+0000 mgr.trial120.ychbxb (mgr.14164) 9 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:13.867 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:12.058065+0000 mgr.trial120.ychbxb (mgr.14164) 9 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:13.867 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:12.321390+0000 mgr.trial120.ychbxb (mgr.14164) 10 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:13.867 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:12.321390+0000 mgr.trial120.ychbxb (mgr.14164) 10 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:13.867 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:12.572645+0000 mgr.trial120.ychbxb (mgr.14164) 11 : audit [DBG] 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-23T09:45:13.867 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:12.572645+0000 mgr.trial120.ychbxb (mgr.14164) 11 : audit [DBG] 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-23T09:45:13.867 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:12.777386+0000 mon.trial120 (mon.0) 102 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:13.867 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:12.777386+0000 mon.trial120 (mon.0) 102 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:13.867 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:13.026888+0000 mon.trial120 (mon.0) 103 : audit [DBG] from='client.? 10.20.193.120:0/3703468750' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-23T09:45:13.867 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:13.026888+0000 mon.trial120 (mon.0) 103 : audit [DBG] from='client.? 10.20.193.120:0/3703468750' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-23T09:45:13.868 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:13.333949+0000 mon.trial120 (mon.0) 104 : audit [INF] from='client.? 10.20.193.120:0/2268567181' entity='client.admin' 2026-02-23T09:45:13.868 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:13 trial120 bash[11121]: audit 2026-02-23T09:45:13.333949+0000 mon.trial120 (mon.0) 104 : audit [INF] from='client.? 10.20.193.120:0/2268567181' entity='client.admin' 2026-02-23T09:45:13.947 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:14.317 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-02-23T09:45:14.317 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-02-23T09:45:14.442 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:14.803 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial137 2026-02-23T09:45:14.803 DEBUG:teuthology.orchestra.run.trial137:> set -ex 2026-02-23T09:45:14.803 DEBUG:teuthology.orchestra.run.trial137:> dd of=/etc/ceph/ceph.conf 2026-02-23T09:45:14.809 DEBUG:teuthology.orchestra.run.trial137:> set -ex 2026-02-23T09:45:14.809 DEBUG:teuthology.orchestra.run.trial137:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-23T09:45:14.860 INFO:tasks.cephadm:Adding host trial137 to orchestrator... 2026-02-23T09:45:14.860 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph orch host add trial137 2026-02-23T09:45:14.948 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:15.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:15 trial120 bash[11121]: audit 2026-02-23T09:45:14.273594+0000 mon.trial120 (mon.0) 105 : audit [INF] from='client.? 10.20.193.120:0/4287357739' entity='client.admin' 2026-02-23T09:45:15.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:15 trial120 bash[11121]: audit 2026-02-23T09:45:14.273594+0000 mon.trial120 (mon.0) 105 : audit [INF] from='client.? 10.20.193.120:0/4287357739' entity='client.admin' 2026-02-23T09:45:15.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:15 trial120 bash[11121]: audit 2026-02-23T09:45:14.755809+0000 mgr.trial120.ychbxb (mgr.14164) 12 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:15.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:15 trial120 bash[11121]: audit 2026-02-23T09:45:14.755809+0000 mgr.trial120.ychbxb (mgr.14164) 12 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:15.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:15 trial120 bash[11121]: audit 2026-02-23T09:45:14.758175+0000 mon.trial120 (mon.0) 106 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:15.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:15 trial120 bash[11121]: audit 2026-02-23T09:45:14.758175+0000 mon.trial120 (mon.0) 106 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:15.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:15 trial120 bash[11121]: audit 2026-02-23T09:45:14.866953+0000 mon.trial120 (mon.0) 107 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:15.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:15 trial120 bash[11121]: audit 2026-02-23T09:45:14.866953+0000 mon.trial120 (mon.0) 107 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:16.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:16 trial120 bash[11121]: audit 2026-02-23T09:45:15.298430+0000 mgr.trial120.ychbxb (mgr.14164) 13 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial137", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:16.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:16 trial120 bash[11121]: audit 2026-02-23T09:45:15.298430+0000 mgr.trial120.ychbxb (mgr.14164) 13 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial137", "target": ["mon-mgr", ""]}]: dispatch 2026-02-23T09:45:16.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:16 trial120 bash[11121]: audit 2026-02-23T09:45:15.455159+0000 mon.trial120 (mon.0) 108 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:16.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:16 trial120 bash[11121]: audit 2026-02-23T09:45:15.455159+0000 mon.trial120 (mon.0) 108 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:16.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:16 trial120 bash[11121]: cephadm 2026-02-23T09:45:15.844729+0000 mgr.trial120.ychbxb (mgr.14164) 14 : cephadm [INF] Deploying cephadm binary to trial137 2026-02-23T09:45:16.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:16 trial120 bash[11121]: cephadm 2026-02-23T09:45:15.844729+0000 mgr.trial120.ychbxb (mgr.14164) 14 : cephadm [INF] Deploying cephadm binary to trial137 2026-02-23T09:45:17.398 INFO:teuthology.orchestra.run.trial120.stdout:Added host 'trial137' with addr '10.20.193.137' 2026-02-23T09:45:17.445 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-23T09:45:17.530 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:17.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: cluster 2026-02-23T09:45:16.457044+0000 mon.trial120 (mon.0) 109 : cluster [DBG] mgrmap e13: trial120.ychbxb(active, since 6s) 2026-02-23T09:45:17.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: cluster 2026-02-23T09:45:16.457044+0000 mon.trial120 (mon.0) 109 : cluster [DBG] mgrmap e13: trial120.ychbxb(active, since 6s) 2026-02-23T09:45:17.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.011920+0000 mon.trial120 (mon.0) 110 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:17.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.011920+0000 mon.trial120 (mon.0) 110 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:17.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.013731+0000 mon.trial120 (mon.0) 111 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:17.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.013731+0000 mon.trial120 (mon.0) 111 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:17.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.014270+0000 mon.trial120 (mon.0) 112 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config rm", "who": "osd/host:trial120", "name": "osd_memory_target"} : dispatch 2026-02-23T09:45:17.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.014270+0000 mon.trial120 (mon.0) 112 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config rm", "who": "osd/host:trial120", "name": "osd_memory_target"} : dispatch 2026-02-23T09:45:17.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.015118+0000 mon.trial120 (mon.0) 113 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-23T09:45:17.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.015118+0000 mon.trial120 (mon.0) 113 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-23T09:45:17.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.015516+0000 mon.trial120 (mon.0) 114 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-23T09:45:17.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.015516+0000 mon.trial120 (mon.0) 114 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-23T09:45:17.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.399301+0000 mon.trial120 (mon.0) 115 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:17.660 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:17 trial120 bash[11121]: audit 2026-02-23T09:45:17.399301+0000 mon.trial120 (mon.0) 115 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:17.839 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:17.839 INFO:teuthology.orchestra.run.trial120.stdout:[{"addr": "10.20.193.120", "hostname": "trial120", "labels": [], "status": ""}, {"addr": "10.20.193.137", "hostname": "trial137", "labels": [], "status": ""}] 2026-02-23T09:45:17.882 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph config-key ls 2026-02-23T09:45:17.967 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:18.320 INFO:teuthology.orchestra.run.trial120.stdout:[ 2026-02-23T09:45:18.320 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/", 2026-02-23T09:45:18.321 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-23T09:45:18.321 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-23T09:45:18.321 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-23T09:45:18.321 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/auth_debug", 2026-02-23T09:45:18.321 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/container_image", 2026-02-23T09:45:18.321 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-23T09:45:18.321 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/log_to_file", 2026-02-23T09:45:18.321 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/log_to_journald", 2026-02-23T09:45:18.321 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/log_to_stderr", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T09:45:18.322 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-23T09:45:18.323 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-23T09:45:18.323 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-23T09:45:18.323 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-23T09:45:18.323 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-23T09:45:18.323 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-23T09:45:18.323 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/debug_ms", 2026-02-23T09:45:18.323 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:18.323 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:18.323 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/debug_mon", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/debug_ms", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/debug_paxos", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:18.324 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/debug_ms", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/debug_osd", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-23T09:45:18.325 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-23T09:45:18.326 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/3/", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/3/+global/public_network", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/4/", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/5/", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/6/", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/6/+global/container_image", 2026-02-23T09:45:18.327 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/6/-global/container_image", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/7/", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/8/", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/9/", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/auth_debug", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/container_image", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/log_to_file", 2026-02-23T09:45:18.328 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/log_to_journald", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/log_to_stderr", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_allow_pool_delete", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_clock_drift_allowed", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_cluster_log_to_file", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_max_pg_per_osd", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/ms_die_on_bug", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/ms_die_on_old_message", 2026-02-23T09:45:18.329 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/public_network", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/debug_mgr", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/debug_ms", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-23T09:45:18.330 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/debug_mon", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/debug_ms", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/debug_paxos", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_data_avail_warn", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/bdev_debug_aio", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/debug_ms", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/debug_osd", 2026-02-23T09:45:18.331 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_op_order", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_shutdown", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_mclock_profile", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_memory_target_autotune", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_op_queue", 2026-02-23T09:45:18.332 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_scrub_max_interval", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/client_keyrings", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/config_checks", 2026-02-23T09:45:18.333 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/host.trial120", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/host.trial120.devices.0", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/inventory", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.crash", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.grafana", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.mgr", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.mon", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.prometheus", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/accessdb_v2", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/cluster/status", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/crt", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/key", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/telemetry/collection", 2026-02-23T09:45:18.334 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/telemetry/report_id", 2026-02-23T09:45:18.335 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/telemetry/salt" 2026-02-23T09:45:18.335 INFO:teuthology.orchestra.run.trial120.stdout:] 2026-02-23T09:45:18.365 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-23T09:45:18.450 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:18.613 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:18 trial120 bash[11121]: cephadm 2026-02-23T09:45:17.016962+0000 mgr.trial120.ychbxb (mgr.14164) 15 : cephadm [INF] Updating trial120:/etc/ceph/ceph.conf 2026-02-23T09:45:18.613 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:18 trial120 bash[11121]: cephadm 2026-02-23T09:45:17.016962+0000 mgr.trial120.ychbxb (mgr.14164) 15 : cephadm [INF] Updating trial120:/etc/ceph/ceph.conf 2026-02-23T09:45:18.613 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:18 trial120 bash[11121]: cephadm 2026-02-23T09:45:17.399647+0000 mgr.trial120.ychbxb (mgr.14164) 16 : cephadm [INF] Added host trial137 2026-02-23T09:45:18.613 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:18 trial120 bash[11121]: cephadm 2026-02-23T09:45:17.399647+0000 mgr.trial120.ychbxb (mgr.14164) 16 : cephadm [INF] Added host trial137 2026-02-23T09:45:18.613 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:18 trial120 bash[11121]: audit 2026-02-23T09:45:17.840600+0000 mgr.trial120.ychbxb (mgr.14164) 17 : audit [DBG] from='client.14194 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-23T09:45:18.613 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:18 trial120 bash[11121]: audit 2026-02-23T09:45:17.840600+0000 mgr.trial120.ychbxb (mgr.14164) 17 : audit [DBG] from='client.14194 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-23T09:45:18.613 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:18 trial120 bash[11121]: audit 2026-02-23T09:45:18.321575+0000 mon.trial120 (mon.0) 116 : audit [DBG] from='client.? 10.20.193.120:0/2799588909' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-23T09:45:18.613 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:18 trial120 bash[11121]: audit 2026-02-23T09:45:18.321575+0000 mon.trial120 (mon.0) 116 : audit [DBG] from='client.? 10.20.193.120:0/2799588909' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-23T09:45:18.876 INFO:teuthology.orchestra.run.trial120.stdout:{"trial120": {"hostname": "trial120", "addr": "10.20.193.120", "labels": [], "status": ""}, "trial137": {"hostname": "trial137", "addr": "10.20.193.137", "labels": [], "status": ""}} 2026-02-23T09:45:19.908 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:19 trial120 bash[11121]: cephadm 2026-02-23T09:45:18.485511+0000 mgr.trial120.ychbxb (mgr.14164) 18 : cephadm [INF] Updating trial120:/var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/config/ceph.conf 2026-02-23T09:45:19.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:19 trial120 bash[11121]: cephadm 2026-02-23T09:45:18.485511+0000 mgr.trial120.ychbxb (mgr.14164) 18 : cephadm [INF] Updating trial120:/var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/config/ceph.conf 2026-02-23T09:45:19.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:19 trial120 bash[11121]: audit 2026-02-23T09:45:18.834705+0000 mon.trial120 (mon.0) 117 : audit [DBG] from='client.? 10.20.193.120:0/1648808472' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-23T09:45:19.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:19 trial120 bash[11121]: audit 2026-02-23T09:45:18.834705+0000 mon.trial120 (mon.0) 117 : audit [DBG] from='client.? 10.20.193.120:0/1648808472' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-23T09:45:21.408 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:20 trial120 bash[11121]: cephadm 2026-02-23T09:45:19.931485+0000 mgr.trial120.ychbxb (mgr.14164) 19 : cephadm [INF] Updating trial120:/etc/ceph/ceph.client.admin.keyring 2026-02-23T09:45:21.408 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:20 trial120 bash[11121]: cephadm 2026-02-23T09:45:19.931485+0000 mgr.trial120.ychbxb (mgr.14164) 19 : cephadm [INF] Updating trial120:/etc/ceph/ceph.client.admin.keyring 2026-02-23T09:45:22.408 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:21 trial120 bash[11121]: cephadm 2026-02-23T09:45:21.365702+0000 mgr.trial120.ychbxb (mgr.14164) 20 : cephadm [INF] Updating trial120:/var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-23T09:45:22.409 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:21 trial120 bash[11121]: cephadm 2026-02-23T09:45:21.365702+0000 mgr.trial120.ychbxb (mgr.14164) 20 : cephadm [INF] Updating trial120:/var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-23T09:45:23.658 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:45:23.659 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:45:23.877 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-23T09:45:23.941 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.815740+0000 mon.trial120 (mon.0) 118 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.941 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.815740+0000 mon.trial120 (mon.0) 118 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.817587+0000 mon.trial120 (mon.0) 119 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.817587+0000 mon.trial120 (mon.0) 119 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.819857+0000 mon.trial120 (mon.0) 120 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.819857+0000 mon.trial120 (mon.0) 120 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.822179+0000 mon.trial120 (mon.0) 121 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.822179+0000 mon.trial120 (mon.0) 121 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.823575+0000 mon.trial120 (mon.0) 122 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.823575+0000 mon.trial120 (mon.0) 122 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.823856+0000 mon.trial120 (mon.0) 123 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.823856+0000 mon.trial120 (mon.0) 123 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.824423+0000 mon.trial120 (mon.0) 124 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.824423+0000 mon.trial120 (mon.0) 124 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.825606+0000 mon.trial120 (mon.0) 125 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:22.825606+0000 mon.trial120 (mon.0) 125 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: cephadm 2026-02-23T09:45:22.826126+0000 mgr.trial120.ychbxb (mgr.14164) 21 : cephadm [INF] Deploying daemon ceph-exporter.trial120 on trial120 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: cephadm 2026-02-23T09:45:22.826126+0000 mgr.trial120.ychbxb (mgr.14164) 21 : cephadm [INF] Deploying daemon ceph-exporter.trial120 on trial120 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.696263+0000 mon.trial120 (mon.0) 126 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.696263+0000 mon.trial120 (mon.0) 126 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.698584+0000 mon.trial120 (mon.0) 127 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.698584+0000 mon.trial120 (mon.0) 127 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.700628+0000 mon.trial120 (mon.0) 128 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.700628+0000 mon.trial120 (mon.0) 128 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.702274+0000 mon.trial120 (mon.0) 129 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.702274+0000 mon.trial120 (mon.0) 129 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.702823+0000 mon.trial120 (mon.0) 130 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.702823+0000 mon.trial120 (mon.0) 130 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.703244+0000 mon.trial120 (mon.0) 131 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.703244+0000 mon.trial120 (mon.0) 131 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.704447+0000 mon.trial120 (mon.0) 132 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-23T09:45:23.942 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:23 trial120 bash[11121]: audit 2026-02-23T09:45:23.704447+0000 mon.trial120 (mon.0) 132 : audit [DBG] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-23T09:45:23.961 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:24.436 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:24.437 INFO:teuthology.orchestra.run.trial120.stdout:[{"addr": "10.20.193.120", "hostname": "trial120", "labels": [], "status": ""}, {"addr": "10.20.193.137", "hostname": "trial137", "labels": [], "status": ""}] 2026-02-23T09:45:24.452 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:45:24.452 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:45:24.484 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph config-key ls 2026-02-23T09:45:24.575 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:24.947 INFO:teuthology.orchestra.run.trial120.stdout:[ 2026-02-23T09:45:24.947 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/", 2026-02-23T09:45:24.947 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-23T09:45:24.947 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/auth_debug", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/container_image", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/log_to_file", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/log_to_journald", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/log_to_stderr", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-23T09:45:24.948 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/debug_ms", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:24.949 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/debug_mon", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/debug_ms", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/debug_paxos", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T09:45:24.950 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/debug_ms", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/debug_osd", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-23T09:45:24.951 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/3/", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/3/+global/public_network", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/4/", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/5/", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/6/", 2026-02-23T09:45:24.952 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/6/+global/container_image", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/6/-global/container_image", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/7/", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/8/", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/9/", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/auth_debug", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/container_image", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/log_to_file", 2026-02-23T09:45:24.953 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/log_to_journald", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/log_to_stderr", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_allow_pool_delete", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_clock_drift_allowed", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_cluster_log_to_file", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_max_pg_per_osd", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/ms_die_on_bug", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/ms_die_on_old_message", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-23T09:45:24.954 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/public_network", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/debug_mgr", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/debug_ms", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/debug_mon", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/debug_ms", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/debug_paxos", 2026-02-23T09:45:24.955 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_data_avail_warn", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/bdev_debug_aio", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/debug_ms", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/debug_osd", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_op_order", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_shutdown", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-23T09:45:24.956 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_mclock_profile", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_memory_target_autotune", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_op_queue", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_scrub_max_interval", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_ceph-exporter_cert", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_node-exporter_cert", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-23T09:45:24.957 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_ceph-exporter_key", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_node-exporter_key", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/client_keyrings", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/config_checks", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/host.trial120", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/host.trial120.devices.0", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/inventory", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/osd_remove_queue", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.crash", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.grafana", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.mgr", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.mon", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-23T09:45:24.958 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.prometheus", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/accessdb_v2", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/cluster/status", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/crt", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/key", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/progress/completed", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/telemetry/collection", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/telemetry/report_id", 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/telemetry/salt" 2026-02-23T09:45:24.959 INFO:teuthology.orchestra.run.trial120.stdout:] 2026-02-23T09:45:24.988 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: cephadm 2026-02-23T09:45:23.704860+0000 mgr.trial120.ychbxb (mgr.14164) 22 : cephadm [INF] Deploying daemon crash.trial120 on trial120 2026-02-23T09:45:24.988 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: cephadm 2026-02-23T09:45:23.704860+0000 mgr.trial120.ychbxb (mgr.14164) 22 : cephadm [INF] Deploying daemon crash.trial120 on trial120 2026-02-23T09:45:24.988 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.485019+0000 mon.trial120 (mon.0) 133 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.988 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.485019+0000 mon.trial120 (mon.0) 133 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.988 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.487065+0000 mon.trial120 (mon.0) 134 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.988 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.487065+0000 mon.trial120 (mon.0) 134 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.989 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.488925+0000 mon.trial120 (mon.0) 135 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.989 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.488925+0000 mon.trial120 (mon.0) 135 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.989 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.490491+0000 mon.trial120 (mon.0) 136 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.989 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.490491+0000 mon.trial120 (mon.0) 136 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.989 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.492574+0000 mon.trial120 (mon.0) 137 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.989 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.492574+0000 mon.trial120 (mon.0) 137 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.989 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.494377+0000 mon.trial120 (mon.0) 138 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.989 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 bash[11121]: audit 2026-02-23T09:45:24.494377+0000 mon.trial120 (mon.0) 138 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:24.989 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:24 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:45:25.007 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-23T09:45:25.097 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:25.264 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:45:25.613 INFO:teuthology.orchestra.run.trial120.stdout:{"trial120": {"hostname": "trial120", "addr": "10.20.193.120", "labels": [], "status": ""}, "trial137": {"hostname": "trial137", "addr": "10.20.193.137", "labels": [], "status": ""}} 2026-02-23T09:45:26.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:24.438036+0000 mgr.trial120.ychbxb (mgr.14164) 23 : audit [DBG] from='client.14201 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-23T09:45:26.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:24.438036+0000 mgr.trial120.ychbxb (mgr.14164) 23 : audit [DBG] from='client.14201 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-23T09:45:26.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: cephadm 2026-02-23T09:45:24.494807+0000 mgr.trial120.ychbxb (mgr.14164) 24 : cephadm [INF] Deploying daemon node-exporter.trial120 on trial120 2026-02-23T09:45:26.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: cephadm 2026-02-23T09:45:24.494807+0000 mgr.trial120.ychbxb (mgr.14164) 24 : cephadm [INF] Deploying daemon node-exporter.trial120 on trial120 2026-02-23T09:45:26.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:24.885145+0000 mon.trial120 (mon.0) 139 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:24.885145+0000 mon.trial120 (mon.0) 139 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:24.948581+0000 mon.trial120 (mon.0) 140 : audit [DBG] from='client.? 10.20.193.120:0/2005306102' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:24.948581+0000 mon.trial120 (mon.0) 140 : audit [DBG] from='client.? 10.20.193.120:0/2005306102' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.208130+0000 mon.trial120 (mon.0) 141 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.208130+0000 mon.trial120 (mon.0) 141 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.209624+0000 mon.trial120 (mon.0) 142 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.209624+0000 mon.trial120 (mon.0) 142 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.211501+0000 mon.trial120 (mon.0) 143 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.211501+0000 mon.trial120 (mon.0) 143 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.212988+0000 mon.trial120 (mon.0) 144 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.212988+0000 mon.trial120 (mon.0) 144 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.214566+0000 mon.trial120 (mon.0) 145 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.214566+0000 mon.trial120 (mon.0) 145 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.160 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.215802+0000 mon.trial120 (mon.0) 146 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.215802+0000 mon.trial120 (mon.0) 146 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:26.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.567606+0000 mon.trial120 (mon.0) 147 : audit [DBG] from='client.? 10.20.193.120:0/4056738910' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-23T09:45:26.161 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:25 trial120 bash[11121]: audit 2026-02-23T09:45:25.567606+0000 mon.trial120 (mon.0) 147 : audit [DBG] from='client.? 10.20.193.120:0/4056738910' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-23T09:45:27.158 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:26 trial120 bash[11121]: cephadm 2026-02-23T09:45:25.219435+0000 mgr.trial120.ychbxb (mgr.14164) 25 : cephadm [INF] Deploying daemon alertmanager.trial120 on trial120 2026-02-23T09:45:27.159 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:26 trial120 bash[11121]: cephadm 2026-02-23T09:45:25.219435+0000 mgr.trial120.ychbxb (mgr.14164) 25 : cephadm [INF] Deploying daemon alertmanager.trial120 on trial120 2026-02-23T09:45:28.534 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:28 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:45:28.534 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:28 trial120 systemd[1]: /etc/systemd/system/ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2026-02-23T09:45:29.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.563543+0000 mon.trial120 (mon.0) 148 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.563543+0000 mon.trial120 (mon.0) 148 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.565096+0000 mon.trial120 (mon.0) 149 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.565096+0000 mon.trial120 (mon.0) 149 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.566421+0000 mon.trial120 (mon.0) 150 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.566421+0000 mon.trial120 (mon.0) 150 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.567480+0000 mon.trial120 (mon.0) 151 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.909 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.567480+0000 mon.trial120 (mon.0) 151 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.568858+0000 mon.trial120 (mon.0) 152 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.568858+0000 mon.trial120 (mon.0) 152 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.569757+0000 mon.trial120 (mon.0) 153 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:29.910 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:29 trial120 bash[11121]: audit 2026-02-23T09:45:28.569757+0000 mon.trial120 (mon.0) 153 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:30.614 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-23T09:45:30.704 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:31.012 INFO:teuthology.orchestra.run.trial120.stdout: 2026-02-23T09:45:31.013 INFO:teuthology.orchestra.run.trial120.stdout:[{"addr": "10.20.193.120", "hostname": "trial120", "labels": [], "status": ""}, {"addr": "10.20.193.137", "hostname": "trial137", "labels": [], "status": ""}] 2026-02-23T09:45:31.020 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: cluster 2026-02-23T09:45:29.658795+0000 mgr.trial120.ychbxb (mgr.14164) 26 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-23T09:45:31.020 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: cluster 2026-02-23T09:45:29.658795+0000 mgr.trial120.ychbxb (mgr.14164) 26 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-23T09:45:31.020 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:29.887239+0000 mon.trial120 (mon.0) 154 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.020 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:29.887239+0000 mon.trial120 (mon.0) 154 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.007383+0000 mon.trial120 (mon.0) 155 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.007383+0000 mon.trial120 (mon.0) 155 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.008996+0000 mon.trial120 (mon.0) 156 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.008996+0000 mon.trial120 (mon.0) 156 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.011783+0000 mon.trial120 (mon.0) 157 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.011783+0000 mon.trial120 (mon.0) 157 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.013129+0000 mon.trial120 (mon.0) 158 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.013129+0000 mon.trial120 (mon.0) 158 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.016000+0000 mon.trial120 (mon.0) 159 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.016000+0000 mon.trial120 (mon.0) 159 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-23T09:45:31.021 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.017844+0000 mon.trial120 (mon.0) 160 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.022 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:30 trial120 bash[11121]: audit 2026-02-23T09:45:30.017844+0000 mon.trial120 (mon.0) 160 : audit [INF] from='mgr.14164 10.20.193.120:0/63069866' entity='mgr.trial120.ychbxb' 2026-02-23T09:45:31.063 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph config-key ls 2026-02-23T09:45:31.151 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:31.564 INFO:teuthology.orchestra.run.trial120.stdout:[ 2026-02-23T09:45:31.564 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/10/", 2026-02-23T09:45:31.564 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/10/+mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-23T09:45:31.564 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/", 2026-02-23T09:45:31.564 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+client.rgw/rgw_cache_enabled", 2026-02-23T09:45:31.564 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+client.rgw/rgw_enable_ops_log", 2026-02-23T09:45:31.564 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+client.rgw/rgw_enable_usage_log", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/auth_debug", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/container_image", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/debug_asserts_on_shutdown", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/log_to_file", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/log_to_journald", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/log_to_stderr", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_allow_pool_delete", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_clock_drift_allowed", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_cluster_log_to_file", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_max_pg_per_osd", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_pg_warn_max_object_skew", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_legacy_crush_tunables", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T09:45:31.565 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/mon_warn_on_too_few_osds", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/ms_die_on_bug", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/ms_die_on_old_message", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/osd_pool_default_erasure_code_profile", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+global/osd_pool_default_pg_autoscale_mode", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/debug_mgr", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/debug_ms", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/auth_mon_ticket_ttl", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/auth_service_ticket_ttl", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/debug_mon", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/debug_ms", 2026-02-23T09:45:31.566 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/debug_paxos", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_data_avail_warn", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_mgr_mkfs_grace", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_osd_prime_pg_temp", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_osd_reporter_subtree_level", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/bdev_debug_aio", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/debug_ms", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/debug_osd", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_misdirected_ops", 2026-02-23T09:45:31.567 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_op_order", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_pg_log_writeout", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_shutdown", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_verify_cached_snaps", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_verify_missing_on_start", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_debug_verify_stray_on_activate", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_mclock_profile", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_mclock_skip_benchmark", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_memory_target_autotune", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_op_queue", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_op_queue_cut_off", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_recover_clone_overlap", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_recovery_max_chunk", 2026-02-23T09:45:31.568 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_scrub_load_threshold", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_scrub_max_interval", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/2/+osd/osd_shutdown_pgref_assert", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/3/", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/3/+global/public_network", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/4/", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/4/+mgr/mgr/cephadm/migration_current", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/5/", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/5/+mgr/mgr/orchestrator/orchestrator", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/6/", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/6/+global/container_image", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/6/-global/container_image", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/7/", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/7/+mgr/mgr/cephadm/container_init", 2026-02-23T09:45:31.569 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/8/", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/8/+mgr/mgr/dashboard/ssl_server_port", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/9/", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config-history/9/+mgr/mgr/cephadm/allow_ptrace", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/client.rgw/rgw_cache_enabled", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/client.rgw/rgw_enable_ops_log", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/client.rgw/rgw_enable_usage_log", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/auth_debug", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/container_image", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/debug_asserts_on_shutdown", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/log_to_file", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/log_to_journald", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/log_to_stderr", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_allow_pool_delete", 2026-02-23T09:45:31.570 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_clock_drift_allowed", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_cluster_log_to_file", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_max_pg_per_osd", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_pg_warn_max_object_skew", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_crush_straw_calc_version_zero", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_legacy_crush_tunables", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_osd_down_out_interval_zero", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_pool_pg_num_not_power_of_two", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/mon_warn_on_too_few_osds", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/ms_die_on_bug", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/ms_die_on_old_message", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/osd_pool_default_erasure_code_profile", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/osd_pool_default_pg_autoscale_mode", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/global/public_network", 2026-02-23T09:45:31.571 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/debug_mgr", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/debug_ms", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/cephadm/allow_ptrace", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/cephadm/container_init", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/cephadm/migration_current", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/dashboard/GRAFANA_API_SSL_VERIFY", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/dashboard/ssl_server_port", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mgr/orchestrator/orchestrator", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mgr/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/auth_allow_insecure_global_id_reclaim", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/auth_mon_ticket_ttl", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/auth_service_ticket_ttl", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/debug_mon", 2026-02-23T09:45:31.572 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/debug_ms", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/debug_paxos", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_data_avail_warn", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_mgr_mkfs_grace", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_osd_prime_pg_temp", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_osd_reporter_subtree_level", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_reweight_min_bytes_per_osd", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_reweight_min_pgs_per_osd", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/mon/mon_warn_on_insecure_global_id_reclaim_allowed", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/bdev_debug_aio", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/debug_ms", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/debug_osd", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_misdirected_ops", 2026-02-23T09:45:31.573 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_op_order", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_pg_log_writeout", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_shutdown", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_verify_cached_snaps", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_verify_missing_on_start", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_debug_verify_stray_on_activate", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_deep_scrub_update_digest_min_age", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_mclock_profile", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_mclock_skip_benchmark", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_memory_target_autotune", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_op_queue", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_op_queue_cut_off", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_recover_clone_overlap", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_recovery_max_chunk", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_scrub_load_threshold", 2026-02-23T09:45:31.574 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_scrub_max_interval", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "config/osd/osd_shutdown_pgref_assert", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_agent_cert", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_alertmanager_cert", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_ceph-exporter_cert", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_grafana_cert", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm-signed_node-exporter_cert", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.cert.cephadm_root_ca_cert", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_agent_key", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_alertmanager_key", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_ceph-exporter_key", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_grafana_key", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm-signed_node-exporter_key", 2026-02-23T09:45:31.575 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/cert_store.key.cephadm_root_ca_key", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/client_keyrings", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/config_checks", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/host.trial120", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/host.trial120.devices.0", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/inventory", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/osd_remove_queue", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/prometheus/web_password", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/prometheus/web_user", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.alertmanager", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.ceph-exporter", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.crash", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.grafana", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.mgr", 2026-02-23T09:45:31.576 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.mon", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.node-exporter", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/spec.prometheus", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/ssh_identity_key", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/cephadm/ssh_identity_pub", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/accessdb_v2", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/cluster/status", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/crt", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/dashboard/key", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/progress/completed", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/telemetry/collection", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/telemetry/report_id", 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout: "mgr/telemetry/salt" 2026-02-23T09:45:31.577 INFO:teuthology.orchestra.run.trial120.stdout:] 2026-02-23T09:45:31.689 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph config-key get mgr/cephadm/inventory 2026-02-23T09:45:31.777 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:31.953 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:31 trial120 bash[11121]: audit 2026-02-23T09:45:30.016364+0000 mgr.trial120.ychbxb (mgr.14164) 27 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-23T09:45:31.953 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:31 trial120 bash[11121]: audit 2026-02-23T09:45:30.016364+0000 mgr.trial120.ychbxb (mgr.14164) 27 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-23T09:45:31.953 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:31 trial120 bash[11121]: cephadm 2026-02-23T09:45:30.028899+0000 mgr.trial120.ychbxb (mgr.14164) 28 : cephadm [INF] Deploying daemon grafana.trial120 on trial120 2026-02-23T09:45:31.953 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:31 trial120 bash[11121]: cephadm 2026-02-23T09:45:30.028899+0000 mgr.trial120.ychbxb (mgr.14164) 28 : cephadm [INF] Deploying daemon grafana.trial120 on trial120 2026-02-23T09:45:31.953 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:31 trial120 bash[11121]: audit 2026-02-23T09:45:31.565576+0000 mon.trial120 (mon.0) 161 : audit [DBG] from='client.? 10.20.193.120:0/2496287942' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-23T09:45:31.953 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:31 trial120 bash[11121]: audit 2026-02-23T09:45:31.565576+0000 mon.trial120 (mon.0) 161 : audit [DBG] from='client.? 10.20.193.120:0/2496287942' entity='client.admin' cmd={"prefix": "config-key ls"} : dispatch 2026-02-23T09:45:32.261 INFO:teuthology.orchestra.run.trial120.stdout:{"trial120": {"hostname": "trial120", "addr": "10.20.193.120", "labels": [], "status": ""}, "trial137": {"hostname": "trial137", "addr": "10.20.193.137", "labels": [], "status": ""}} 2026-02-23T09:45:32.262 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-02-23T09:45:32.263 DEBUG:teuthology.orchestra.run.trial120:> 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 3d9e5df8-109c-11f1-a015-d404e6e7d460 -- ceph mgr module disable cephadm 2026-02-23T09:45:32.348 INFO:teuthology.orchestra.run.trial120.stderr:Inferring config /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/mon.trial120/config 2026-02-23T09:45:33.035 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-02-23T09:45:33.035 DEBUG:teuthology.orchestra.run.trial120:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-23T09:45:33.038 DEBUG:teuthology.orchestra.run.trial137:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-23T09:45:33.042 INFO:tasks.cephadm:Stopping all daemons... 2026-02-23T09:45:33.042 INFO:tasks.cephadm.mon.trial120:Stopping mon.trial120... 2026-02-23T09:45:33.042 DEBUG:teuthology.orchestra.run.trial120:> sudo systemctl stop ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mon.trial120 2026-02-23T09:45:33.146 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:32 trial120 bash[11121]: audit 2026-02-23T09:45:31.013836+0000 mgr.trial120.ychbxb (mgr.14164) 29 : audit [DBG] from='client.14207 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-23T09:45:33.146 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:32 trial120 bash[11121]: audit 2026-02-23T09:45:31.013836+0000 mgr.trial120.ychbxb (mgr.14164) 29 : audit [DBG] from='client.14207 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-23T09:45:33.146 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:32 trial120 bash[11121]: cluster 2026-02-23T09:45:31.659032+0000 mgr.trial120.ychbxb (mgr.14164) 30 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-23T09:45:33.146 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:32 trial120 bash[11121]: cluster 2026-02-23T09:45:31.659032+0000 mgr.trial120.ychbxb (mgr.14164) 30 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-23T09:45:33.146 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:32 trial120 bash[11121]: audit 2026-02-23T09:45:32.172099+0000 mon.trial120 (mon.0) 162 : audit [DBG] from='client.? 10.20.193.120:0/1901918301' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-23T09:45:33.146 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:32 trial120 bash[11121]: audit 2026-02-23T09:45:32.172099+0000 mon.trial120 (mon.0) 162 : audit [DBG] from='client.? 10.20.193.120:0/1901918301' entity='client.admin' cmd={"prefix": "config-key get", "key": "mgr/cephadm/inventory"} : dispatch 2026-02-23T09:45:33.146 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:32 trial120 bash[11121]: audit 2026-02-23T09:45:32.683824+0000 mon.trial120 (mon.0) 163 : audit [INF] from='client.? 10.20.193.120:0/161879020' entity='client.admin' cmd={"prefix": "mgr module disable", "module": "cephadm"} : dispatch 2026-02-23T09:45:33.146 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:32 trial120 bash[11121]: audit 2026-02-23T09:45:32.683824+0000 mon.trial120 (mon.0) 163 : audit [INF] from='client.? 10.20.193.120:0/161879020' entity='client.admin' cmd={"prefix": "mgr module disable", "module": "cephadm"} : dispatch 2026-02-23T09:45:33.147 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:33 trial120 systemd[1]: Stopping Ceph mon.trial120 for 3d9e5df8-109c-11f1-a015-d404e6e7d460... 2026-02-23T09:45:33.147 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:33 trial120 bash[11121]: debug 2026-02-23T09:45:33.126+0000 7fbc58bdc640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.trial120 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2026-02-23T09:45:33.147 INFO:journalctl@ceph.mon.trial120.trial120.stdout:Feb 23 09:45:33 trial120 bash[11121]: debug 2026-02-23T09:45:33.126+0000 7fbc58bdc640 -1 mon.trial120@0(leader) e1 *** Got Signal Terminated *** 2026-02-23T09:45:33.273 DEBUG:teuthology.orchestra.run.trial120:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d9e5df8-109c-11f1-a015-d404e6e7d460@mon.trial120.service' 2026-02-23T09:45:33.310 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-23T09:45:33.310 INFO:tasks.cephadm.mon.trial120:Stopped mon.trial120 2026-02-23T09:45:33.310 DEBUG:teuthology.orchestra.run.trial120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 --force --keep-logs 2026-02-23T09:45:37.096 INFO:teuthology.orchestra.run.trial120.stdout:Deleting cluster with fsid: 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:45:39.587 DEBUG:teuthology.orchestra.run.trial137:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 --force --keep-logs 2026-02-23T09:45:39.673 INFO:teuthology.orchestra.run.trial137.stdout:Deleting cluster with fsid: 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:45:39.720 DEBUG:teuthology.orchestra.run.trial120:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-23T09:45:39.730 DEBUG:teuthology.orchestra.run.trial137:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-23T09:45:39.737 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-23T09:45:39.742 INFO:tasks.cephadm:Archiving crash dumps... 2026-02-23T09:45:39.744 DEBUG:teuthology.misc:Transferring archived files from trial120:/var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65983/remote/trial120/crash 2026-02-23T09:45:39.746 DEBUG:teuthology.orchestra.run.trial120:> sudo tar c -f - -C /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/crash -- . 2026-02-23T09:45:39.781 INFO:teuthology.orchestra.run.trial120.stderr:tar: /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-23T09:45:39.781 INFO:teuthology.orchestra.run.trial120.stderr:tar: Error is not recoverable: exiting now 2026-02-23T09:45:39.783 DEBUG:teuthology.misc:Transferring archived files from trial137:/var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65983/remote/trial137/crash 2026-02-23T09:45:39.784 DEBUG:teuthology.orchestra.run.trial137:> sudo tar c -f - -C /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/crash -- . 2026-02-23T09:45:39.792 INFO:teuthology.orchestra.run.trial137.stderr:tar: /var/lib/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-23T09:45:39.792 INFO:teuthology.orchestra.run.trial137.stderr:tar: Error is not recoverable: exiting now 2026-02-23T09:45:39.793 INFO:tasks.cephadm:Checking cluster log for badness... 2026-02-23T09:45:39.794 DEBUG:teuthology.orchestra.run.trial120:> sudo grep -E '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/3d9e5df8-109c-11f1-a015-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-23T09:45:39.834 INFO:tasks.cephadm:Compressing logs... 2026-02-23T09:45:39.834 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:45:39.878 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:45:39.886 INFO:teuthology.orchestra.run.trial120.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-client.ceph-exporter.trial120.log 2026-02-23T09:45:39.886 INFO:teuthology.orchestra.run.trial120.stderr:: No such file or directory 2026-02-23T09:45:39.886 INFO:teuthology.orchestra.run.trial120.stderr:gzip -5 --verbose -- /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-mgr.trial120.ychbxb.log 2026-02-23T09:45:39.886 INFO:teuthology.orchestra.run.trial120.stderr:/var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-client.ceph-exporter.trial120.log: 57.3% -- replaced with /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-client.ceph-exporter.trial120.log.gz 2026-02-23T09:45:39.887 INFO:teuthology.orchestra.run.trial120.stderr:gzip -5 --verbose -- /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-volume.log 2026-02-23T09:45:39.887 INFO:teuthology.orchestra.run.trial120.stderr:gzip -5 --verbose -- /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph.audit.log 2026-02-23T09:45:39.887 INFO:teuthology.orchestra.run.trial120.stderr:/var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-mgr.trial120.ychbxb.log: /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph.log 2026-02-23T09:45:39.887 INFO:teuthology.orchestra.run.trial120.stderr: 89.6% -- replaced with /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-volume.log.gz 2026-02-23T09:45:39.887 INFO:teuthology.orchestra.run.trial120.stderr:/var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph.cephadm.log 2026-02-23T09:45:39.888 INFO:teuthology.orchestra.run.trial120.stderr:/var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph.log: gzip -5 --verbose -- /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-mon.trial120.log 2026-02-23T09:45:39.888 INFO:teuthology.orchestra.run.trial120.stderr: 88.7% -- replaced with /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph.audit.log.gz 2026-02-23T09:45:39.888 INFO:teuthology.orchestra.run.trial120.stderr: 80.1% -- replaced with /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph.log.gz 2026-02-23T09:45:39.888 INFO:teuthology.orchestra.run.trial120.stderr:/var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-23T09:45:39.888 INFO:teuthology.orchestra.run.trial120.stderr: 78.9% -- replaced with /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph.cephadm.log.gz 2026-02-23T09:45:39.889 INFO:teuthology.orchestra.run.trial137.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-23T09:45:39.889 INFO:teuthology.orchestra.run.trial137.stderr:: No such file or directory 2026-02-23T09:45:39.889 INFO:teuthology.orchestra.run.trial137.stderr:/var/log/ceph/cephadm.log: 76.2% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-23T09:45:39.890 INFO:teuthology.orchestra.run.trial137.stderr: 2026-02-23T09:45:39.890 INFO:teuthology.orchestra.run.trial137.stderr:real 0m0.008s 2026-02-23T09:45:39.890 INFO:teuthology.orchestra.run.trial137.stderr:user 0m0.011s 2026-02-23T09:45:39.890 INFO:teuthology.orchestra.run.trial137.stderr:sys 0m0.004s 2026-02-23T09:45:39.899 INFO:teuthology.orchestra.run.trial120.stderr:/var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-mon.trial120.log: /var/log/ceph/cephadm.log: 93.4% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-23T09:45:39.909 INFO:teuthology.orchestra.run.trial120.stderr: 92.0% -- replaced with /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-mon.trial120.log.gz 2026-02-23T09:45:39.912 INFO:teuthology.orchestra.run.trial120.stderr: 91.4% -- replaced with /var/log/ceph/3d9e5df8-109c-11f1-a015-d404e6e7d460/ceph-mgr.trial120.ychbxb.log.gz 2026-02-23T09:45:39.913 INFO:teuthology.orchestra.run.trial120.stderr: 2026-02-23T09:45:39.913 INFO:teuthology.orchestra.run.trial120.stderr:real 0m0.034s 2026-02-23T09:45:39.913 INFO:teuthology.orchestra.run.trial120.stderr:user 0m0.067s 2026-02-23T09:45:39.913 INFO:teuthology.orchestra.run.trial120.stderr:sys 0m0.010s 2026-02-23T09:45:39.914 INFO:tasks.cephadm:Archiving logs... 2026-02-23T09:45:39.914 DEBUG:teuthology.misc:Transferring archived files from trial120:/var/log/ceph to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65983/remote/trial120/log 2026-02-23T09:45:39.915 DEBUG:teuthology.orchestra.run.trial120:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-23T09:45:39.990 DEBUG:teuthology.misc:Transferring archived files from trial137:/var/log/ceph to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65983/remote/trial137/log 2026-02-23T09:45:39.992 DEBUG:teuthology.orchestra.run.trial137:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-23T09:45:40.002 INFO:tasks.cephadm:Removing cluster... 2026-02-23T09:45:40.002 DEBUG:teuthology.orchestra.run.trial120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 --force 2026-02-23T09:45:40.106 INFO:teuthology.orchestra.run.trial120.stdout:Deleting cluster with fsid: 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:45:40.157 DEBUG:teuthology.orchestra.run.trial137:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d9e5df8-109c-11f1-a015-d404e6e7d460 --force 2026-02-23T09:45:40.246 INFO:teuthology.orchestra.run.trial137.stdout:Deleting cluster with fsid: 3d9e5df8-109c-11f1-a015-d404e6e7d460 2026-02-23T09:45:40.294 INFO:tasks.cephadm:Removing cephadm ... 2026-02-23T09:45:40.294 DEBUG:teuthology.orchestra.run.trial120:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-23T09:45:40.299 DEBUG:teuthology.orchestra.run.trial137:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-23T09:45:40.303 INFO:tasks.cephadm:Teardown complete 2026-02-23T09:45:40.304 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-23T09:45:40.307 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-02-23T09:45:40.323 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2026-02-23T09:45:40.338 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial120:/dev/vg_nvme/lv_1... 2026-02-23T09:45:40.338 DEBUG:teuthology.orchestra.run.trial120:> sudo nvme disconnect -n lv_1 2026-02-23T09:45:40.874 INFO:teuthology.orchestra.run.trial120.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-23T09:45:40.875 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:40.876 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial120:/dev/vg_nvme/lv_2... 2026-02-23T09:45:40.876 DEBUG:teuthology.orchestra.run.trial120:> sudo nvme disconnect -n lv_2 2026-02-23T09:45:41.406 INFO:teuthology.orchestra.run.trial120.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-23T09:45:41.407 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:41.408 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial120:/dev/vg_nvme/lv_3... 2026-02-23T09:45:41.408 DEBUG:teuthology.orchestra.run.trial120:> sudo nvme disconnect -n lv_3 2026-02-23T09:45:41.910 INFO:teuthology.orchestra.run.trial120.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-23T09:45:41.911 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:41.912 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial120:/dev/vg_nvme/lv_4... 2026-02-23T09:45:41.912 DEBUG:teuthology.orchestra.run.trial120:> sudo nvme disconnect -n lv_4 2026-02-23T09:45:42.426 INFO:teuthology.orchestra.run.trial120.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-23T09:45:42.427 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:42.428 DEBUG:teuthology.orchestra.run.trial120:> set -ex 2026-02-23T09:45:42.428 DEBUG:teuthology.orchestra.run.trial120:> sudo dd of=/scratch_devs 2026-02-23T09:45:42.438 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial137:/dev/vg_nvme/lv_1... 2026-02-23T09:45:42.439 DEBUG:teuthology.orchestra.run.trial137:> sudo nvme disconnect -n lv_1 2026-02-23T09:45:42.981 INFO:teuthology.orchestra.run.trial137.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-23T09:45:42.982 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:42.983 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial137:/dev/vg_nvme/lv_2... 2026-02-23T09:45:42.983 DEBUG:teuthology.orchestra.run.trial137:> sudo nvme disconnect -n lv_2 2026-02-23T09:45:43.577 INFO:teuthology.orchestra.run.trial137.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-23T09:45:43.578 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:43.579 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial137:/dev/vg_nvme/lv_3... 2026-02-23T09:45:43.579 DEBUG:teuthology.orchestra.run.trial137:> sudo nvme disconnect -n lv_3 2026-02-23T09:45:44.102 INFO:teuthology.orchestra.run.trial137.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-23T09:45:44.103 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:44.103 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial137:/dev/vg_nvme/lv_4... 2026-02-23T09:45:44.104 DEBUG:teuthology.orchestra.run.trial137:> sudo nvme disconnect -n lv_4 2026-02-23T09:45:44.598 INFO:teuthology.orchestra.run.trial137.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-23T09:45:44.599 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:44.599 DEBUG:teuthology.orchestra.run.trial137:> set -ex 2026-02-23T09:45:44.600 DEBUG:teuthology.orchestra.run.trial137:> sudo dd of=/scratch_devs 2026-02-23T09:45:44.610 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-02-23T09:45:44.625 INFO:teuthology.task.clock:Checking final clock skew... 2026-02-23T09:45:44.625 DEBUG:teuthology.orchestra.run.trial120:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-23T09:45:44.628 DEBUG:teuthology.orchestra.run.trial137:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-23T09:45:44.645 INFO:teuthology.orchestra.run.trial120.stdout: remote refid st t when poll reach delay offset jitter 2026-02-23T09:45:44.646 INFO:teuthology.orchestra.run.trial120.stdout:============================================================================== 2026-02-23T09:45:44.646 INFO:teuthology.orchestra.run.trial120.stdout: 172-235-154-118 40.119.6.228 4 u 13 64 3 37.816 -0.487 0.880 2026-02-23T09:45:44.646 INFO:teuthology.orchestra.run.trial120.stdout: 198.137.202.32 17.253.16.125 2 u 12 64 3 64.724 -3.428 1.298 2026-02-23T09:45:44.646 INFO:teuthology.orchestra.run.trial120.stdout: s2-a.time.mci1. 135.45.28.167 2 u 14 64 3 29.759 -3.175 0.342 2026-02-23T09:45:44.646 INFO:teuthology.orchestra.run.trial120.stdout: neoknet.com 50.205.57.38 2 u 16 64 3 48.464 -5.796 1.670 2026-02-23T09:45:44.692 INFO:teuthology.orchestra.run.trial137.stdout: remote refid st t when poll reach delay offset jitter 2026-02-23T09:45:44.692 INFO:teuthology.orchestra.run.trial137.stdout:============================================================================== 2026-02-23T09:45:44.692 INFO:teuthology.orchestra.run.trial137.stdout: 172-233-189-68. 80.192.165.246 2 u 14 64 3 37.385 +3.829 0.200 2026-02-23T09:45:44.692 INFO:teuthology.orchestra.run.trial137.stdout: ip229.ip-51-81- 206.108.0.131 2 u 16 64 3 78.746 +0.304 0.052 2026-02-23T09:45:44.692 INFO:teuthology.orchestra.run.trial137.stdout: time4.lshiy.com 141.32.131.246 2 u 18 64 3 195.020 +0.815 0.114 2026-02-23T09:45:44.693 INFO:teuthology.orchestra.run.trial137.stdout: ntp6.kernfusion 237.17.204.95 2 u 16 64 3 3.586 -0.068 0.071 2026-02-23T09:45:44.693 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-23T09:45:44.707 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-23T09:45:44.708 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-23T09:45:44.723 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-23T09:45:44.737 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-23T09:45:44.752 INFO:teuthology.task.internal:Duration was 239.284734 seconds 2026-02-23T09:45:44.753 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-23T09:45:44.767 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-23T09:45:44.768 DEBUG:teuthology.orchestra.run.trial120:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-23T09:45:44.770 DEBUG:teuthology.orchestra.run.trial137:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-23T09:45:44.794 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-23T09:45:44.794 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial120.front.sepia.ceph.com 2026-02-23T09:45:44.794 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:45:44.843 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial137.front.sepia.ceph.com 2026-02-23T09:45:44.844 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:45:44.850 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-23T09:45:44.851 DEBUG:teuthology.orchestra.run.trial120:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-23T09:45:44.888 DEBUG:teuthology.orchestra.run.trial137:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-23T09:45:45.119 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-23T09:45:45.120 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:45:45.121 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:45:45.128 INFO:teuthology.orchestra.run.trial137.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T09:45:45.130 INFO:teuthology.orchestra.run.trial137.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-23T09:45:45.130 INFO:teuthology.orchestra.run.trial137.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-23T09:45:45.131 INFO:teuthology.orchestra.run.trial137.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T09:45:45.131 INFO:teuthology.orchestra.run.trial137.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: /home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-23T09:45:45.131 INFO:teuthology.orchestra.run.trial120.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-23T09:45:45.131 INFO:teuthology.orchestra.run.trial120.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-23T09:45:45.131 INFO:teuthology.orchestra.run.trial120.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-23T09:45:45.131 INFO:teuthology.orchestra.run.trial120.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-23T09:45:45.131 INFO:teuthology.orchestra.run.trial120.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: /home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-23T09:45:45.195 INFO:teuthology.orchestra.run.trial137.stderr: 81.4% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-23T09:45:45.200 INFO:teuthology.orchestra.run.trial120.stderr: 82.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-23T09:45:45.201 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-23T09:45:45.213 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-23T09:45:45.213 DEBUG:teuthology.orchestra.run.trial120:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-23T09:45:45.253 DEBUG:teuthology.orchestra.run.trial137:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-23T09:45:45.260 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-23T09:45:45.272 DEBUG:teuthology.orchestra.run.trial120:> 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-23T09:45:45.295 DEBUG:teuthology.orchestra.run.trial137:> 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-23T09:45:45.301 INFO:teuthology.orchestra.run.trial120.stdout:kernel.core_pattern = core 2026-02-23T09:45:45.308 INFO:teuthology.orchestra.run.trial137.stdout:kernel.core_pattern = core 2026-02-23T09:45:45.318 DEBUG:teuthology.orchestra.run.trial120:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-23T09:45:45.356 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:45.357 DEBUG:teuthology.orchestra.run.trial137:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-23T09:45:45.363 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-23T09:45:45.363 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-23T09:45:45.375 INFO:teuthology.task.internal:Transferring archived files... 2026-02-23T09:45:45.376 DEBUG:teuthology.misc:Transferring archived files from trial120:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65983/remote/trial120 2026-02-23T09:45:45.376 DEBUG:teuthology.orchestra.run.trial120:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-23T09:45:45.423 DEBUG:teuthology.misc:Transferring archived files from trial137:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/shwetabhosale-2026-02-23_09:20:59-orch:cephadm-wip-shweta-testing-2026-02-19-2025-distro-default-trial/65983/remote/trial137 2026-02-23T09:45:45.423 DEBUG:teuthology.orchestra.run.trial137:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-23T09:45:45.449 INFO:teuthology.task.internal:Removing archive directory... 2026-02-23T09:45:45.449 DEBUG:teuthology.orchestra.run.trial120:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-23T09:45:45.454 DEBUG:teuthology.orchestra.run.trial137:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-23T09:45:45.480 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-23T09:45:45.495 INFO:teuthology.task.internal:Not uploading archives. 2026-02-23T09:45:45.495 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-23T09:45:45.508 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-23T09:45:45.508 DEBUG:teuthology.orchestra.run.trial120:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-23T09:45:45.510 DEBUG:teuthology.orchestra.run.trial137:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-23T09:45:45.513 INFO:teuthology.orchestra.run.trial120.stdout: 1179687 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 23 09:45 /home/ubuntu/cephtest 2026-02-23T09:45:45.524 INFO:teuthology.orchestra.run.trial137.stdout: 1179687 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 23 09:45 /home/ubuntu/cephtest 2026-02-23T09:45:45.525 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-23T09:45:45.541 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-23T09:45:45.576 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 239.28473353385925 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-23T09:45:45.576 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-23T09:45:45.687 INFO:teuthology.run:FAIL