2024-04-07T14:34:35.233 INFO:root:teuthology version: 0.0.1.dev262+ge691533 2024-04-07T14:34:35.234 DEBUG:teuthology.run:Teuthology command: teuthology --name teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi --owner scheduled_teuthology@teuthology --verbose --archive /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217 --description orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} -- /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217/orig.config.yaml 2024-04-07T14:34:35.303 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-07T14:34:35.386 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217 branch: main description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7634217' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: main ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d owner: scheduled_teuthology@teuthology priority: 950 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 7151 sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d sleep_before_teardown: 0 subset: 39/64 suite: orch suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d targets: smithi016.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBB/8sUFtc1ceNa7cd3EXvcHPHuu37jzyoxT7FtNwT3BfTM/7SzwMXxxsxEqw+9ew5JvTJfjdEe5HX6qQ8TAAnoI= smithi027.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJJTP/1IkU7C4I9h7baElYWvdIgEfpU6wZUE/tsOi/keezDCa/+pZBNt2C62mHB0SdnbOKrTUY18oUiR3SuMW3w= tasks: - pexec: all: - sudo dnf install runc -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: e691533f9cbb33d85b2187bba20d7102f098636d timestamp: 2024-04-01_20:08:13 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-07T14:34:35.386 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa; will attempt to use it 2024-04-07T14:34:35.387 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks 2024-04-07T14:34:35.387 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-07T14:34:35.389 INFO:teuthology.task.internal:Checking packages... 2024-04-07T14:34:35.414 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d' 2024-04-07T14:34:35.414 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-07T14:34:35.414 INFO:teuthology.packaging:ref: None 2024-04-07T14:34:35.414 INFO:teuthology.packaging:tag: None 2024-04-07T14:34:35.414 INFO:teuthology.packaging:branch: main 2024-04-07T14:34:35.414 INFO:teuthology.packaging:sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:34:35.414 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=main 2024-04-07T14:34:35.678 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2778.ga971fd5f 2024-04-07T14:34:35.679 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-07T14:34:35.686 INFO:teuthology.task.internal:no buildpackages task found 2024-04-07T14:34:35.686 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-07T14:34:35.694 INFO:teuthology.task.internal:Saving configuration 2024-04-07T14:34:35.707 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-07T14:34:35.714 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T14:34:35.740 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi016.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-07 14:28:16.522803', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBB/8sUFtc1ceNa7cd3EXvcHPHuu37jzyoxT7FtNwT3BfTM/7SzwMXxxsxEqw+9ew5JvTJfjdEe5HX6qQ8TAAnoI='} 2024-04-07T14:34:35.763 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi027.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-07 14:28:16.524270', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJJTP/1IkU7C4I9h7baElYWvdIgEfpU6wZUE/tsOi/keezDCa/+pZBNt2C62mHB0SdnbOKrTUY18oUiR3SuMW3w='} 2024-04-07T14:34:35.763 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-07T14:34:35.770 INFO:teuthology.task.internal:roles: ubuntu@smithi016.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-07T14:34:35.770 INFO:teuthology.task.internal:roles: ubuntu@smithi027.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-07T14:34:35.770 INFO:teuthology.run_tasks:Running task console_log... 2024-04-07T14:34:35.842 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f1f577ec0d0>, signals=[15]) 2024-04-07T14:34:35.843 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-07T14:34:35.849 INFO:teuthology.task.internal:Opening connections... 2024-04-07T14:34:35.849 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi016.front.sepia.ceph.com 2024-04-07T14:34:35.851 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:34:35.960 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi027.front.sepia.ceph.com 2024-04-07T14:34:35.961 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:34:36.064 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-07T14:34:36.071 DEBUG:teuthology.orchestra.run.smithi016:> uname -m 2024-04-07T14:34:36.090 INFO:teuthology.orchestra.run.smithi016.stdout:x86_64 2024-04-07T14:34:36.090 DEBUG:teuthology.orchestra.run.smithi016:> cat /etc/os-release 2024-04-07T14:34:36.148 INFO:teuthology.orchestra.run.smithi016.stdout:NAME="CentOS Stream" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:VERSION="9" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:ID="centos" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:ID_LIKE="rhel fedora" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:VERSION_ID="9" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:PLATFORM_ID="platform:el9" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:ANSI_COLOR="0;31" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:LOGO="fedora-logo-icon" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:HOME_URL="https://centos.org/" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-07T14:34:36.149 INFO:teuthology.orchestra.run.smithi016.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-07T14:34:36.150 INFO:teuthology.lock.ops:Updating smithi016.front.sepia.ceph.com on lock server 2024-04-07T14:34:36.171 DEBUG:teuthology.orchestra.run.smithi027:> uname -m 2024-04-07T14:34:36.188 INFO:teuthology.orchestra.run.smithi027.stdout:x86_64 2024-04-07T14:34:36.189 DEBUG:teuthology.orchestra.run.smithi027:> cat /etc/os-release 2024-04-07T14:34:36.246 INFO:teuthology.orchestra.run.smithi027.stdout:NAME="CentOS Stream" 2024-04-07T14:34:36.246 INFO:teuthology.orchestra.run.smithi027.stdout:VERSION="9" 2024-04-07T14:34:36.246 INFO:teuthology.orchestra.run.smithi027.stdout:ID="centos" 2024-04-07T14:34:36.246 INFO:teuthology.orchestra.run.smithi027.stdout:ID_LIKE="rhel fedora" 2024-04-07T14:34:36.246 INFO:teuthology.orchestra.run.smithi027.stdout:VERSION_ID="9" 2024-04-07T14:34:36.246 INFO:teuthology.orchestra.run.smithi027.stdout:PLATFORM_ID="platform:el9" 2024-04-07T14:34:36.246 INFO:teuthology.orchestra.run.smithi027.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-07T14:34:36.247 INFO:teuthology.orchestra.run.smithi027.stdout:ANSI_COLOR="0;31" 2024-04-07T14:34:36.247 INFO:teuthology.orchestra.run.smithi027.stdout:LOGO="fedora-logo-icon" 2024-04-07T14:34:36.247 INFO:teuthology.orchestra.run.smithi027.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-07T14:34:36.247 INFO:teuthology.orchestra.run.smithi027.stdout:HOME_URL="https://centos.org/" 2024-04-07T14:34:36.247 INFO:teuthology.orchestra.run.smithi027.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-07T14:34:36.247 INFO:teuthology.orchestra.run.smithi027.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-07T14:34:36.247 INFO:teuthology.orchestra.run.smithi027.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-07T14:34:36.247 INFO:teuthology.lock.ops:Updating smithi027.front.sepia.ceph.com on lock server 2024-04-07T14:34:36.270 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-07T14:34:36.279 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-07T14:34:36.286 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-07T14:34:36.286 DEBUG:teuthology.orchestra.run.smithi016:> test '!' -e /home/ubuntu/cephtest 2024-04-07T14:34:36.289 DEBUG:teuthology.orchestra.run.smithi027:> test '!' -e /home/ubuntu/cephtest 2024-04-07T14:34:36.305 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-07T14:34:36.312 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-07T14:34:36.312 DEBUG:teuthology.orchestra.run.smithi016:> test -z $(ls -A /var/lib/ceph) 2024-04-07T14:34:36.346 DEBUG:teuthology.orchestra.run.smithi027:> test -z $(ls -A /var/lib/ceph) 2024-04-07T14:34:36.371 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-07T14:34:36.429 INFO:teuthology.run_tasks:Running task kernel... 2024-04-07T14:34:36.444 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-04-07T14:34:36.444 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-04-07T14:34:36.444 DEBUG:teuthology.orchestra.run.smithi016:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-07T14:34:36.445 DEBUG:teuthology.orchestra.run.smithi027:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-07T14:34:36.461 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:34:36.462 DEBUG:teuthology.orchestra.run.smithi016:> uname -r 2024-04-07T14:34:36.462 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:34:36.463 DEBUG:teuthology.orchestra.run.smithi027:> uname -r 2024-04-07T14:34:36.520 INFO:teuthology.orchestra.run.smithi016.stdout:5.14.0-361.el9.x86_64 2024-04-07T14:34:36.520 INFO:teuthology.task.kernel:Running kernel on smithi016: 5.14.0-361.el9.x86_64 2024-04-07T14:34:36.521 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum install -y kernel 2024-04-07T14:34:36.522 INFO:teuthology.orchestra.run.smithi027.stdout:5.14.0-361.el9.x86_64 2024-04-07T14:34:36.522 INFO:teuthology.task.kernel:Running kernel on smithi027: 5.14.0-361.el9.x86_64 2024-04-07T14:34:36.522 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum install -y kernel 2024-04-07T14:34:38.595 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS-9 - AppStream 17 MB/s | 8.1 MB 00:00 2024-04-07T14:34:38.690 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS-9 - AppStream 17 MB/s | 8.1 MB 00:00 2024-04-07T14:34:40.279 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS-9 - BaseOS 8.6 MB/s | 2.5 MB 00:00 2024-04-07T14:34:40.341 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS-9 - BaseOS 8.7 MB/s | 2.5 MB 00:00 2024-04-07T14:34:41.236 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - BaseOS 16 MB/s | 8.0 MB 00:00 2024-04-07T14:34:43.206 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - BaseOS 3.3 MB/s | 8.0 MB 00:02 2024-04-07T14:34:43.396 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - AppStream 19 MB/s | 19 MB 00:01 2024-04-07T14:34:45.049 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - AppStream 27 MB/s | 19 MB 00:00 2024-04-07T14:34:48.655 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - CRB 3.7 MB/s | 6.1 MB 00:01 2024-04-07T14:34:49.469 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - CRB 8.9 MB/s | 6.1 MB 00:00 2024-04-07T14:34:50.005 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - Extras packages 96 kB/s | 16 kB 00:00 2024-04-07T14:34:50.892 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - Extras packages 79 kB/s | 16 kB 00:00 2024-04-07T14:34:51.715 INFO:teuthology.orchestra.run.smithi027.stdout:Extra Packages for Enterprise Linux 13 MB/s | 21 MB 00:01 2024-04-07T14:34:53.344 INFO:teuthology.orchestra.run.smithi016.stdout:Extra Packages for Enterprise Linux 9.0 MB/s | 21 MB 00:02 2024-04-07T14:34:57.007 INFO:teuthology.orchestra.run.smithi027.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-04-07T14:34:58.569 INFO:teuthology.orchestra.run.smithi016.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-04-07T14:34:59.262 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.263 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.264 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-07T14:34:59.265 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.266 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-07T14:34:59.267 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:34:59.714 INFO:teuthology.orchestra.run.smithi027.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-07T14:34:59.715 INFO:teuthology.orchestra.run.smithi027.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-07T14:34:59.821 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-07T14:34:59.826 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-07T14:34:59.826 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-04-07T14:34:59.826 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-07T14:34:59.826 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-07T14:34:59.826 INFO:teuthology.orchestra.run.smithi027.stdout: kernel x86_64 5.14.0-432.el9 baseos 66 k 2024-04-07T14:34:59.827 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-07T14:34:59.827 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-core x86_64 5.14.0-432.el9 baseos 15 M 2024-04-07T14:34:59.827 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules x86_64 5.14.0-432.el9 baseos 33 M 2024-04-07T14:34:59.827 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-core x86_64 5.14.0-432.el9 baseos 27 M 2024-04-07T14:34:59.827 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:34:59.827 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-07T14:34:59.827 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-07T14:34:59.827 INFO:teuthology.orchestra.run.smithi027.stdout:Install 4 Packages 2024-04-07T14:34:59.827 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:34:59.828 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 76 M 2024-04-07T14:34:59.828 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 123 M 2024-04-07T14:34:59.828 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-07T14:34:59.992 INFO:teuthology.orchestra.run.smithi027.stdout:(1/4): kernel-5.14.0-432.el9.x86_64.rpm 630 kB/s | 66 kB 00:00 2024-04-07T14:35:00.317 INFO:teuthology.orchestra.run.smithi027.stdout:(2/4): kernel-core-5.14.0-432.el9.x86_64.rpm 35 MB/s | 15 MB 00:00 2024-04-07T14:35:00.726 INFO:teuthology.orchestra.run.smithi027.stdout:(3/4): kernel-modules-5.14.0-432.el9.x86_64.rpm 40 MB/s | 33 MB 00:00 2024-04-07T14:35:00.798 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-07T14:35:00.798 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-07T14:35:00.798 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-07T14:35:00.798 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.798 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.799 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-07T14:35:00.800 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.801 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-07T14:35:00.802 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.803 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.804 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:35:00.805 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.806 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.806 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.806 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.806 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:35:00.806 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.806 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.806 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:35:00.806 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:35:01.009 INFO:teuthology.orchestra.run.smithi027.stdout:(4/4): kernel-modules-core-5.14.0-432.el9.x86_6 27 MB/s | 27 MB 00:01 2024-04-07T14:35:01.010 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:35:01.010 INFO:teuthology.orchestra.run.smithi027.stdout:Total 64 MB/s | 76 MB 00:01 2024-04-07T14:35:01.251 INFO:teuthology.orchestra.run.smithi016.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-07T14:35:01.251 INFO:teuthology.orchestra.run.smithi016.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-07T14:35:01.354 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout: Package Architecture Version Repository Size 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout: kernel x86_64 5.14.0-432.el9 baseos 66 k 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-core x86_64 5.14.0-432.el9 baseos 15 M 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-modules x86_64 5.14.0-432.el9 baseos 33 M 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-modules-core x86_64 5.14.0-432.el9 baseos 27 M 2024-04-07T14:35:01.364 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:35:01.365 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-07T14:35:01.365 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-07T14:35:01.365 INFO:teuthology.orchestra.run.smithi016.stdout:Install 4 Packages 2024-04-07T14:35:01.365 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:35:01.365 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 76 M 2024-04-07T14:35:01.366 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 123 M 2024-04-07T14:35:01.366 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-07T14:35:01.620 INFO:teuthology.orchestra.run.smithi016.stdout:(1/4): kernel-5.14.0-432.el9.x86_64.rpm 335 kB/s | 66 kB 00:00 2024-04-07T14:35:01.704 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-07T14:35:02.124 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-07T14:35:02.124 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-07T14:35:02.295 INFO:teuthology.orchestra.run.smithi016.stdout:(2/4): kernel-core-5.14.0-432.el9.x86_64.rpm 17 MB/s | 15 MB 00:00 2024-04-07T14:35:02.962 INFO:teuthology.orchestra.run.smithi016.stdout:(3/4): kernel-modules-core-5.14.0-432.el9.x86_6 20 MB/s | 27 MB 00:01 2024-04-07T14:35:03.158 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-07T14:35:03.158 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-07T14:35:03.379 INFO:teuthology.orchestra.run.smithi016.stdout:(4/4): kernel-modules-5.14.0-432.el9.x86_64.rpm 17 MB/s | 33 MB 00:01 2024-04-07T14:35:03.379 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:35:03.379 INFO:teuthology.orchestra.run.smithi016.stdout:Total 38 MB/s | 76 MB 00:02 2024-04-07T14:35:04.075 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-07T14:35:04.495 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-07T14:35:04.495 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-07T14:35:05.531 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-07T14:35:05.532 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-07T14:35:05.768 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-07T14:35:06.402 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-modules-core-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:35:06.501 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:35:08.140 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-07T14:35:08.781 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : kernel-modules-core-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:35:08.863 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:35:09.407 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:35:09.539 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:35:11.751 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:35:11.900 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:35:14.618 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:35:14.665 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:16.975 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:35:17.017 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:19.765 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:22.117 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:50.387 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:50.387 INFO:teuthology.orchestra.run.smithi027.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-07T14:35:50.387 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:35:50.434 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:50.831 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:50.831 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:35:50.831 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:35:50.831 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:35:51.242 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:51.243 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:35:51.243 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-07T14:35:51.243 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-5.14.0-432.el9.x86_64 2024-04-07T14:35:51.243 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-core-5.14.0-432.el9.x86_64 2024-04-07T14:35:51.243 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-5.14.0-432.el9.x86_64 2024-04-07T14:35:51.243 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-core-5.14.0-432.el9.x86_64 2024-04-07T14:35:51.243 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:35:51.243 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-07T14:35:51.592 DEBUG:teuthology.orchestra.run.smithi027:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:35:51.691 INFO:teuthology.orchestra.run.smithi027.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:35:51.691 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:35:51.692 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-432.el9.x86_64 2024-04-07T14:35:51.692 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-07T14:35:51.692 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-07T14:35:51.692 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-07T14:35:51.692 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi027.front.sepia.ceph.com, path=None, version=distro) 2024-04-07T14:35:51.692 DEBUG:teuthology.orchestra.run.smithi027:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:35:51.775 INFO:teuthology.orchestra.run.smithi027.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:35:51.775 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:35:51.775 DEBUG:teuthology.orchestra.run.smithi027:> sudo rpm -qi grub2-tools 2024-04-07T14:35:51.813 INFO:teuthology.orchestra.run.smithi027.stdout:Name : grub2-tools 2024-04-07T14:35:51.813 INFO:teuthology.orchestra.run.smithi027.stdout:Epoch : 1 2024-04-07T14:35:51.813 INFO:teuthology.orchestra.run.smithi027.stdout:Version : 2.06 2024-04-07T14:35:51.813 INFO:teuthology.orchestra.run.smithi027.stdout:Release : 68.el9 2024-04-07T14:35:51.813 INFO:teuthology.orchestra.run.smithi027.stdout:Architecture: x86_64 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Group : Unspecified 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Size : 8264254 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:License : GPLv3+ 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Packager : builder@centos.org 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Vendor : CentOS 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Summary : Support tools for GRUB. 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:Description : 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:35:51.814 INFO:teuthology.orchestra.run.smithi027.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-07T14:35:51.815 INFO:teuthology.orchestra.run.smithi027.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-07T14:35:51.815 INFO:teuthology.orchestra.run.smithi027.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-07T14:35:51.815 INFO:teuthology.orchestra.run.smithi027.stdout:hardware devices. 2024-04-07T14:35:51.815 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:35:51.815 INFO:teuthology.orchestra.run.smithi027.stdout:This subpackage provides tools for support of all platforms. 2024-04-07T14:35:51.816 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-07T14:35:51.816 INFO:teuthology.task.kernel:Updating grub on smithi027 to boot 5.14.0-432.el9.x86_64 2024-04-07T14:35:51.816 DEBUG:teuthology.orchestra.run.smithi027:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-07T14:35:52.386 INFO:teuthology.orchestra.run.smithi027.stderr:Generating grub configuration file ... 2024-04-07T14:35:53.172 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:53.172 INFO:teuthology.orchestra.run.smithi016.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-07T14:35:53.172 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:35:53.218 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:53.569 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:53.569 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : kernel-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:35:53.569 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:35:53.569 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:35:53.786 INFO:teuthology.orchestra.run.smithi027.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-07T14:35:53.799 INFO:teuthology.orchestra.run.smithi027.stderr:done 2024-04-07T14:35:53.802 DEBUG:teuthology.orchestra.run.smithi027:> mktemp 2024-04-07T14:35:53.817 INFO:teuthology.orchestra.run.smithi027.stdout:/tmp/tmp.2xmA7WELsI 2024-04-07T14:35:53.817 DEBUG:teuthology.orchestra.run.smithi027:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.2xmA7WELsI 2024-04-07T14:35:53.889 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod 0666 /tmp/tmp.2xmA7WELsI 2024-04-07T14:35:53.996 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:35:53.996 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:35:53.996 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-07T14:35:53.996 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-5.14.0-432.el9.x86_64 2024-04-07T14:35:53.996 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-core-5.14.0-432.el9.x86_64 2024-04-07T14:35:53.996 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-modules-5.14.0-432.el9.x86_64 2024-04-07T14:35:53.996 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-modules-core-5.14.0-432.el9.x86_64 2024-04-07T14:35:53.996 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:35:53.996 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-07T14:35:54.037 DEBUG:teuthology.orchestra.remote:smithi027:/tmp/tmp.2xmA7WELsI is 6KB 2024-04-07T14:35:54.086 DEBUG:teuthology.orchestra.run.smithi027:> rm -fr /tmp/tmp.2xmA7WELsI 2024-04-07T14:35:54.101 DEBUG:teuthology.orchestra.run.smithi027:> sudo /bin/ls /boot/loader/entries || true 2024-04-07T14:35:54.172 INFO:teuthology.orchestra.run.smithi027.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-07T14:35:54.172 INFO:teuthology.orchestra.run.smithi027.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-07T14:35:54.172 INFO:teuthology.orchestra.run.smithi027.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-07T14:35:54.172 INFO:teuthology.orchestra.run.smithi027.stdout:15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64.conf 2024-04-07T14:35:54.173 DEBUG:teuthology.orchestra.run.smithi027:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64 2024-04-07T14:35:54.329 DEBUG:teuthology.orchestra.run.smithi016:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:35:54.330 DEBUG:teuthology.orchestra.run.smithi027:> sudo shutdown -r now 2024-04-07T14:35:54.428 INFO:teuthology.orchestra.run.smithi016.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:35:54.428 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:35:54.428 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-432.el9.x86_64 2024-04-07T14:35:54.428 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-07T14:35:54.428 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-07T14:35:54.428 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-07T14:35:54.428 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi016.front.sepia.ceph.com, path=None, version=distro) 2024-04-07T14:35:54.428 DEBUG:teuthology.orchestra.run.smithi016:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:35:54.512 INFO:teuthology.orchestra.run.smithi016.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:35:54.512 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:35:54.512 DEBUG:teuthology.orchestra.run.smithi016:> sudo rpm -qi grub2-tools 2024-04-07T14:35:54.550 INFO:teuthology.orchestra.run.smithi016.stdout:Name : grub2-tools 2024-04-07T14:35:54.550 INFO:teuthology.orchestra.run.smithi016.stdout:Epoch : 1 2024-04-07T14:35:54.550 INFO:teuthology.orchestra.run.smithi016.stdout:Version : 2.06 2024-04-07T14:35:54.550 INFO:teuthology.orchestra.run.smithi016.stdout:Release : 68.el9 2024-04-07T14:35:54.550 INFO:teuthology.orchestra.run.smithi016.stdout:Architecture: x86_64 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Group : Unspecified 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Size : 8264254 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:License : GPLv3+ 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Packager : builder@centos.org 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Vendor : CentOS 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Summary : Support tools for GRUB. 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:Description : 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-07T14:35:54.551 INFO:teuthology.orchestra.run.smithi016.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-07T14:35:54.552 INFO:teuthology.orchestra.run.smithi016.stdout:hardware devices. 2024-04-07T14:35:54.552 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:35:54.552 INFO:teuthology.orchestra.run.smithi016.stdout:This subpackage provides tools for support of all platforms. 2024-04-07T14:35:54.553 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-07T14:35:54.553 INFO:teuthology.task.kernel:Updating grub on smithi016 to boot 5.14.0-432.el9.x86_64 2024-04-07T14:35:54.553 DEBUG:teuthology.orchestra.run.smithi016:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-07T14:35:55.146 INFO:teuthology.orchestra.run.smithi016.stderr:Generating grub configuration file ... 2024-04-07T14:35:56.671 INFO:teuthology.orchestra.run.smithi016.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-07T14:35:56.704 INFO:teuthology.orchestra.run.smithi016.stderr:done 2024-04-07T14:35:56.707 DEBUG:teuthology.orchestra.run.smithi016:> mktemp 2024-04-07T14:35:56.764 INFO:teuthology.orchestra.run.smithi016.stdout:/tmp/tmp.KO0saxgaco 2024-04-07T14:35:56.765 DEBUG:teuthology.orchestra.run.smithi016:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.KO0saxgaco 2024-04-07T14:35:56.844 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod 0666 /tmp/tmp.KO0saxgaco 2024-04-07T14:35:56.990 DEBUG:teuthology.orchestra.remote:smithi016:/tmp/tmp.KO0saxgaco is 6KB 2024-04-07T14:35:57.010 DEBUG:teuthology.orchestra.run.smithi016:> rm -fr /tmp/tmp.KO0saxgaco 2024-04-07T14:35:57.025 DEBUG:teuthology.orchestra.run.smithi016:> sudo /bin/ls /boot/loader/entries || true 2024-04-07T14:35:57.093 INFO:teuthology.orchestra.run.smithi016.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-07T14:35:57.094 INFO:teuthology.orchestra.run.smithi016.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-07T14:35:57.094 INFO:teuthology.orchestra.run.smithi016.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-07T14:35:57.094 INFO:teuthology.orchestra.run.smithi016.stdout:15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64.conf 2024-04-07T14:35:57.095 DEBUG:teuthology.orchestra.run.smithi016:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64 2024-04-07T14:35:57.240 DEBUG:teuthology.orchestra.run.smithi016:> sudo shutdown -r now 2024-04-07T14:36:24.352 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-07T14:36:24.353 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-07T14:36:24.354 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:36:27.246 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-07T14:36:27.246 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-07T14:36:27.247 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:36:42.911 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-04-07T14:36:45.726 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.16 2024-04-07T14:36:51.914 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-07T14:36:51.915 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:36:54.730 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-07T14:36:54.731 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:36:54.978 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-04-07T14:37:06.990 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-07T14:37:06.991 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:37:10.046 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-04-07T14:37:25.058 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-07T14:37:25.060 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:37:28.126 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-04-07T14:37:46.146 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-07T14:37:46.147 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:37:54.741 DEBUG:teuthology.orchestra.remote:timed out 2024-04-07T14:38:04.574 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-04-07T14:38:06.744 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-07T14:38:06.745 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:38:07.096 DEBUG:teuthology.orchestra.run.smithi016:> true 2024-04-07T14:38:07.503 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-07T14:38:07.503 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-432.el9.x86_64"... 2024-04-07T14:38:07.503 DEBUG:teuthology.orchestra.run.smithi016:> uname -r 2024-04-07T14:38:07.519 INFO:teuthology.orchestra.run.smithi016.stdout:5.14.0-432.el9.x86_64 2024-04-07T14:38:07.519 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-432.el9.x86_64 vs 5.14.0-432.el9.x86_64 2024-04-07T14:38:07.519 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-07T14:38:07.519 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-07T14:38:08.520 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-07T14:38:08.520 DEBUG:teuthology.orchestra.run.smithi016:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-07T14:38:08.608 INFO:teuthology.orchestra.run.smithi016.stdout:ttyS1 2024-04-07T14:38:08.649 DEBUG:teuthology.parallel:result is None 2024-04-07T14:38:25.575 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-07T14:38:25.576 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:38:25.853 DEBUG:teuthology.orchestra.run.smithi027:> true 2024-04-07T14:38:26.231 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-07T14:38:26.231 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-432.el9.x86_64"... 2024-04-07T14:38:26.232 DEBUG:teuthology.orchestra.run.smithi027:> uname -r 2024-04-07T14:38:26.248 INFO:teuthology.orchestra.run.smithi027.stdout:5.14.0-432.el9.x86_64 2024-04-07T14:38:26.248 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-432.el9.x86_64 vs 5.14.0-432.el9.x86_64 2024-04-07T14:38:26.248 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-07T14:38:26.248 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-07T14:38:27.249 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-07T14:38:27.249 DEBUG:teuthology.orchestra.run.smithi027:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-07T14:38:27.338 INFO:teuthology.orchestra.run.smithi027.stdout:ttyS1 2024-04-07T14:38:27.370 DEBUG:teuthology.parallel:result is None 2024-04-07T14:38:27.370 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-07T14:38:27.379 INFO:teuthology.task.internal:Creating test directory... 2024-04-07T14:38:27.379 DEBUG:teuthology.orchestra.run.smithi016:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-07T14:38:27.381 DEBUG:teuthology.orchestra.run.smithi027:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-07T14:38:27.399 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-07T14:38:27.406 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-07T14:38:27.416 INFO:teuthology.task.internal:Creating archive directory... 2024-04-07T14:38:27.416 DEBUG:teuthology.orchestra.run.smithi016:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-07T14:38:27.439 DEBUG:teuthology.orchestra.run.smithi027:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-07T14:38:27.470 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-07T14:38:27.477 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-07T14:38:27.477 DEBUG:teuthology.orchestra.run.smithi016:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-07T14:38:27.504 DEBUG:teuthology.orchestra.run.smithi027:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-07T14:38:27.541 INFO:teuthology.orchestra.run.smithi016.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:38:27.548 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:38:27.555 INFO:teuthology.orchestra.run.smithi016.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:38:27.566 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:38:27.567 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-07T14:38:27.579 INFO:teuthology.task.internal:Configuring sudo... 2024-04-07T14:38:27.579 DEBUG:teuthology.orchestra.run.smithi016:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-07T14:38:27.600 DEBUG:teuthology.orchestra.run.smithi027:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-07T14:38:27.642 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-07T14:38:27.651 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-07T14:38:27.651 DEBUG:teuthology.orchestra.run.smithi016:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-07T14:38:27.670 DEBUG:teuthology.orchestra.run.smithi027:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-07T14:38:27.699 DEBUG:teuthology.orchestra.run.smithi016:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:38:27.769 DEBUG:teuthology.orchestra.run.smithi016:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:38:27.819 DEBUG:teuthology.orchestra.run.smithi016:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:38:27.901 DEBUG:teuthology.orchestra.run.smithi016:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:38:27.945 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-07T14:38:27.945 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-07T14:38:28.012 DEBUG:teuthology.orchestra.run.smithi027:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:38:28.056 DEBUG:teuthology.orchestra.run.smithi027:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:38:28.115 DEBUG:teuthology.orchestra.run.smithi027:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:38:28.200 DEBUG:teuthology.orchestra.run.smithi027:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:38:28.249 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-07T14:38:28.250 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-07T14:38:28.324 DEBUG:teuthology.orchestra.run.smithi016:> sudo service rsyslog restart 2024-04-07T14:38:28.327 DEBUG:teuthology.orchestra.run.smithi027:> sudo service rsyslog restart 2024-04-07T14:38:28.374 INFO:teuthology.orchestra.run.smithi016.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:38:28.418 INFO:teuthology.orchestra.run.smithi027.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:38:28.920 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-07T14:38:28.928 INFO:teuthology.task.internal:Starting timer... 2024-04-07T14:38:28.928 INFO:teuthology.run_tasks:Running task pcp... 2024-04-07T14:38:28.949 INFO:teuthology.run_tasks:Running task selinux... 2024-04-07T14:38:28.958 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-07T14:38:28.958 DEBUG:teuthology.orchestra.run.smithi016:> sudo service auditd rotate 2024-04-07T14:38:29.018 INFO:teuthology.orchestra.run.smithi016.stdout:Rotating logs: 2024-04-07T14:38:29.020 DEBUG:teuthology.orchestra.run.smithi027:> sudo service auditd rotate 2024-04-07T14:38:29.083 INFO:teuthology.orchestra.run.smithi027.stdout:Rotating logs: 2024-04-07T14:38:29.085 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-07T14:38:29.085 DEBUG:teuthology.orchestra.run.smithi016:> /usr/sbin/getenforce 2024-04-07T14:38:29.114 INFO:teuthology.orchestra.run.smithi016.stdout:Permissive 2024-04-07T14:38:29.114 DEBUG:teuthology.orchestra.run.smithi027:> /usr/sbin/getenforce 2024-04-07T14:38:29.137 INFO:teuthology.orchestra.run.smithi027.stdout:Permissive 2024-04-07T14:38:29.137 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi016.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi027.front.sepia.ceph.com': 'permissive'} 2024-04-07T14:38:29.137 DEBUG:teuthology.orchestra.run.smithi016:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-07T14:38:29.182 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:38:29.183 DEBUG:teuthology.orchestra.run.smithi027:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-07T14:38:29.216 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:38:29.216 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-07T14:38:29.217 DEBUG:teuthology.orchestra.run.smithi016:> sudo /usr/sbin/setenforce permissive 2024-04-07T14:38:29.256 DEBUG:teuthology.orchestra.run.smithi027:> sudo /usr/sbin/setenforce permissive 2024-04-07T14:38:29.297 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-07T14:38:29.307 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-07T14:38:29.312 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-07T14:38:29.440 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-07T14:38:29.454 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-04-07T14:38:29.456 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi016.front.sepia.ceph.com,smithi027.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-07T14:42:55.552 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi016.front.sepia.ceph.com'), Remote(name='ubuntu@smithi027.front.sepia.ceph.com')] 2024-04-07T14:42:55.553 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-07T14:42:55.555 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:42:55.648 DEBUG:teuthology.orchestra.run.smithi016:> true 2024-04-07T14:42:55.733 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-07T14:42:55.734 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-07T14:42:55.735 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:42:55.850 DEBUG:teuthology.orchestra.run.smithi027:> true 2024-04-07T14:42:55.930 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-07T14:42:55.933 INFO:teuthology.run_tasks:Running task clock... 2024-04-07T14:42:55.949 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-07T14:42:55.949 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-07T14:42:55.950 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T14:42:55.957 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-07T14:42:55.957 DEBUG:teuthology.orchestra.run.smithi027:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T14:42:55.986 INFO:teuthology.orchestra.run.smithi016.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-07T14:42:56.003 INFO:teuthology.orchestra.run.smithi016.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-07T14:42:56.006 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-07T14:42:56.027 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-07T14:42:56.033 INFO:teuthology.orchestra.run.smithi016.stderr:sudo: ntpd: command not found 2024-04-07T14:42:56.047 INFO:teuthology.orchestra.run.smithi016.stdout:506 Cannot talk to daemon 2024-04-07T14:42:56.063 INFO:teuthology.orchestra.run.smithi027.stderr:sudo: ntpd: command not found 2024-04-07T14:42:56.064 INFO:teuthology.orchestra.run.smithi016.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-07T14:42:56.080 INFO:teuthology.orchestra.run.smithi027.stdout:506 Cannot talk to daemon 2024-04-07T14:42:56.080 INFO:teuthology.orchestra.run.smithi016.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-07T14:42:56.100 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-07T14:42:56.119 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-07T14:42:56.136 INFO:teuthology.orchestra.run.smithi016.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:42:56.139 INFO:teuthology.orchestra.run.smithi016.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:42:56.139 INFO:teuthology.orchestra.run.smithi016.stdout:=============================================================================== 2024-04-07T14:42:56.139 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:42:56.139 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:42:56.139 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:42:56.139 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:42:56.179 INFO:teuthology.orchestra.run.smithi027.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:42:56.183 INFO:teuthology.orchestra.run.smithi027.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:42:56.183 INFO:teuthology.orchestra.run.smithi027.stdout:=============================================================================== 2024-04-07T14:42:56.183 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:42:56.183 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:42:56.183 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:42:56.183 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:42:56.183 INFO:teuthology.run_tasks:Running task pexec... 2024-04-07T14:42:56.193 INFO:teuthology.task.pexec:Executing custom commands... 2024-04-07T14:42:56.193 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi016.front.sepia.ceph.com 2024-04-07T14:42:56.194 DEBUG:teuthology.orchestra.run.smithi016:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-07T14:42:56.194 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi027.front.sepia.ceph.com 2024-04-07T14:42:56.194 DEBUG:teuthology.orchestra.run.smithi027:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-07T14:42:56.823 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:00:57 ago on Sun 07 Apr 2024 02:41:59 PM UTC. 2024-04-07T14:42:56.865 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:00:55 ago on Sun 07 Apr 2024 02:42:01 PM UTC. 2024-04-07T14:42:57.122 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-07T14:42:57.123 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-07T14:42:57.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-07T14:42:57.123 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-07T14:42:57.123 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-07T14:42:57.123 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-07T14:42:57.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-07T14:42:57.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-07T14:42:57.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-07T14:42:57.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.125 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.126 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-07T14:42:57.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.127 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-07T14:42:57.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.127 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-07T14:42:57.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.127 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-07T14:42:57.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.127 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.128 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-07T14:42:57.129 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.130 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:42:57.131 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.132 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.133 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.133 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:42:57.133 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.133 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.133 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.133 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.166 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-07T14:42:57.166 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-07T14:42:57.166 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-07T14:42:57.166 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.166 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.167 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-07T14:42:57.168 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-07T14:42:57.169 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.170 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.171 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.172 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.173 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.174 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.175 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.175 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.175 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:42:57.175 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.175 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.175 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.175 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:42:57.195 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-07T14:42:57.197 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-07T14:42:57.197 INFO:teuthology.orchestra.run.smithi016.stdout: Package Architecture Version Repository Size 2024-04-07T14:42:57.197 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-07T14:42:57.197 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-07T14:42:57.197 INFO:teuthology.orchestra.run.smithi016.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-07T14:42:57.197 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:42:57.197 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-07T14:42:57.197 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-07T14:42:57.198 INFO:teuthology.orchestra.run.smithi016.stdout:Install 1 Package 2024-04-07T14:42:57.198 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:42:57.198 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 3.1 M 2024-04-07T14:42:57.198 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 9.8 M 2024-04-07T14:42:57.198 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-07T14:42:57.237 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-07T14:42:57.248 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-07T14:42:57.248 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout:Install 1 Package 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 3.1 M 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 9.8 M 2024-04-07T14:42:57.249 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-07T14:42:58.443 INFO:teuthology.orchestra.run.smithi016.stdout:runc-1.1.12-2.el9.x86_64.rpm 2.8 MB/s | 3.1 MB 00:01 2024-04-07T14:42:58.443 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:42:58.443 INFO:teuthology.orchestra.run.smithi016.stdout:Total 2.5 MB/s | 3.1 MB 00:01 2024-04-07T14:42:58.482 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-07T14:42:58.489 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-07T14:42:58.490 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-07T14:42:58.541 INFO:teuthology.orchestra.run.smithi027.stdout:runc-1.1.12-2.el9.x86_64.rpm 2.5 MB/s | 3.1 MB 00:01 2024-04-07T14:42:58.541 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:42:58.542 INFO:teuthology.orchestra.run.smithi027.stdout:Total 2.4 MB/s | 3.1 MB 00:01 2024-04-07T14:42:58.574 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-07T14:42:58.575 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-07T14:42:58.581 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-07T14:42:58.587 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-07T14:42:58.588 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-07T14:42:58.675 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-07T14:42:58.675 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-07T14:42:58.810 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-07T14:42:58.906 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-07T14:42:58.914 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:42:59.006 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:42:59.380 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:42:59.481 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:42:59.675 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:42:59.675 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:42:59.675 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-07T14:42:59.675 INFO:teuthology.orchestra.run.smithi016.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-07T14:42:59.675 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:42:59.676 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-07T14:42:59.812 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:42:59.813 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:42:59.813 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-07T14:42:59.813 INFO:teuthology.orchestra.run.smithi027.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-07T14:42:59.813 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-07T14:42:59.813 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-07T14:42:59.936 DEBUG:teuthology.parallel:result is None 2024-04-07T14:43:00.050 DEBUG:teuthology.parallel:result is None 2024-04-07T14:43:00.050 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-07T14:43:00.060 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-07T14:43:00.061 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-07T14:43:00.061 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/scratch_devs of=/dev/stdout 2024-04-07T14:43:00.075 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-07T14:43:00.076 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_1 2024-04-07T14:43:00.131 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-07T14:43:00.131 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-07T14:43:00.131 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 667 Links: 1 2024-04-07T14:43:00.131 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-07T14:43:00.131 INFO:teuthology.orchestra.run.smithi016.stdout:Context: system_u:object_r:device_t:s0 2024-04-07T14:43:00.131 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-07 14:42:54.535315916 +0000 2024-04-07T14:43:00.131 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-07 14:42:26.264761191 +0000 2024-04-07T14:43:00.131 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-07 14:42:26.264761191 +0000 2024-04-07T14:43:00.131 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: 2024-04-07 14:42:26.264761191 +0000 2024-04-07T14:43:00.131 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-07T14:43:00.196 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-07T14:43:00.196 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-07T14:43:00.196 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 9.0853e-05 s, 5.6 MB/s 2024-04-07T14:43:00.197 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-07T14:43:00.252 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_2 2024-04-07T14:43:00.308 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-07T14:43:00.308 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-07T14:43:00.308 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 685 Links: 1 2024-04-07T14:43:00.308 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-07T14:43:00.308 INFO:teuthology.orchestra.run.smithi016.stdout:Context: system_u:object_r:device_t:s0 2024-04-07T14:43:00.308 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-07 14:42:54.535315916 +0000 2024-04-07T14:43:00.308 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-07 14:42:26.588756087 +0000 2024-04-07T14:43:00.308 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-07 14:42:26.588756087 +0000 2024-04-07T14:43:00.308 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: 2024-04-07 14:42:26.588756087 +0000 2024-04-07T14:43:00.309 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-07T14:43:00.373 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-07T14:43:00.373 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-07T14:43:00.373 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 8.3682e-05 s, 6.1 MB/s 2024-04-07T14:43:00.374 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-07T14:43:00.430 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_3 2024-04-07T14:43:00.484 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-07T14:43:00.484 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-07T14:43:00.484 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-04-07T14:43:00.485 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-07T14:43:00.485 INFO:teuthology.orchestra.run.smithi016.stdout:Context: system_u:object_r:device_t:s0 2024-04-07T14:43:00.485 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-07 14:42:54.535315916 +0000 2024-04-07T14:43:00.485 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-07 14:42:26.924750795 +0000 2024-04-07T14:43:00.485 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-07 14:42:26.924750795 +0000 2024-04-07T14:43:00.485 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: 2024-04-07 14:42:26.924750795 +0000 2024-04-07T14:43:00.485 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-07T14:43:00.549 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-07T14:43:00.549 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-07T14:43:00.549 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 0.00011493 s, 4.5 MB/s 2024-04-07T14:43:00.551 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-07T14:43:00.606 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_4 2024-04-07T14:43:00.662 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-07T14:43:00.662 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-07T14:43:00.662 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 722 Links: 1 2024-04-07T14:43:00.662 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-07T14:43:00.662 INFO:teuthology.orchestra.run.smithi016.stdout:Context: system_u:object_r:device_t:s0 2024-04-07T14:43:00.662 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-07 14:42:54.535315916 +0000 2024-04-07T14:43:00.662 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-07 14:42:27.263745456 +0000 2024-04-07T14:43:00.662 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-07 14:42:27.263745456 +0000 2024-04-07T14:43:00.662 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: 2024-04-07 14:42:27.263745456 +0000 2024-04-07T14:43:00.663 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-07T14:43:00.727 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-07T14:43:00.727 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-07T14:43:00.727 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 8.8961e-05 s, 5.8 MB/s 2024-04-07T14:43:00.728 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-07T14:43:00.784 DEBUG:teuthology.orchestra.run.smithi016:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-07T14:43:00.921 INFO:teuthology.orchestra.run.smithi016.stdout:loop 2024-04-07T14:43:00.922 INFO:tasks.nvme_loop:Connecting nvme_loop smithi016:/dev/vg_nvme/lv_1... 2024-04-07T14:43:00.922 DEBUG:teuthology.orchestra.run.smithi016:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-07T14:43:00.959 INFO:teuthology.orchestra.run.smithi016.stdout:1 2024-04-07T14:43:00.996 INFO:teuthology.orchestra.run.smithi016.stdout:/dev/vg_nvme/lv_11 2024-04-07T14:43:01.038 INFO:tasks.nvme_loop:Connecting nvme_loop smithi016:/dev/vg_nvme/lv_2... 2024-04-07T14:43:01.038 DEBUG:teuthology.orchestra.run.smithi016:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-07T14:43:01.117 INFO:teuthology.orchestra.run.smithi016.stdout:1 2024-04-07T14:43:01.157 INFO:teuthology.orchestra.run.smithi016.stdout:/dev/vg_nvme/lv_21 2024-04-07T14:43:01.186 INFO:tasks.nvme_loop:Connecting nvme_loop smithi016:/dev/vg_nvme/lv_3... 2024-04-07T14:43:01.186 DEBUG:teuthology.orchestra.run.smithi016:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-07T14:43:01.264 INFO:teuthology.orchestra.run.smithi016.stdout:1 2024-04-07T14:43:01.303 INFO:teuthology.orchestra.run.smithi016.stdout:/dev/vg_nvme/lv_31 2024-04-07T14:43:01.332 INFO:tasks.nvme_loop:Connecting nvme_loop smithi016:/dev/vg_nvme/lv_4... 2024-04-07T14:43:01.332 DEBUG:teuthology.orchestra.run.smithi016:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-07T14:43:01.411 INFO:teuthology.orchestra.run.smithi016.stdout:1 2024-04-07T14:43:01.451 INFO:teuthology.orchestra.run.smithi016.stdout:/dev/vg_nvme/lv_41 2024-04-07T14:43:01.481 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-07T14:43:01.481 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/scratch_devs of=/dev/stdout 2024-04-07T14:43:01.536 DEBUG:teuthology.orchestra.run.smithi016:> sudo nvme list 2024-04-07T14:43:01.602 INFO:teuthology.orchestra.run.smithi016.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-07T14:43:01.602 INFO:teuthology.orchestra.run.smithi016.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-07T14:43:01.602 INFO:teuthology.orchestra.run.smithi016.stdout:/dev/nvme0n1 PHMB7513002C480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-04-07T14:43:01.602 INFO:teuthology.orchestra.run.smithi016.stdout:/dev/nvme1n1 525f1cee718cfcf9b02a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-07T14:43:01.602 INFO:teuthology.orchestra.run.smithi016.stdout:/dev/nvme2n1 0145182e9c04267d6eb3 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-07T14:43:01.603 INFO:teuthology.orchestra.run.smithi016.stdout:/dev/nvme3n1 f42323bac732e056b354 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-07T14:43:01.603 INFO:teuthology.orchestra.run.smithi016.stdout:/dev/nvme4n1 58c09e855c1025dafa3b Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-07T14:43:01.604 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-07T14:43:01.604 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-07T14:43:01.604 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/scratch_devs 2024-04-07T14:43:01.671 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-07T14:43:01.671 DEBUG:teuthology.orchestra.run.smithi027:> dd if=/scratch_devs of=/dev/stdout 2024-04-07T14:43:01.690 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-07T14:43:01.691 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_1 2024-04-07T14:43:01.749 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-07T14:43:01.749 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-07T14:43:01.749 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 668 Links: 1 2024-04-07T14:43:01.749 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-07T14:43:01.749 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-04-07T14:43:01.750 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-04-07 14:42:54.509622886 +0000 2024-04-07T14:43:01.750 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-04-07 14:42:27.349344236 +0000 2024-04-07T14:43:01.750 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-04-07 14:42:27.349344236 +0000 2024-04-07T14:43:01.750 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-04-07 14:42:27.349344236 +0000 2024-04-07T14:43:01.751 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-07T14:43:01.823 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-04-07T14:43:01.823 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-04-07T14:43:01.823 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000252189 s, 2.0 MB/s 2024-04-07T14:43:01.825 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-07T14:43:01.884 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_2 2024-04-07T14:43:01.941 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-07T14:43:01.942 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-07T14:43:01.942 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 684 Links: 1 2024-04-07T14:43:01.942 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-07T14:43:01.942 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-04-07T14:43:01.942 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-04-07 14:42:54.509622886 +0000 2024-04-07T14:43:01.942 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-04-07 14:42:27.738333905 +0000 2024-04-07T14:43:01.942 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-04-07 14:42:27.738333905 +0000 2024-04-07T14:43:01.942 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-04-07 14:42:27.738333905 +0000 2024-04-07T14:43:01.942 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-07T14:43:02.013 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-04-07T14:43:02.013 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-04-07T14:43:02.013 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.00019531 s, 2.6 MB/s 2024-04-07T14:43:02.014 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-07T14:43:02.072 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_3 2024-04-07T14:43:02.129 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-07T14:43:02.129 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-07T14:43:02.129 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 706 Links: 1 2024-04-07T14:43:02.129 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-07T14:43:02.129 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-04-07T14:43:02.129 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-04-07 14:42:54.509622886 +0000 2024-04-07T14:43:02.129 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-04-07 14:42:28.091324530 +0000 2024-04-07T14:43:02.130 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-04-07 14:42:28.091324530 +0000 2024-04-07T14:43:02.130 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-04-07 14:42:28.091324530 +0000 2024-04-07T14:43:02.130 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-07T14:43:02.200 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-04-07T14:43:02.201 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-04-07T14:43:02.201 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000203088 s, 2.5 MB/s 2024-04-07T14:43:02.202 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-07T14:43:02.260 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_4 2024-04-07T14:43:02.317 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-07T14:43:02.317 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-07T14:43:02.317 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-04-07T14:43:02.317 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-07T14:43:02.317 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-04-07T14:43:02.317 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-04-07 14:42:54.509622886 +0000 2024-04-07T14:43:02.317 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-04-07 14:42:28.433315447 +0000 2024-04-07T14:43:02.318 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-04-07 14:42:28.433315447 +0000 2024-04-07T14:43:02.318 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-04-07 14:42:28.433315447 +0000 2024-04-07T14:43:02.318 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-07T14:43:02.388 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-04-07T14:43:02.388 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-04-07T14:43:02.388 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000230334 s, 2.2 MB/s 2024-04-07T14:43:02.389 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-07T14:43:02.446 DEBUG:teuthology.orchestra.run.smithi027:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-07T14:43:02.605 INFO:teuthology.orchestra.run.smithi027.stdout:loop 2024-04-07T14:43:02.607 INFO:tasks.nvme_loop:Connecting nvme_loop smithi027:/dev/vg_nvme/lv_1... 2024-04-07T14:43:02.607 DEBUG:teuthology.orchestra.run.smithi027:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-07T14:43:02.652 INFO:teuthology.orchestra.run.smithi027.stdout:1 2024-04-07T14:43:02.699 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/vg_nvme/lv_11 2024-04-07T14:43:02.736 INFO:tasks.nvme_loop:Connecting nvme_loop smithi027:/dev/vg_nvme/lv_2... 2024-04-07T14:43:02.736 DEBUG:teuthology.orchestra.run.smithi027:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-07T14:43:02.796 INFO:teuthology.orchestra.run.smithi027.stdout:1 2024-04-07T14:43:02.846 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/vg_nvme/lv_21 2024-04-07T14:43:02.882 INFO:tasks.nvme_loop:Connecting nvme_loop smithi027:/dev/vg_nvme/lv_3... 2024-04-07T14:43:02.882 DEBUG:teuthology.orchestra.run.smithi027:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-07T14:43:02.930 INFO:teuthology.orchestra.run.smithi027.stdout:1 2024-04-07T14:43:02.980 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/vg_nvme/lv_31 2024-04-07T14:43:03.016 INFO:tasks.nvme_loop:Connecting nvme_loop smithi027:/dev/vg_nvme/lv_4... 2024-04-07T14:43:03.016 DEBUG:teuthology.orchestra.run.smithi027:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-07T14:43:03.065 INFO:teuthology.orchestra.run.smithi027.stdout:1 2024-04-07T14:43:03.114 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/vg_nvme/lv_41 2024-04-07T14:43:03.152 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-07T14:43:03.152 DEBUG:teuthology.orchestra.run.smithi027:> dd if=/scratch_devs of=/dev/stdout 2024-04-07T14:43:03.168 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme list 2024-04-07T14:43:03.238 INFO:teuthology.orchestra.run.smithi027.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-07T14:43:03.239 INFO:teuthology.orchestra.run.smithi027.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-07T14:43:03.239 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/nvme0n1 CVFT5331001C400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-07T14:43:03.239 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/nvme1n1 5e047cc088f72074e8c8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-07T14:43:03.239 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/nvme2n1 f334db583d2d8867ae80 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-07T14:43:03.239 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/nvme3n1 e126a6b067fbaa93627e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-07T14:43:03.239 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/nvme4n1 abd74e1f2b3d8b461b15 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-07T14:43:03.240 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-07T14:43:03.240 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-07T14:43:03.240 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/scratch_devs 2024-04-07T14:43:03.311 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-07T14:43:03.418 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d'} 2024-04-07T14:43:03.418 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:43:03.418 INFO:tasks.cephadm:Cluster fsid is 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:43:03.419 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-07T14:43:03.419 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-07T14:43:03.419 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi016': '172.21.15.16', 'mon.smithi027': '172.21.15.27'} 2024-04-07T14:43:03.419 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-07T14:43:03.419 DEBUG:teuthology.orchestra.run.smithi016:> sudo hostname $(hostname -s) 2024-04-07T14:43:03.452 DEBUG:teuthology.orchestra.run.smithi027:> sudo hostname $(hostname -s) 2024-04-07T14:43:03.484 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-07T14:43:03.484 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:43:03.636 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54784/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2578-ge5c885fe', 'node_name': '172.21.5.36+adami06', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2578.ge5c885fe'}, 'url': 'https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-01 21:29:58.884301', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}, {'status': 'ready', 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54782/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2578-ge5c885fe', 'node_name': '172.21.5.34+adami04', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2578.ge5c885fe'}, 'url': 'https://2.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-01 17:45:20.920598', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-04-07T14:43:03.858 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref main, sha1 e5c885fe95ee982ff7b45214daa61b1a6d09d57d from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:43:03.860 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/x86_64/flavors/default/cephadm 2024-04-07T14:43:03.860 DEBUG:teuthology.orchestra.run.smithi016:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-07T14:43:04.366 INFO:teuthology.orchestra.run.smithi016.stdout:-rw-r--r--. 1 ubuntu ubuntu 781283 Apr 7 14:43 /home/ubuntu/cephtest/cephadm 2024-04-07T14:43:04.367 DEBUG:teuthology.orchestra.run.smithi027:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-07T14:43:04.860 INFO:teuthology.orchestra.run.smithi027.stdout:-rw-r--r--. 1 ubuntu ubuntu 781283 Apr 7 14:43 /home/ubuntu/cephtest/cephadm 2024-04-07T14:43:04.861 DEBUG:teuthology.orchestra.run.smithi016:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-07T14:43:04.879 DEBUG:teuthology.orchestra.run.smithi027:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-07T14:43:04.910 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d on all hosts... 2024-04-07T14:43:04.911 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d pull 2024-04-07T14:43:04.922 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d pull 2024-04-07T14:43:05.757 INFO:teuthology.orchestra.run.smithi016.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T14:43:05.827 INFO:teuthology.orchestra.run.smithi027.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T14:43:35.233 INFO:teuthology.orchestra.run.smithi016.stdout:{ 2024-04-07T14:43:35.233 INFO:teuthology.orchestra.run.smithi016.stdout: "ceph_version": "ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev)", 2024-04-07T14:43:35.233 INFO:teuthology.orchestra.run.smithi016.stdout: "image_id": "fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce", 2024-04-07T14:43:35.233 INFO:teuthology.orchestra.run.smithi016.stdout: "repo_digests": [ 2024-04-07T14:43:35.233 INFO:teuthology.orchestra.run.smithi016.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:72637ed65c3eacb208a01eb8fcf572a65857060627154597bacdb87f092e5fe1" 2024-04-07T14:43:35.234 INFO:teuthology.orchestra.run.smithi016.stdout: ] 2024-04-07T14:43:35.234 INFO:teuthology.orchestra.run.smithi016.stdout:} 2024-04-07T14:43:38.870 INFO:teuthology.orchestra.run.smithi027.stdout:{ 2024-04-07T14:43:38.870 INFO:teuthology.orchestra.run.smithi027.stdout: "ceph_version": "ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev)", 2024-04-07T14:43:38.870 INFO:teuthology.orchestra.run.smithi027.stdout: "image_id": "fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce", 2024-04-07T14:43:38.870 INFO:teuthology.orchestra.run.smithi027.stdout: "repo_digests": [ 2024-04-07T14:43:38.871 INFO:teuthology.orchestra.run.smithi027.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:72637ed65c3eacb208a01eb8fcf572a65857060627154597bacdb87f092e5fe1" 2024-04-07T14:43:38.871 INFO:teuthology.orchestra.run.smithi027.stdout: ] 2024-04-07T14:43:38.871 INFO:teuthology.orchestra.run.smithi027.stdout:} 2024-04-07T14:43:38.895 DEBUG:teuthology.orchestra.run.smithi016:> sudo mkdir -p /etc/ceph 2024-04-07T14:43:38.931 DEBUG:teuthology.orchestra.run.smithi027:> sudo mkdir -p /etc/ceph 2024-04-07T14:43:38.966 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod 777 /etc/ceph 2024-04-07T14:43:39.002 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod 777 /etc/ceph 2024-04-07T14:43:39.038 INFO:tasks.cephadm:Writing seed config... 2024-04-07T14:43:39.039 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-07T14:43:39.039 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-07T14:43:39.040 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-07T14:43:39.040 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-07T14:43:39.040 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-07T14:43:39.040 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-07T14:43:39.040 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-07T14:43:39.040 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-04-07T14:43:39.040 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-07T14:43:39.041 DEBUG:teuthology.orchestra.run.smithi016:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-07T14:43:39.059 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 23726078-f4ed-11ee-b649-cb9ed24678a4 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-04-07T14:43:39.059 DEBUG:teuthology.orchestra.run.smithi016:mon.smithi016> sudo journalctl -f -n 0 -u ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016.service 2024-04-07T14:43:39.102 INFO:tasks.cephadm:Bootstrapping... 2024-04-07T14:43:39.102 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.16 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-07T14:43:39.307 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:43:39.307 INFO:teuthology.orchestra.run.smithi016.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d', '-v', 'bootstrap', '--fsid', '23726078-f4ed-11ee-b649-cb9ed24678a4', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.16', '--skip-admin-label'] 2024-04-07T14:43:39.307 INFO:teuthology.orchestra.run.smithi016.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-07T14:43:39.308 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying podman|docker is present... 2024-04-07T14:43:39.332 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-07T14:43:39.332 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying lvm2 is present... 2024-04-07T14:43:39.332 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying time synchronization is in place... 2024-04-07T14:43:39.339 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-07T14:43:39.339 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-07T14:43:39.344 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-07T14:43:39.344 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-07T14:43:39.351 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout enabled 2024-04-07T14:43:39.357 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout active 2024-04-07T14:43:39.357 INFO:teuthology.orchestra.run.smithi016.stdout:Unit chronyd.service is enabled and running 2024-04-07T14:43:39.357 INFO:teuthology.orchestra.run.smithi016.stdout:Repeating the final host check... 2024-04-07T14:43:39.380 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-07T14:43:39.380 INFO:teuthology.orchestra.run.smithi016.stdout:podman (/bin/podman) version 4.9.4 is present 2024-04-07T14:43:39.380 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl is present 2024-04-07T14:43:39.380 INFO:teuthology.orchestra.run.smithi016.stdout:lvcreate is present 2024-04-07T14:43:39.386 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-07T14:43:39.386 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-07T14:43:39.392 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-07T14:43:39.392 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-07T14:43:39.398 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout enabled 2024-04-07T14:43:39.404 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout active 2024-04-07T14:43:39.404 INFO:teuthology.orchestra.run.smithi016.stdout:Unit chronyd.service is enabled and running 2024-04-07T14:43:39.405 INFO:teuthology.orchestra.run.smithi016.stdout:Host looks OK 2024-04-07T14:43:39.405 INFO:teuthology.orchestra.run.smithi016.stdout:Cluster fsid: 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:43:39.405 INFO:teuthology.orchestra.run.smithi016.stdout:Acquiring lock 139856007957040 on /run/cephadm/23726078-f4ed-11ee-b649-cb9ed24678a4.lock 2024-04-07T14:43:39.405 INFO:teuthology.orchestra.run.smithi016.stdout:Lock 139856007957040 acquired on /run/cephadm/23726078-f4ed-11ee-b649-cb9ed24678a4.lock 2024-04-07T14:43:39.405 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying IP 172.21.15.16 port 3300 ... 2024-04-07T14:43:39.405 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying IP 172.21.15.16 port 6789 ... 2024-04-07T14:43:39.406 INFO:teuthology.orchestra.run.smithi016.stdout:Base mon IP(s) is [172.21.15.16:3300, 172.21.15.16:6789], mon addrv is [v2:172.21.15.16:3300,v1:172.21.15.16:6789] 2024-04-07T14:43:39.408 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.16 metric 100 2024-04-07T14:43:39.408 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.16 metric 100 2024-04-07T14:43:39.411 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-07T14:43:39.411 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 1024 pref medium 2024-04-07T14:43:39.411 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 100 pref medium 2024-04-07T14:43:39.413 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-07T14:43:39.413 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-07T14:43:39.413 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-07T14:43:39.413 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-07T14:43:39.413 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1564/64 scope link noprefixroute 2024-04-07T14:43:39.414 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-07T14:43:39.414 INFO:teuthology.orchestra.run.smithi016.stdout:Mon IP `172.21.15.16` is in CIDR network `172.21.0.0/20` 2024-04-07T14:43:39.414 INFO:teuthology.orchestra.run.smithi016.stdout:Mon IP `172.21.15.16` is in CIDR network `172.21.0.0/20` 2024-04-07T14:43:39.414 INFO:teuthology.orchestra.run.smithi016.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-07T14:43:39.415 INFO:teuthology.orchestra.run.smithi016.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-07T14:43:39.415 INFO:teuthology.orchestra.run.smithi016.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T14:43:40.173 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce 2024-04-07T14:43:40.173 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T14:43:40.173 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Getting image source signatures 2024-04-07T14:43:40.173 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Copying blob sha256:782e6bcadc93519e2d08c343133a0b5af6209f666ea103bfa10c8730b0492c89 2024-04-07T14:43:40.173 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Copying blob sha256:11da15500eca1f826c328eb3265caa30b0a3730510e2a32023084d6fe9cee20c 2024-04-07T14:43:40.173 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Copying config sha256:fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce 2024-04-07T14:43:40.173 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Writing manifest to image destination 2024-04-07T14:43:41.177 INFO:teuthology.orchestra.run.smithi016.stdout:ceph: stdout ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev) 2024-04-07T14:43:41.177 INFO:teuthology.orchestra.run.smithi016.stdout:Ceph version: ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev) 2024-04-07T14:43:41.177 INFO:teuthology.orchestra.run.smithi016.stdout:Extracting ceph user uid/gid from container image... 2024-04-07T14:43:42.058 INFO:teuthology.orchestra.run.smithi016.stdout:stat: stdout 167 167 2024-04-07T14:43:42.058 INFO:teuthology.orchestra.run.smithi016.stdout:Creating initial keys... 2024-04-07T14:43:43.014 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-authtool: stdout AQAesRJmZv6UGhAAn0hksBRYM+PfCNrw0by2Og== 2024-04-07T14:43:44.043 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-authtool: stdout AQAfsRJmcQ54FRAAmE54VqFfO84rYLcik1ObLA== 2024-04-07T14:43:44.949 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-authtool: stdout AQAgsRJmmcNIGRAA9iLIAy28NXJftAuQIJw4Qg== 2024-04-07T14:43:44.950 INFO:teuthology.orchestra.run.smithi016.stdout:Creating initial monmap... 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout:monmaptool for smithi016 [v2:172.21.15.16:3300,v1:172.21.15.16:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout:setting min_mon_release = quincy 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: set fsid to 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:43:51.535 INFO:teuthology.orchestra.run.smithi016.stdout:Creating mon... 2024-04-07T14:43:55.916 INFO:teuthology.orchestra.run.smithi016.stdout:create mon.smithi016 on 2024-04-07T14:43:56.282 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-04-07T14:43:56.449 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target → /etc/systemd/system/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target. 2024-04-07T14:43:56.449 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target → /etc/systemd/system/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target. 2024-04-07T14:43:56.673 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016 2024-04-07T14:43:56.673 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to reset failed state of unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016.service: Unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016.service not loaded. 2024-04-07T14:43:56.902 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target.wants/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016.service → /etc/systemd/system/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@.service. 2024-04-07T14:43:56.954 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:56 smithi016 systemd[1]: Starting Ceph mon.smithi016 for 23726078-f4ed-11ee-b649-cb9ed24678a4... 2024-04-07T14:43:57.211 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:57 smithi016 podman[25257]: 2024-04-07 14:43:57.044737343 +0000 UTC m=+0.017128055 image pull fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:43:57.211 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:57 smithi016 podman[25257]: 2024-04-07 14:43:57.142464814 +0000 UTC m=+0.114855506 container create 73bec2d07f9d967e253e4963d0b0d5903257dd059774e29329076b1151a14adc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, RELEASE=main-e5c885f, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_CLEAN=True, io.buildah.version=1.33.5, ceph=True, GIT_BRANCH=HEAD, org.label-schema.build-date=20240326, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-07T14:43:57.440 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-07T14:43:57.440 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout disabled 2024-04-07T14:43:57.446 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-07T14:43:57.446 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-07T14:43:57.446 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld.service is not enabled 2024-04-07T14:43:57.446 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to enable service . firewalld.service is not available 2024-04-07T14:43:57.447 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mon to start... 2024-04-07T14:43:57.447 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mon... 2024-04-07T14:43:57.571 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:57 smithi016 podman[25257]: 2024-04-07 14:43:57.319826323 +0000 UTC m=+0.292217016 container init 73bec2d07f9d967e253e4963d0b0d5903257dd059774e29329076b1151a14adc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240326, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-e5c885f, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=) 2024-04-07T14:43:57.571 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:57 smithi016 podman[25257]: 2024-04-07 14:43:57.32573501 +0000 UTC m=+0.298125703 container start 73bec2d07f9d967e253e4963d0b0d5903257dd059774e29329076b1151a14adc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, RELEASE=main-e5c885f, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240326, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2) 2024-04-07T14:43:57.571 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:57 smithi016 ceph-mon[25295]: mkfs 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:43:57.571 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:57 smithi016 ceph-mon[25295]: mon.smithi016 is new leader, mons smithi016 in quorum (ranks 0) 2024-04-07T14:43:57.572 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:57 smithi016 bash[25257]: 73bec2d07f9d967e253e4963d0b0d5903257dd059774e29329076b1151a14adc 2024-04-07T14:43:57.572 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:57 smithi016 systemd[1]: Started Ceph mon.smithi016 for 23726078-f4ed-11ee-b649-cb9ed24678a4. 2024-04-07T14:43:58.591 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: mon.smithi016 is new leader, mons smithi016 in quorum (ranks 0) 2024-04-07T14:43:58.591 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: monmap epoch 1 2024-04-07T14:43:58.591 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:43:58.591 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: last_changed 2024-04-07T14:43:45.353479+0000 2024-04-07T14:43:58.591 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: created 2024-04-07T14:43:45.353479+0000 2024-04-07T14:43:58.591 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: min_mon_release 19 (squid) 2024-04-07T14:43:58.591 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: election_strategy: 1 2024-04-07T14:43:58.591 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.smithi016 2024-04-07T14:43:58.591 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: fsmap 2024-04-07T14:43:58.592 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: osdmap e1: 0 total, 0 up, 0 in 2024-04-07T14:43:58.592 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: mgrmap e1: no daemons active 2024-04-07T14:43:58.592 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:58 smithi016 ceph-mon[25295]: from='client.? 172.21.15.16:0/3080071789' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-07T14:43:58.595 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout cluster: 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout id: 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout services: 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi016 (age 0.653296s) 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout data: 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-07T14:43:58.596 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout pgs: 2024-04-07T14:43:58.597 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:43:58.597 INFO:teuthology.orchestra.run.smithi016.stdout:mon is available 2024-04-07T14:43:58.597 INFO:teuthology.orchestra.run.smithi016.stdout:Assimilating anything we can from ceph.conf... 2024-04-07T14:43:59.580 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:59 smithi016 ceph-mon[25295]: from='client.? 172.21.15.16:0/159578705' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-07T14:43:59.581 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:43:59 smithi016 ceph-mon[25295]: from='client.? 172.21.15.16:0/159578705' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-07T14:43:59.851 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:43:59.851 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [global] 2024-04-07T14:43:59.851 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout fsid = 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:43:59.851 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.16:3300,v1:172.21.15.16:6789] 2024-04-07T14:43:59.851 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-07T14:43:59.851 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-07T14:43:59.851 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-07T14:43:59.851 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-07T14:43:59.851 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:43:59.852 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-07T14:43:59.852 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-07T14:43:59.852 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:43:59.852 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [osd] 2024-04-07T14:43:59.852 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-07T14:43:59.852 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-07T14:43:59.852 INFO:teuthology.orchestra.run.smithi016.stdout:Generating new minimal ceph.conf... 2024-04-07T14:44:00.661 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:00 smithi016 ceph-mon[25295]: from='client.? 172.21.15.16:0/1204884298' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-07T14:44:01.415 INFO:teuthology.orchestra.run.smithi016.stdout:Restarting the monitor... 2024-04-07T14:44:01.694 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:01 smithi016 systemd[1]: Stopping Ceph mon.smithi016 for 23726078-f4ed-11ee-b649-cb9ed24678a4... 2024-04-07T14:44:01.961 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:01 smithi016 ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016[25272]: 2024-04-07T14:44:01.694+0000 7fb4f2b23700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi016 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-07T14:44:01.961 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:01 smithi016 ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016[25272]: 2024-04-07T14:44:01.694+0000 7fb4f2b23700 -1 mon.smithi016@0(leader) e1 *** Got Signal Terminated *** 2024-04-07T14:44:01.961 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:01 smithi016 podman[25628]: 2024-04-07 14:44:01.899772553 +0000 UTC m=+0.312284790 container died 73bec2d07f9d967e253e4963d0b0d5903257dd059774e29329076b1151a14adc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, RELEASE=main-e5c885f, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240326, org.label-schema.license=GPLv2, ceph=True, GIT_CLEAN=True) 2024-04-07T14:44:02.432 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:02 smithi016 podman[25628]: 2024-04-07 14:44:02.217263554 +0000 UTC m=+0.629775793 container cleanup 73bec2d07f9d967e253e4963d0b0d5903257dd059774e29329076b1151a14adc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240326, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, RELEASE=main-e5c885f, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-07T14:44:02.433 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:02 smithi016 bash[25628]: ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016 2024-04-07T14:44:02.711 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:02 smithi016 podman[25647]: 2024-04-07 14:44:02.434877595 +0000 UTC m=+0.537963618 container remove 73bec2d07f9d967e253e4963d0b0d5903257dd059774e29329076b1151a14adc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.build-date=20240326, io.buildah.version=1.33.5, GIT_CLEAN=True, RELEASE=main-e5c885f, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS) 2024-04-07T14:44:02.711 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:02 smithi016 systemd[1]: ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016.service: Deactivated successfully. 2024-04-07T14:44:02.711 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:02 smithi016 systemd[1]: Stopped Ceph mon.smithi016 for 23726078-f4ed-11ee-b649-cb9ed24678a4. 2024-04-07T14:44:02.711 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:02 smithi016 systemd[1]: Starting Ceph mon.smithi016 for 23726078-f4ed-11ee-b649-cb9ed24678a4... 2024-04-07T14:44:03.119 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:02 smithi016 podman[25748]: 2024-04-07 14:44:02.754337714 +0000 UTC m=+0.017685262 image pull fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:44:03.119 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:02 smithi016 podman[25748]: 2024-04-07 14:44:02.85236321 +0000 UTC m=+0.115710784 container create 70aeb78084398e399cfe8c55fc7197e28f3851bc79f1c7e219b307ce6ead2bbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-e5c885f, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.build-date=20240326, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, ceph=True) 2024-04-07T14:44:03.119 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 podman[25748]: 2024-04-07 14:44:03.054713815 +0000 UTC m=+0.318061351 container init 70aeb78084398e399cfe8c55fc7197e28f3851bc79f1c7e219b307ce6ead2bbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, org.label-schema.license=GPLv2, RELEASE=main-e5c885f, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, ceph=True, maintainer=Guillaume Abrioux , GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.build-date=20240326, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-07T14:44:03.119 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 podman[25748]: 2024-04-07 14:44:03.060060035 +0000 UTC m=+0.323407572 container start 70aeb78084398e399cfe8c55fc7197e28f3851bc79f1c7e219b307ce6ead2bbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , ceph=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.build-date=20240326, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-e5c885f) 2024-04-07T14:44:03.119 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: set uid:gid to 167:167 (ceph:ceph) 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev), process ceph-mon, pid 7 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: pidfile_write: ignore empty --pid-file 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: load: jerasure load: lrc 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: RocksDB version: 7.9.2 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Git sha 0 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Compile date 2024-04-01 20:25:56 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: DB SUMMARY 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: DB Session ID: H9OIW6OU8CQES9TTQWIW 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: CURRENT file: CURRENT 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: IDENTITY file: IDENTITY 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi016/store.db dir, Total Num: 1, files: 000008.sst 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi016/store.db: 000009.log size: 89369 ; 2024-04-07T14:44:03.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.error_if_exists: 0 2024-04-07T14:44:03.121 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.create_if_missing: 0 2024-04-07T14:44:03.121 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.paranoid_checks: 1 2024-04-07T14:44:03.121 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.flush_verify_memtable_count: 1 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.env: 0x560f90ef3c60 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.fs: PosixFileSystem 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.info_log: 0x560f92ef79a0 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_file_opening_threads: 16 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.statistics: (nil) 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.use_fsync: 0 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_log_file_size: 0 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.log_file_time_to_roll: 0 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.keep_log_file_num: 1000 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.recycle_log_file_num: 0 2024-04-07T14:44:03.122 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.allow_fallocate: 1 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.allow_mmap_reads: 0 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.allow_mmap_writes: 0 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.use_direct_reads: 0 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.create_missing_column_families: 0 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.db_log_dir: 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.wal_dir: 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.table_cache_numshardbits: 6 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.WAL_ttl_seconds: 0 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.WAL_size_limit_MB: 0 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-07T14:44:03.123 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.is_fd_close_on_exec: 1 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.advise_random_on_open: 1 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.db_write_buffer_size: 0 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.write_buffer_manager: 0x560f92ec81e0 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.use_adaptive_mutex: 0 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.rate_limiter: (nil) 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.wal_recovery_mode: 2 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.enable_thread_tracking: 0 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.enable_pipelined_write: 0 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.unordered_write: 0 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-07T14:44:03.124 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.row_cache: None 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.wal_filter: None 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.allow_ingest_behind: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.two_write_queues: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.manual_wal_flush: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.wal_compression: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.atomic_flush: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.persist_stats_to_disk: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.write_dbid_to_manifest: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.log_readahead_size: 0 2024-04-07T14:44:03.125 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.best_efforts_recovery: 0 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.allow_data_in_errors: 0 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.db_host_id: __hostname__ 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.enforce_single_del_contracts: true 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_background_jobs: 2 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_background_compactions: -1 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_subcompactions: 1 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.delayed_write_rate : 16777216 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_total_wal_size: 0 2024-04-07T14:44:03.126 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.stats_dump_period_sec: 600 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.stats_persist_period_sec: 600 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_open_files: -1 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bytes_per_sync: 0 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.wal_bytes_per_sync: 0 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.strict_bytes_per_sync: 0 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_readahead_size: 0 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_background_flushes: -1 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Compression algorithms supported: 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: kZSTD supported: 0 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: kXpressCompression supported: 0 2024-04-07T14:44:03.127 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: kLZ4HCCompression supported: 1 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: kZlibCompression supported: 1 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: kSnappyCompression supported: 1 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: kLZ4Compression supported: 1 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: kBZip2Compression supported: 0 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Fast CRC32 supported: Supported on x86 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: DMutex implementation: pthread_mutex_t 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi016/store.db/MANIFEST-000010 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.merge_operator: 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_filter: None 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_filter_factory: None 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.sst_partitioner_factory: None 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.memtable_factory: SkipListFactory 2024-04-07T14:44:03.128 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.table_factory: BlockBasedTable 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x560f92ef7b60) 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: cache_index_and_filter_blocks: 1 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: pin_top_level_index_and_filter: 1 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: index_type: 0 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: data_block_index_type: 0 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: index_shortening: 1 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: data_block_hash_table_util_ratio: 0.750000 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: checksum: 4 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: no_block_cache: 0 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: block_cache: 0x560f92efb090 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: block_cache_name: BinnedLRUCache 2024-04-07T14:44:03.129 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: block_cache_options: 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: capacity : 536870912 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: num_shard_bits : 4 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: strict_capacity_limit : 0 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: high_pri_pool_ratio: 0.000 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: block_cache_compressed: (nil) 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: persistent_cache: (nil) 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: block_size: 4096 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: block_size_deviation: 10 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: block_restart_interval: 16 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: index_block_restart_interval: 1 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: metadata_block_size: 4096 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: partition_filters: 0 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: use_delta_encoding: 1 2024-04-07T14:44:03.130 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: filter_policy: bloomfilter 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: whole_key_filtering: 1 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: verify_compression: 0 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: read_amp_bytes_per_bit: 0 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: format_version: 5 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: enable_index_compression: 1 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: block_align: 0 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: max_auto_readahead_size: 262144 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: prepopulate_block_cache: 0 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: initial_auto_readahead_size: 8192 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: num_file_reads_for_auto_readahead: 2 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.write_buffer_size: 33554432 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_write_buffer_number: 2 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression: NoCompression 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression: Disabled 2024-04-07T14:44:03.131 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.prefix_extractor: nullptr 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.num_levels: 7 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-07T14:44:03.132 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression_opts.window_bits: -14 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression_opts.level: 32767 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression_opts.strategy: 0 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression_opts.enabled: false 2024-04-07T14:44:03.133 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-07T14:44:03.134 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-07T14:44:03.134 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-07T14:44:03.134 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-07T14:44:03.134 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.target_file_size_base: 67108864 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.target_file_size_multiplier: 1 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-07T14:44:03.135 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.arena_block_size: 1048576 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.disable_auto_compactions: 0 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-07T14:44:03.136 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-07T14:44:03.137 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.inplace_update_support: 0 2024-04-07T14:44:03.137 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.inplace_update_num_locks: 10000 2024-04-07T14:44:03.137 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-07T14:44:03.137 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-07T14:44:03.137 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.memtable_huge_page_size: 0 2024-04-07T14:44:03.137 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.bloom_locality: 0 2024-04-07T14:44:03.137 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.max_successive_merges: 0 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.optimize_filters_for_hits: 0 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.paranoid_file_checks: 0 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.force_consistency_checks: 1 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.report_bg_io_stats: 0 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.ttl: 2592000 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.periodic_compaction_seconds: 0 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.enable_blob_files: false 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.min_blob_size: 0 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.blob_file_size: 268435456 2024-04-07T14:44:03.138 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.blob_compression_type: NoCompression 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.enable_blob_garbage_collection: false 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.blob_file_starting_level: 0 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi016/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 6b54ad49-692d-4393-a3ee-c7a41b21519f 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: EVENT_LOG_v1 {"time_micros": 1712501043089435, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: EVENT_LOG_v1 {"time_micros": 1712501043090735, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 86095, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 256, "table_properties": {"data_size": 84242, "index_size": 237, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10058, "raw_average_key_size": 46, "raw_value_size": 78473, "raw_average_value_size": 364, "num_data_blocks": 11, "num_entries": 215, "num_filter_entries": 215, "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": 1712501043, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "6b54ad49-692d-4393-a3ee-c7a41b21519f", "db_session_id": "H9OIW6OU8CQES9TTQWIW", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-07T14:44:03.139 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: EVENT_LOG_v1 {"time_micros": 1712501043090847, "job": 1, "event": "recovery_finished"} 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi016/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x560f92fea000 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: DB pointer 0x560f92fd4000 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: ** DB Stats ** 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-07T14:44:03.140 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: ** Compaction Stats [default] ** 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: L0 2/0 85.98 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 105.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Sum 2/0 85.98 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 105.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 105.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: ** Compaction Stats [default] ** 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 105.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-07T14:44:03.141 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: AddFile(Keys): cumulative 0, interval 0 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Cumulative compaction: 0.00 GB write, 19.86 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Interval compaction: 0.00 GB write, 19.86 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Block cache BinnedLRUCache@0x560f92efb090#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: ** File Read Latency Histogram By Level [default] ** 2024-04-07T14:44:03.142 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: starting mon.smithi016 rank 0 at public addrs [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] at bind addrs [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi016 fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mon.smithi016@-1(???) e1 preinit fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mon.smithi016@-1(???).mds e1 new map 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mon.smithi016@-1(???).mds e1 print_map 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: e1 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: legacy client fscid: -1 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout: No filesystems configured 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mon.smithi016@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mon.smithi016@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mon.smithi016@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mon.smithi016@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mon.smithi016@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-07T14:44:03.143 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 bash[25748]: 70aeb78084398e399cfe8c55fc7197e28f3851bc79f1c7e219b307ce6ead2bbd 2024-04-07T14:44:03.144 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 systemd[1]: Started Ceph mon.smithi016 for 23726078-f4ed-11ee-b649-cb9ed24678a4. 2024-04-07T14:44:03.144 INFO:teuthology.orchestra.run.smithi016.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-07T14:44:03.461 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mon.smithi016 is new leader, mons smithi016 in quorum (ranks 0) 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: monmap epoch 1 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: last_changed 2024-04-07T14:43:45.353479+0000 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: created 2024-04-07T14:43:45.353479+0000 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: min_mon_release 19 (squid) 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: election_strategy: 1 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.smithi016 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: fsmap 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: osdmap e1: 0 total, 0 up, 0 in 2024-04-07T14:44:03.462 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:03 smithi016 ceph-mon[25786]: mgrmap e1: no daemons active 2024-04-07T14:44:04.170 INFO:teuthology.orchestra.run.smithi016.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-07T14:44:04.191 INFO:teuthology.orchestra.run.smithi016.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-07T14:44:04.191 INFO:teuthology.orchestra.run.smithi016.stdout:Creating mgr... 2024-04-07T14:44:04.192 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-07T14:44:04.194 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-07T14:44:04.194 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying port 0.0.0.0:8443 ... 2024-04-07T14:44:04.440 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mgr.smithi016.upkzsa 2024-04-07T14:44:04.441 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to reset failed state of unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mgr.smithi016.upkzsa.service: Unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mgr.smithi016.upkzsa.service not loaded. 2024-04-07T14:44:04.595 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target.wants/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mgr.smithi016.upkzsa.service → /etc/systemd/system/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@.service. 2024-04-07T14:44:04.941 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:04 smithi016 ceph-mon[25786]: from='client.? 172.21.15.16:0/3463996993' entity='client.admin' 2024-04-07T14:44:05.168 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-07T14:44:05.168 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout disabled 2024-04-07T14:44:05.176 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-07T14:44:05.176 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-07T14:44:05.176 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld.service is not enabled 2024-04-07T14:44:05.176 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to enable service . firewalld.service is not available 2024-04-07T14:44:05.183 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-07T14:44:05.183 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout disabled 2024-04-07T14:44:05.190 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-07T14:44:05.190 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-07T14:44:05.190 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld.service is not enabled 2024-04-07T14:44:05.191 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-04-07T14:44:05.191 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr to start... 2024-04-07T14:44:05.191 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr... 2024-04-07T14:44:06.119 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:05 smithi016 ceph-mon[25786]: from='client.? 172.21.15.16:0/3313314686' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-07T14:44:06.119 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:05 smithi016 ceph-mon[25786]: Activating manager daemon smithi016.upkzsa 2024-04-07T14:44:06.119 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:05 smithi016 ceph-mon[25786]: mgrmap e2: smithi016.upkzsa(active, starting, since 0.0016769s) 2024-04-07T14:44:06.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:05 smithi016 ceph-mon[25786]: from='mgr.14100 172.21.15.16:0/1040131347' entity='mgr.smithi016.upkzsa' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-07T14:44:06.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:05 smithi016 ceph-mon[25786]: from='mgr.14100 172.21.15.16:0/1040131347' entity='mgr.smithi016.upkzsa' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-07T14:44:06.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:05 smithi016 ceph-mon[25786]: from='mgr.14100 172.21.15.16:0/1040131347' entity='mgr.smithi016.upkzsa' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-07T14:44:06.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:05 smithi016 ceph-mon[25786]: from='mgr.14100 172.21.15.16:0/1040131347' entity='mgr.smithi016.upkzsa' cmd=[{"prefix": "mon metadata", "id": "smithi016"}]: dispatch 2024-04-07T14:44:06.120 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:05 smithi016 ceph-mon[25786]: from='mgr.14100 172.21.15.16:0/1040131347' entity='mgr.smithi016.upkzsa' cmd=[{"prefix": "mgr metadata", "who": "smithi016.upkzsa", "id": "smithi016.upkzsa"}]: dispatch 2024-04-07T14:44:06.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:44:06.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-07T14:44:06.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "23726078-f4ed-11ee-b649-cb9ed24678a4", 2024-04-07T14:44:06.400 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "smithi016" 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-07T14:44:06.401 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-07T14:44:06.402 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-07T14:44:06.406 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:06.406 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-07T14:44:06.406 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-07T14:44:06.406 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-07T14:44:06.406 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-07T14:44:06.406 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-07T14:44:06.406 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-07T14:44:06.406 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-07T14:44:06.407 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-07T14:43:57.378491+0000", 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-07T14:44:06.408 INFO:teuthology.orchestra.run.smithi016.stdout:mgr not available, waiting (1/15)... 2024-04-07T14:44:07.211 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:06 smithi016 ceph-mon[25786]: Manager daemon smithi016.upkzsa is now available 2024-04-07T14:44:08.211 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:07 smithi016 ceph-mon[25786]: mgrmap e3: smithi016.upkzsa(active, since 1.02186s) 2024-04-07T14:44:09.209 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:09 smithi016 ceph-mon[25786]: from='client.? 172.21.15.16:0/3824125738' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-07T14:44:09.509 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:44:09.510 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-07T14:44:09.510 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "23726078-f4ed-11ee-b649-cb9ed24678a4", 2024-04-07T14:44:09.510 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-07T14:44:09.510 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-07T14:44:09.511 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-07T14:44:09.514 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-07T14:44:09.514 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:09.514 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-07T14:44:09.514 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "smithi016" 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-07T14:44:09.515 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-07T14:44:09.516 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-07T14:44:09.517 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:09.518 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-07T14:44:09.519 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:44:09.519 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-07T14:43:57.378491+0000", 2024-04-07T14:44:09.519 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T14:44:09.519 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:44:09.519 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-07T14:44:09.519 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-07T14:44:09.519 INFO:teuthology.orchestra.run.smithi016.stdout:mgr is available 2024-04-07T14:44:10.211 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:10 smithi016 ceph-mon[25786]: from='client.? 172.21.15.16:0/2761264635' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [global] 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout fsid = 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-07T14:44:10.580 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-07T14:44:10.581 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [osd] 2024-04-07T14:44:10.581 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-07T14:44:10.581 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-07T14:44:10.581 INFO:teuthology.orchestra.run.smithi016.stdout:Enabling cephadm module... 2024-04-07T14:44:11.473 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:11 smithi016 ceph-mon[25786]: from='client.? 172.21.15.16:0/2913829616' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-07T14:44:11.676 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 2 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -e NODE_NAME=smithi016 -v /var/log/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4:/var/log/ceph:z -v /tmp/ceph-tmpm4vste4q:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpr_p3rq2q:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d mgr module enable cephadm 2024-04-07T14:44:11.676 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stderr Error ENOENT: module 'cephadm' reports that it cannot run on the active manager daemon: No module named 'mgr_module' (pass --force to force enablement) 2024-04-07T14:44:11.677 INFO:teuthology.orchestra.run.smithi016.stderr:RuntimeError: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -e NODE_NAME=smithi016 -v /var/log/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4:/var/log/ceph:z -v /tmp/ceph-tmpm4vste4q:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpr_p3rq2q:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d mgr module enable cephadm: Error ENOENT: module 'cephadm' reports that it cannot run on the active manager daemon: No module named 'mgr_module' (pass --force to force enablement) 2024-04-07T14:44:11.677 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-07T14:44:11.677 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:44:11.677 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:44:11.677 INFO:teuthology.orchestra.run.smithi016.stdout: *************** 2024-04-07T14:44:11.677 INFO:teuthology.orchestra.run.smithi016.stdout: Cephadm hit an issue during cluster installation. Current cluster files will be deleted automatically. 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout: To disable this behaviour you can pass the --no-cleanup-on-failure flag. In case of any previous 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout: broken installation, users must use the following command to completely delete the broken cluster: 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout: > cephadm rm-cluster --force --zap-osds --fsid 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout: for more information please refer to https://docs.ceph.com/en/latest/cephadm/operations/#purging-a-cluster 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout: *************** 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-07T14:44:11.678 INFO:teuthology.orchestra.run.smithi016.stdout:Deleting cluster with fsid: 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:44:11.706 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout 70aeb7808439,18.51MB / 33.27GB 2024-04-07T14:44:11.707 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout 90320bc11ca6,101.6MB / 33.27GB 2024-04-07T14:44:11.735 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout 70aeb7808439,1.33% 2024-04-07T14:44:11.735 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout 90320bc11ca6,12.36% 2024-04-07T14:44:12.093 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:11 smithi016 systemd[1]: Stopping Ceph mon.smithi016 for 23726078-f4ed-11ee-b649-cb9ed24678a4... 2024-04-07T14:44:12.093 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:11 smithi016 ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016[25763]: 2024-04-07T14:44:11.981+0000 7f5ee0f36700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi016 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-07T14:44:12.093 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:11 smithi016 ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016[25763]: 2024-04-07T14:44:11.981+0000 7f5ee0f36700 -1 mon.smithi016@0(leader) e1 *** Got Signal Terminated *** 2024-04-07T14:44:12.378 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:12 smithi016 podman[26500]: 2024-04-07 14:44:12.094826397 +0000 UTC m=+0.199664885 container died 70aeb78084398e399cfe8c55fc7197e28f3851bc79f1c7e219b307ce6ead2bbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.build-date=20240326, RELEASE=main-e5c885f, GIT_BRANCH=HEAD, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-07T14:44:12.711 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:12 smithi016 podman[26500]: 2024-04-07 14:44:12.487273386 +0000 UTC m=+0.592111863 container cleanup 70aeb78084398e399cfe8c55fc7197e28f3851bc79f1c7e219b307ce6ead2bbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, org.label-schema.license=GPLv2, RELEASE=main-e5c885f, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240326, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD) 2024-04-07T14:44:12.711 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:12 smithi016 bash[26500]: ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016 2024-04-07T14:44:13.022 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target.wants/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016.service". 2024-04-07T14:44:13.029 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 5 from systemctl stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mon.smithi016.service 2024-04-07T14:44:13.030 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mon.smithi016.service: Unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mon.smithi016.service not loaded. 2024-04-07T14:44:13.036 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mon.smithi016.service 2024-04-07T14:44:13.036 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to reset failed state of unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mon.smithi016.service: Unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mon.smithi016.service not loaded. 2024-04-07T14:44:13.042 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl disable ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mon.smithi016.service 2024-04-07T14:44:13.042 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mon.smithi016.service does not exist. 2024-04-07T14:44:13.060 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:12 smithi016 podman[26519]: 2024-04-07 14:44:12.713499517 +0000 UTC m=+0.622035266 container remove 70aeb78084398e399cfe8c55fc7197e28f3851bc79f1c7e219b307ce6ead2bbd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-mon-smithi016, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240326, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.vendor=CentOS, RELEASE=main-e5c885f, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, ceph=True, GIT_BRANCH=HEAD) 2024-04-07T14:44:13.060 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:12 smithi016 systemd[1]: ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016.service: Deactivated successfully. 2024-04-07T14:44:13.061 INFO:journalctl@ceph.mon.smithi016.smithi016.stdout:Apr 07 14:44:12 smithi016 systemd[1]: Stopped Ceph mon.smithi016 for 23726078-f4ed-11ee-b649-cb9ed24678a4. 2024-04-07T14:44:14.250 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target.wants/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mgr.smithi016.upkzsa.service". 2024-04-07T14:44:14.257 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 5 from systemctl stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mgr.smithi016.upkzsa.service 2024-04-07T14:44:14.257 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mgr.smithi016.upkzsa.service: Unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mgr.smithi016.upkzsa.service not loaded. 2024-04-07T14:44:14.262 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mgr.smithi016.upkzsa.service 2024-04-07T14:44:14.263 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to reset failed state of unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mgr.smithi016.upkzsa.service: Unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mgr.smithi016.upkzsa.service not loaded. 2024-04-07T14:44:14.268 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl disable ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mgr.smithi016.upkzsa.service 2024-04-07T14:44:14.268 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-23726078-f4ed-11ee-b649-cb9ed24678a4-init@mgr.smithi016.upkzsa.service does not exist. 2024-04-07T14:44:14.527 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target". 2024-04-07T14:44:14.528 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph.target.wants/ceph-23726078-f4ed-11ee-b649-cb9ed24678a4.target". 2024-04-07T14:44:14.700 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-04-07T14:44:14.701 INFO:teuthology.orchestra.run.smithi016.stderr:Traceback (most recent call last): 2024-04-07T14:44:14.701 INFO:teuthology.orchestra.run.smithi016.stderr: File "/usr/lib64/python3.9/runpy.py", line 197, in _run_module_as_main 2024-04-07T14:44:14.715 INFO:teuthology.orchestra.run.smithi016.stderr: return _run_code(code, main_globals, None, 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/usr/lib64/python3.9/runpy.py", line 87, in _run_code 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: exec(code, run_globals) 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 5608, in 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 5596, in main 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2693, in _rollback 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 445, in _default_image 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2925, in command_bootstrap 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2387, in enable_cephadm_mgr_module 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2854, in cli 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/cephadmlib/container_types.py", line 429, in run 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr:RuntimeError: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -e NODE_NAME=smithi016 -v /var/log/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4:/var/log/ceph:z -v /tmp/ceph-tmpm4vste4q:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpr_p3rq2q:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d mgr module enable cephadm: Error ENOENT: module 'cephadm' reports that it cannot run on the active manager daemon: No module named 'mgr_module' (pass --force to force enablement) 2024-04-07T14:44:14.716 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-07T14:44:14.738 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:14.739 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-07T14:44:14.739 DEBUG:teuthology.orchestra.run.smithi016:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-07T14:44:14.754 DEBUG:teuthology.orchestra.run.smithi027:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-07T14:44:14.777 INFO:tasks.cephadm:Stopping all daemons... 2024-04-07T14:44:14.777 INFO:tasks.cephadm.mon.smithi016:Stopping mon.smithi016... 2024-04-07T14:44:14.778 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016 2024-04-07T14:44:14.827 INFO:teuthology.orchestra.run.smithi016.stderr:Failed to stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016.service: Unit ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016.service not loaded. 2024-04-07T14:44:14.828 DEBUG:teuthology.orchestra.run:got remote process result: 5 2024-04-07T14:44:14.829 ERROR:tasks.cephadm:Failed to stop "ceph.mon.smithi016" Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 770, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi016 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.16 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 857, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/daemon/cephadmunit.py", line 154, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi016 with status 5: 'sudo systemctl stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016' 2024-04-07T14:44:14.831 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 770, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi016 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.16 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 857, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/daemon/cephadmunit.py", line 154, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi016 with status 5: 'sudo systemctl stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016' 2024-04-07T14:44:14.832 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-07T14:44:14.833 DEBUG:teuthology.misc:Transferring archived files from smithi016:/var/lib/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217/remote/smithi016/crash 2024-04-07T14:44:14.835 DEBUG:teuthology.orchestra.run.smithi016:> sudo tar c -f - -C /var/lib/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4/crash -- . 2024-04-07T14:44:14.904 INFO:teuthology.orchestra.run.smithi016.stderr:tar: /var/lib/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-07T14:44:14.905 INFO:teuthology.orchestra.run.smithi016.stderr:tar: Error is not recoverable: exiting now 2024-04-07T14:44:14.906 DEBUG:teuthology.misc:Transferring archived files from smithi027:/var/lib/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217/remote/smithi027/crash 2024-04-07T14:44:14.907 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /var/lib/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4/crash -- . 2024-04-07T14:44:15.004 INFO:teuthology.orchestra.run.smithi027.stderr:tar: /var/lib/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-07T14:44:15.004 INFO:teuthology.orchestra.run.smithi027.stderr:tar: Error is not recoverable: exiting now 2024-04-07T14:44:15.005 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-07T14:44:15.005 DEBUG:teuthology.orchestra.run.smithi016:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-07T14:44:15.042 INFO:teuthology.orchestra.run.smithi016.stderr:grep: /var/log/ceph/23726078-f4ed-11ee-b649-cb9ed24678a4/ceph.log: No such file or directory 2024-04-07T14:44:15.043 INFO:tasks.cephadm:Compressing logs... 2024-04-07T14:44:15.044 DEBUG:teuthology.orchestra.run.smithi016:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-07T14:44:15.086 DEBUG:teuthology.orchestra.run.smithi027:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-07T14:44:15.109 INFO:teuthology.orchestra.run.smithi016.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-04-07T14:44:15.111 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-07T14:44:15.111 INFO:teuthology.orchestra.run.smithi016.stderr:real 0m0.015s 2024-04-07T14:44:15.111 INFO:teuthology.orchestra.run.smithi016.stderr:user 0m0.012s 2024-04-07T14:44:15.112 INFO:teuthology.orchestra.run.smithi016.stderr:sys 0m0.015s 2024-04-07T14:44:15.121 INFO:teuthology.orchestra.run.smithi027.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-07T14:44:15.121 INFO:teuthology.orchestra.run.smithi027.stderr:: No such file or directory 2024-04-07T14:44:15.121 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/cephadm.log: 56.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-07T14:44:15.123 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-07T14:44:15.123 INFO:teuthology.orchestra.run.smithi027.stderr:real 0m0.020s 2024-04-07T14:44:15.123 INFO:teuthology.orchestra.run.smithi027.stderr:user 0m0.023s 2024-04-07T14:44:15.123 INFO:teuthology.orchestra.run.smithi027.stderr:sys 0m0.015s 2024-04-07T14:44:15.124 INFO:tasks.cephadm:Archiving logs... 2024-04-07T14:44:15.124 DEBUG:teuthology.misc:Transferring archived files from smithi016:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217/remote/smithi016/log 2024-04-07T14:44:15.127 DEBUG:teuthology.orchestra.run.smithi016:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-07T14:44:15.177 DEBUG:teuthology.misc:Transferring archived files from smithi027:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217/remote/smithi027/log 2024-04-07T14:44:15.178 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-07T14:44:15.214 INFO:tasks.cephadm:Removing cluster... 2024-04-07T14:44:15.214 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 --force 2024-04-07T14:44:15.403 INFO:teuthology.orchestra.run.smithi016.stdout:Deleting cluster with fsid: 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:44:15.514 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 --force 2024-04-07T14:44:15.717 INFO:teuthology.orchestra.run.smithi027.stdout:Deleting cluster with fsid: 23726078-f4ed-11ee-b649-cb9ed24678a4 2024-04-07T14:44:15.833 INFO:tasks.cephadm:Removing cephadm ... 2024-04-07T14:44:15.834 DEBUG:teuthology.orchestra.run.smithi016:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-07T14:44:15.849 DEBUG:teuthology.orchestra.run.smithi027:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-07T14:44:15.864 INFO:tasks.cephadm:Teardown complete 2024-04-07T14:44:15.865 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 770, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi016 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.16 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 2194, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 1823, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 857, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/daemon/cephadmunit.py", line 154, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi016 with status 5: 'sudo systemctl stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016' 2024-04-07T14:44:16.096 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=d03cfa3e0e1a49ab84aa5f779a6de1e3 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 770, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi016 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 23726078-f4ed-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.16 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 2194, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 1823, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 857, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/daemon/cephadmunit.py", line 154, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi016 with status 5: 'sudo systemctl stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016' 2024-04-07T14:44:16.100 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-07T14:44:16.111 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-07T14:44:16.128 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi016:/dev/vg_nvme/lv_1... 2024-04-07T14:44:16.129 DEBUG:teuthology.orchestra.run.smithi016:> sudo nvme disconnect -n lv_1 2024-04-07T14:44:16.274 INFO:teuthology.orchestra.run.smithi016.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-07T14:44:16.275 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:16.276 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi016:/dev/vg_nvme/lv_2... 2024-04-07T14:44:16.276 DEBUG:teuthology.orchestra.run.smithi016:> sudo nvme disconnect -n lv_2 2024-04-07T14:44:16.418 INFO:teuthology.orchestra.run.smithi016.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-07T14:44:16.419 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:16.420 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi016:/dev/vg_nvme/lv_3... 2024-04-07T14:44:16.420 DEBUG:teuthology.orchestra.run.smithi016:> sudo nvme disconnect -n lv_3 2024-04-07T14:44:16.554 INFO:teuthology.orchestra.run.smithi016.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-07T14:44:16.555 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:16.556 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi016:/dev/vg_nvme/lv_4... 2024-04-07T14:44:16.556 DEBUG:teuthology.orchestra.run.smithi016:> sudo nvme disconnect -n lv_4 2024-04-07T14:44:16.690 INFO:teuthology.orchestra.run.smithi016.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-07T14:44:16.691 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:16.692 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-07T14:44:16.692 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/scratch_devs 2024-04-07T14:44:16.720 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi027:/dev/vg_nvme/lv_1... 2024-04-07T14:44:16.720 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme disconnect -n lv_1 2024-04-07T14:44:16.856 INFO:teuthology.orchestra.run.smithi027.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-07T14:44:16.858 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:16.858 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi027:/dev/vg_nvme/lv_2... 2024-04-07T14:44:16.859 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme disconnect -n lv_2 2024-04-07T14:44:17.009 INFO:teuthology.orchestra.run.smithi027.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-07T14:44:17.011 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:17.011 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi027:/dev/vg_nvme/lv_3... 2024-04-07T14:44:17.011 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme disconnect -n lv_3 2024-04-07T14:44:17.178 INFO:teuthology.orchestra.run.smithi027.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-07T14:44:17.179 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:17.180 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi027:/dev/vg_nvme/lv_4... 2024-04-07T14:44:17.180 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme disconnect -n lv_4 2024-04-07T14:44:17.346 INFO:teuthology.orchestra.run.smithi027.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-07T14:44:17.347 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:17.348 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-07T14:44:17.348 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/scratch_devs 2024-04-07T14:44:17.379 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-07T14:44:17.389 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-07T14:44:17.390 DEBUG:teuthology.orchestra.run.smithi016:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T14:44:17.393 DEBUG:teuthology.orchestra.run.smithi027:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T14:44:17.407 INFO:teuthology.orchestra.run.smithi016.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:44:17.411 INFO:teuthology.orchestra.run.smithi016.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:44:17.411 INFO:teuthology.orchestra.run.smithi016.stdout:=============================================================================== 2024-04-07T14:44:17.411 INFO:teuthology.orchestra.run.smithi016.stdout:^+ hv01.front.sepia.ceph.com 2 6 37 10 -727us[ -727us] +/- 77ms 2024-04-07T14:44:17.411 INFO:teuthology.orchestra.run.smithi016.stdout:^+ hv02.front.sepia.ceph.com 3 6 37 10 -31us[ -31us] +/- 77ms 2024-04-07T14:44:17.411 INFO:teuthology.orchestra.run.smithi016.stdout:^* hv03.front.sepia.ceph.com 3 6 37 10 +533us[ +558us] +/- 62ms 2024-04-07T14:44:17.412 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:44:17.433 INFO:teuthology.orchestra.run.smithi027.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:44:17.438 INFO:teuthology.orchestra.run.smithi027.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:44:17.439 INFO:teuthology.orchestra.run.smithi027.stdout:=============================================================================== 2024-04-07T14:44:17.439 INFO:teuthology.orchestra.run.smithi027.stdout:^+ hv01.front.sepia.ceph.com 2 6 37 10 -669us[ -698us] +/- 77ms 2024-04-07T14:44:17.439 INFO:teuthology.orchestra.run.smithi027.stdout:^+ hv02.front.sepia.ceph.com 3 6 37 10 +34us[ +34us] +/- 77ms 2024-04-07T14:44:17.439 INFO:teuthology.orchestra.run.smithi027.stdout:^* hv03.front.sepia.ceph.com 3 6 37 10 +589us[ +559us] +/- 62ms 2024-04-07T14:44:17.439 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:44:17.439 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-07T14:44:17.449 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-07T14:44:17.449 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-07T14:44:17.458 DEBUG:teuthology.orchestra.run.smithi016:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-07T14:44:17.529 DEBUG:teuthology.orchestra.run.smithi027:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-07T14:44:17.599 DEBUG:teuthology.orchestra.run.smithi016:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-07T14:44:17.631 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:17.632 DEBUG:teuthology.orchestra.run.smithi027:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-07T14:44:17.665 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:17.666 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-07T14:44:17.680 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-07T14:44:17.688 INFO:teuthology.task.internal:Duration was 348.759821 seconds 2024-04-07T14:44:17.688 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-07T14:44:17.697 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-07T14:44:17.697 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-07T14:44:17.699 DEBUG:teuthology.orchestra.run.smithi027:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-07T14:44:17.745 INFO:teuthology.orchestra.run.smithi016.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:44:17.760 INFO:teuthology.orchestra.run.smithi027.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:44:18.250 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-07T14:44:18.250 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi016.front.sepia.ceph.com 2024-04-07T14:44:18.250 DEBUG:teuthology.orchestra.run.smithi016:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-07T14:44:18.273 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi027.front.sepia.ceph.com 2024-04-07T14:44:18.273 DEBUG:teuthology.orchestra.run.smithi027:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-07T14:44:18.302 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-07T14:44:18.303 DEBUG:teuthology.orchestra.run.smithi016:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-07T14:44:18.316 DEBUG:teuthology.orchestra.run.smithi027:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-07T14:44:18.375 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-07T14:44:18.375 DEBUG:teuthology.orchestra.run.smithi016:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-07T14:44:18.387 DEBUG:teuthology.orchestra.run.smithi027:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-07T14:44:18.512 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-07T14:44:18.523 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-07T14:44:18.523 DEBUG:teuthology.orchestra.run.smithi016:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-07T14:44:18.550 DEBUG:teuthology.orchestra.run.smithi027:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-07T14:44:18.581 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-07T14:44:18.590 DEBUG:teuthology.orchestra.run.smithi016:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-07T14:44:18.592 DEBUG:teuthology.orchestra.run.smithi027:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-07T14:44:18.615 INFO:teuthology.orchestra.run.smithi016.stdout:kernel.core_pattern = core 2024-04-07T14:44:18.651 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern = core 2024-04-07T14:44:18.682 DEBUG:teuthology.orchestra.run.smithi016:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-07T14:44:18.696 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:18.697 DEBUG:teuthology.orchestra.run.smithi027:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-07T14:44:18.737 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:44:18.737 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-07T14:44:18.749 INFO:teuthology.task.internal:Transferring archived files... 2024-04-07T14:44:18.750 DEBUG:teuthology.misc:Transferring archived files from smithi016:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217/remote/smithi016 2024-04-07T14:44:18.750 DEBUG:teuthology.orchestra.run.smithi016:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-07T14:44:18.787 DEBUG:teuthology.misc:Transferring archived files from smithi027:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217/remote/smithi027 2024-04-07T14:44:18.787 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-07T14:44:18.826 INFO:teuthology.task.internal:Removing archive directory... 2024-04-07T14:44:18.827 DEBUG:teuthology.orchestra.run.smithi016:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-07T14:44:18.829 DEBUG:teuthology.orchestra.run.smithi027:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-07T14:44:18.877 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-07T14:44:18.889 INFO:teuthology.task.internal:Not uploading archives. 2024-04-07T14:44:18.889 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-07T14:44:18.898 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-07T14:44:18.899 DEBUG:teuthology.orchestra.run.smithi016:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-07T14:44:18.901 DEBUG:teuthology.orchestra.run.smithi027:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-07T14:44:18.912 INFO:teuthology.orchestra.run.smithi016.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 7 14:44 /home/ubuntu/cephtest 2024-04-07T14:44:18.931 INFO:teuthology.orchestra.run.smithi027.stdout: 265306 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 7 14:44 /home/ubuntu/cephtest 2024-04-07T14:44:18.933 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-07T14:44:18.947 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-07T14:44:18.989 INFO:teuthology.nuke:Checking targets against current locks 2024-04-07T14:44:19.017 DEBUG:teuthology.nuke:shortname: smithi016 2024-04-07T14:44:19.017 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T14:44:19.044 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi016.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-07 14:28:16.522803', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBB/8sUFtc1ceNa7cd3EXvcHPHuu37jzyoxT7FtNwT3BfTM/7SzwMXxxsxEqw+9ew5JvTJfjdEe5HX6qQ8TAAnoI='} 2024-04-07T14:44:19.048 DEBUG:teuthology.nuke:shortname: smithi027 2024-04-07T14:44:19.048 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T14:44:19.068 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi027.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634217', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-07 14:28:16.524270', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJJTP/1IkU7C4I9h7baElYWvdIgEfpU6wZUE/tsOi/keezDCa/+pZBNt2C62mHB0SdnbOKrTUY18oUiR3SuMW3w='} 2024-04-07T14:44:19.101 INFO:teuthology.orchestra.console.smithi016:Power off 2024-04-07T14:44:19.101 DEBUG:teuthology.orchestra.console.smithi016:pexpect command: ipmitool -H smithi016.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-07T14:44:19.129 DEBUG:teuthology.orchestra.console.smithi016:power off output: Chassis Power Control: Down/Off 2024-04-07T14:44:19.130 DEBUG:teuthology.orchestra.console.smithi016:pexpect command: ipmitool -H smithi016.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:44:19.153 INFO:teuthology.orchestra.console.smithi027:Power off 2024-04-07T14:44:19.154 DEBUG:teuthology.orchestra.console.smithi027:pexpect command: ipmitool -H smithi027.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-07T14:44:19.165 DEBUG:teuthology.orchestra.console.smithi016:check power output: Chassis Power is on 2024-04-07T14:44:19.179 DEBUG:teuthology.orchestra.console.smithi027:power off output: Chassis Power Control: Down/Off 2024-04-07T14:44:19.179 DEBUG:teuthology.orchestra.console.smithi027:pexpect command: ipmitool -H smithi027.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:44:19.213 DEBUG:teuthology.orchestra.console.smithi027:check power output: Chassis Power is on 2024-04-07T14:44:23.166 DEBUG:teuthology.orchestra.console.smithi016:pexpect command: ipmitool -H smithi016.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:44:23.214 DEBUG:teuthology.orchestra.console.smithi027:pexpect command: ipmitool -H smithi027.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:44:23.277 DEBUG:teuthology.orchestra.console.smithi016:check power output: Chassis Power is on 2024-04-07T14:44:23.324 DEBUG:teuthology.orchestra.console.smithi027:check power output: Chassis Power is on 2024-04-07T14:44:27.282 DEBUG:teuthology.orchestra.console.smithi016:pexpect command: ipmitool -H smithi016.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:44:27.325 DEBUG:teuthology.orchestra.console.smithi027:pexpect command: ipmitool -H smithi027.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:44:27.395 DEBUG:teuthology.orchestra.console.smithi016:check power output: Chassis Power is off 2024-04-07T14:44:27.438 DEBUG:teuthology.orchestra.console.smithi027:check power output: Chassis Power is off 2024-04-07T14:44:27.497 INFO:teuthology.orchestra.console.smithi016:Power off completed 2024-04-07T14:44:27.539 INFO:teuthology.orchestra.console.smithi027:Power off completed 2024-04-07T14:44:27.646 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 348.7598206996918 failure_reason: 'Command failed on smithi016 with status 5: ''sudo systemctl stop ceph-23726078-f4ed-11ee-b649-cb9ed24678a4@mon.smithi016''' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=d03cfa3e0e1a49ab84aa5f779a6de1e3 status: fail success: false 2024-04-07T14:44:27.647 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-07T14:44:27.735 INFO:teuthology.run:FAIL