2024-09-13T05:10:27.284 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-13T05:10:27.301 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-13T05:10:27.386 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114 branch: wip-guits-main-2024-09-12-1245 description: orch:cephadm/workunits/{0-distro/centos_9.stream agent/on mon_election/connectivity task/test_host_drain} email: gabrioux@ibm.com first_in_suite: false job_id: '7903114' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-guits-main-2024-09-12-1245 ceph: conf: global: mon election default strategy: 3 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: wip-guits-main-2024-09-12-1245 sha1: 9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 owner: scheduled_gabrioux@teuthology priority: 70 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 1848 sha1: 9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: wip-guits-main-2024-09-12-1245 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: 9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 targets: smithi145.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAwwSj4EpuwAhcBl5ErXb5kIAuXGti9fhNqGemwIdtJuiMT+wDuEpnKEAi26bYQDKISpKGXtIn+3eauwblRvZMo= smithi151.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEF8tx+/8TZpem9hNslbTTOFPqJoSX3gu5CkWBMhj3PWcefJlC1Sw7TcCzbmlGeBUi7Jd4bXh5zVZ8L4z35yfaE= smithi153.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMEE0UA7RUh1gS7gq3MbtDWNVpdEdEfGE3+lqMQxiyXOTvcygkASPIA0gICXygj7uBuuR9WALbPhiQ4AsyS/yww= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-13_05:00:55 tube: smithi user: gabrioux verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-13T05:10:27.386 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa; will attempt to use it 2024-09-13T05:10:27.387 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa/tasks 2024-09-13T05:10:27.387 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-13T05:10:27.389 INFO:teuthology.task.internal:Checking packages... 2024-09-13T05:10:27.412 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3' 2024-09-13T05:10:27.412 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-13T05:10:27.412 INFO:teuthology.packaging:ref: None 2024-09-13T05:10:27.412 INFO:teuthology.packaging:tag: None 2024-09-13T05:10:27.412 INFO:teuthology.packaging:branch: wip-guits-main-2024-09-12-1245 2024-09-13T05:10:27.412 INFO:teuthology.packaging:sha1: 9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:10:27.413 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-guits-main-2024-09-12-1245 2024-09-13T05:10:27.568 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4911.g9d608eb1 2024-09-13T05:10:27.570 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-13T05:10:27.578 INFO:teuthology.task.internal:no buildpackages task found 2024-09-13T05:10:27.578 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-13T05:10:27.595 INFO:teuthology.task.internal:Saving configuration 2024-09-13T05:10:27.609 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-13T05:10:27.615 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-13T05:10:27.646 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi145.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-13 05:05:12.772471', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAwwSj4EpuwAhcBl5ErXb5kIAuXGti9fhNqGemwIdtJuiMT+wDuEpnKEAi26bYQDKISpKGXtIn+3eauwblRvZMo='} 2024-09-13T05:10:27.672 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi151.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-13 05:05:12.771366', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEF8tx+/8TZpem9hNslbTTOFPqJoSX3gu5CkWBMhj3PWcefJlC1Sw7TcCzbmlGeBUi7Jd4bXh5zVZ8L4z35yfaE='} 2024-09-13T05:10:27.698 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi153.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-13 05:05:12.770029', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMEE0UA7RUh1gS7gq3MbtDWNVpdEdEfGE3+lqMQxiyXOTvcygkASPIA0gICXygj7uBuuR9WALbPhiQ4AsyS/yww='} 2024-09-13T05:10:27.699 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-13T05:10:27.707 INFO:teuthology.task.internal:roles: ubuntu@smithi145.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-13T05:10:27.707 INFO:teuthology.task.internal:roles: ubuntu@smithi151.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-13T05:10:27.707 INFO:teuthology.task.internal:roles: ubuntu@smithi153.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-13T05:10:27.707 INFO:teuthology.run_tasks:Running task console_log... 2024-09-13T05:10:27.808 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f12f1473be0>, signals=[15]) 2024-09-13T05:10:27.808 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-13T05:10:27.815 INFO:teuthology.task.internal:Opening connections... 2024-09-13T05:10:27.815 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi145.front.sepia.ceph.com 2024-09-13T05:10:27.817 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:10:27.903 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi151.front.sepia.ceph.com 2024-09-13T05:10:27.904 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:10:27.987 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi153.front.sepia.ceph.com 2024-09-13T05:10:27.987 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi153.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:10:28.074 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-13T05:10:28.080 DEBUG:teuthology.orchestra.run.smithi145:> uname -m 2024-09-13T05:10:28.099 INFO:teuthology.orchestra.run.smithi145.stdout:x86_64 2024-09-13T05:10:28.099 DEBUG:teuthology.orchestra.run.smithi145:> cat /etc/os-release 2024-09-13T05:10:28.157 INFO:teuthology.orchestra.run.smithi145.stdout:NAME="CentOS Stream" 2024-09-13T05:10:28.157 INFO:teuthology.orchestra.run.smithi145.stdout:VERSION="9" 2024-09-13T05:10:28.157 INFO:teuthology.orchestra.run.smithi145.stdout:ID="centos" 2024-09-13T05:10:28.157 INFO:teuthology.orchestra.run.smithi145.stdout:ID_LIKE="rhel fedora" 2024-09-13T05:10:28.157 INFO:teuthology.orchestra.run.smithi145.stdout:VERSION_ID="9" 2024-09-13T05:10:28.158 INFO:teuthology.orchestra.run.smithi145.stdout:PLATFORM_ID="platform:el9" 2024-09-13T05:10:28.158 INFO:teuthology.orchestra.run.smithi145.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-13T05:10:28.158 INFO:teuthology.orchestra.run.smithi145.stdout:ANSI_COLOR="0;31" 2024-09-13T05:10:28.158 INFO:teuthology.orchestra.run.smithi145.stdout:LOGO="fedora-logo-icon" 2024-09-13T05:10:28.158 INFO:teuthology.orchestra.run.smithi145.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-13T05:10:28.158 INFO:teuthology.orchestra.run.smithi145.stdout:HOME_URL="https://centos.org/" 2024-09-13T05:10:28.158 INFO:teuthology.orchestra.run.smithi145.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-13T05:10:28.158 INFO:teuthology.orchestra.run.smithi145.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-13T05:10:28.158 INFO:teuthology.orchestra.run.smithi145.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-13T05:10:28.159 INFO:teuthology.lock.ops:Updating smithi145.front.sepia.ceph.com on lock server 2024-09-13T05:10:28.189 DEBUG:teuthology.orchestra.run.smithi151:> uname -m 2024-09-13T05:10:28.208 INFO:teuthology.orchestra.run.smithi151.stdout:x86_64 2024-09-13T05:10:28.208 DEBUG:teuthology.orchestra.run.smithi151:> cat /etc/os-release 2024-09-13T05:10:28.265 INFO:teuthology.orchestra.run.smithi151.stdout:NAME="CentOS Stream" 2024-09-13T05:10:28.265 INFO:teuthology.orchestra.run.smithi151.stdout:VERSION="9" 2024-09-13T05:10:28.265 INFO:teuthology.orchestra.run.smithi151.stdout:ID="centos" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:ID_LIKE="rhel fedora" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:VERSION_ID="9" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:PLATFORM_ID="platform:el9" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:ANSI_COLOR="0;31" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:LOGO="fedora-logo-icon" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:HOME_URL="https://centos.org/" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-13T05:10:28.266 INFO:teuthology.orchestra.run.smithi151.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-13T05:10:28.267 INFO:teuthology.lock.ops:Updating smithi151.front.sepia.ceph.com on lock server 2024-09-13T05:10:28.298 DEBUG:teuthology.orchestra.run.smithi153:> uname -m 2024-09-13T05:10:28.317 INFO:teuthology.orchestra.run.smithi153.stdout:x86_64 2024-09-13T05:10:28.317 DEBUG:teuthology.orchestra.run.smithi153:> cat /etc/os-release 2024-09-13T05:10:28.375 INFO:teuthology.orchestra.run.smithi153.stdout:NAME="CentOS Stream" 2024-09-13T05:10:28.375 INFO:teuthology.orchestra.run.smithi153.stdout:VERSION="9" 2024-09-13T05:10:28.375 INFO:teuthology.orchestra.run.smithi153.stdout:ID="centos" 2024-09-13T05:10:28.375 INFO:teuthology.orchestra.run.smithi153.stdout:ID_LIKE="rhel fedora" 2024-09-13T05:10:28.375 INFO:teuthology.orchestra.run.smithi153.stdout:VERSION_ID="9" 2024-09-13T05:10:28.376 INFO:teuthology.orchestra.run.smithi153.stdout:PLATFORM_ID="platform:el9" 2024-09-13T05:10:28.376 INFO:teuthology.orchestra.run.smithi153.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-13T05:10:28.376 INFO:teuthology.orchestra.run.smithi153.stdout:ANSI_COLOR="0;31" 2024-09-13T05:10:28.376 INFO:teuthology.orchestra.run.smithi153.stdout:LOGO="fedora-logo-icon" 2024-09-13T05:10:28.376 INFO:teuthology.orchestra.run.smithi153.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-13T05:10:28.376 INFO:teuthology.orchestra.run.smithi153.stdout:HOME_URL="https://centos.org/" 2024-09-13T05:10:28.376 INFO:teuthology.orchestra.run.smithi153.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-13T05:10:28.376 INFO:teuthology.orchestra.run.smithi153.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-13T05:10:28.376 INFO:teuthology.orchestra.run.smithi153.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-13T05:10:28.377 INFO:teuthology.lock.ops:Updating smithi153.front.sepia.ceph.com on lock server 2024-09-13T05:10:28.406 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-13T05:10:28.416 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-13T05:10:28.424 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-13T05:10:28.424 DEBUG:teuthology.orchestra.run.smithi145:> test '!' -e /home/ubuntu/cephtest 2024-09-13T05:10:28.427 DEBUG:teuthology.orchestra.run.smithi151:> test '!' -e /home/ubuntu/cephtest 2024-09-13T05:10:28.429 DEBUG:teuthology.orchestra.run.smithi153:> test '!' -e /home/ubuntu/cephtest 2024-09-13T05:10:28.446 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-13T05:10:28.453 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-13T05:10:28.453 DEBUG:teuthology.orchestra.run.smithi145:> test -z $(ls -A /var/lib/ceph) 2024-09-13T05:10:28.486 DEBUG:teuthology.orchestra.run.smithi151:> test -z $(ls -A /var/lib/ceph) 2024-09-13T05:10:28.489 DEBUG:teuthology.orchestra.run.smithi153:> test -z $(ls -A /var/lib/ceph) 2024-09-13T05:10:28.530 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-13T05:10:28.629 INFO:teuthology.run_tasks:Running task kernel... 2024-09-13T05:10:28.645 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-13T05:10:28.645 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-13T05:10:28.645 DEBUG:teuthology.orchestra.run.smithi145:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-13T05:10:28.646 DEBUG:teuthology.orchestra.run.smithi151:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-13T05:10:28.646 DEBUG:teuthology.orchestra.run.smithi153:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-13T05:10:28.663 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:10:28.664 DEBUG:teuthology.orchestra.run.smithi151:> uname -r 2024-09-13T05:10:28.666 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:10:28.666 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:10:28.666 DEBUG:teuthology.orchestra.run.smithi153:> uname -r 2024-09-13T05:10:28.667 DEBUG:teuthology.orchestra.run.smithi145:> uname -r 2024-09-13T05:10:28.723 INFO:teuthology.orchestra.run.smithi151.stdout:5.14.0-503.el9.x86_64 2024-09-13T05:10:28.724 INFO:teuthology.task.kernel:Running kernel on smithi151: 5.14.0-503.el9.x86_64 2024-09-13T05:10:28.724 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum install -y kernel 2024-09-13T05:10:28.726 INFO:teuthology.orchestra.run.smithi145.stdout:5.14.0-503.el9.x86_64 2024-09-13T05:10:28.726 INFO:teuthology.orchestra.run.smithi153.stdout:5.14.0-503.el9.x86_64 2024-09-13T05:10:28.726 INFO:teuthology.task.kernel:Running kernel on smithi145: 5.14.0-503.el9.x86_64 2024-09-13T05:10:28.726 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum install -y kernel 2024-09-13T05:10:28.726 INFO:teuthology.task.kernel:Running kernel on smithi153: 5.14.0-503.el9.x86_64 2024-09-13T05:10:28.726 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum install -y kernel 2024-09-13T05:10:31.251 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - BaseOS 13 MB/s | 8.2 MB 00:00 2024-09-13T05:10:31.722 INFO:teuthology.orchestra.run.smithi153.stdout:CentOS Stream 9 - BaseOS 6.7 MB/s | 8.2 MB 00:01 2024-09-13T05:10:32.422 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - BaseOS 4.4 MB/s | 8.2 MB 00:01 2024-09-13T05:10:34.131 INFO:teuthology.orchestra.run.smithi153.stdout:CentOS Stream 9 - AppStream 16 MB/s | 20 MB 00:01 2024-09-13T05:10:37.056 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - AppStream 5.9 MB/s | 20 MB 00:03 2024-09-13T05:10:38.499 INFO:teuthology.orchestra.run.smithi153.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.5 MB 00:00 2024-09-13T05:10:40.033 INFO:teuthology.orchestra.run.smithi153.stdout:CentOS Stream 9 - Extras packages 108 kB/s | 19 kB 00:00 2024-09-13T05:10:41.170 INFO:teuthology.orchestra.run.smithi153.stdout:Extra Packages for Enterprise Linux 22 MB/s | 23 MB 00:01 2024-09-13T05:10:42.740 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - CRB 3.5 MB/s | 6.5 MB 00:01 2024-09-13T05:10:44.533 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - Extras packages 32 kB/s | 19 kB 00:00 2024-09-13T05:10:45.719 INFO:teuthology.orchestra.run.smithi145.stdout:Extra Packages for Enterprise Linux 21 MB/s | 23 MB 00:01 2024-09-13T05:10:46.559 INFO:teuthology.orchestra.run.smithi153.stdout:lab-extras 21 kB/s | 1.7 kB 00:00 2024-09-13T05:10:46.825 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - AppStream 1.4 MB/s | 20 MB 00:14 2024-09-13T05:10:48.590 INFO:teuthology.orchestra.run.smithi153.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-13T05:10:48.591 INFO:teuthology.orchestra.run.smithi153.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-13T05:10:48.683 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:10:48.693 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:10:48.693 INFO:teuthology.orchestra.run.smithi153.stdout: Package Architecture Version Repository Size 2024-09-13T05:10:48.694 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:10:48.694 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:10:48.694 INFO:teuthology.orchestra.run.smithi153.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-13T05:10:48.694 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:10:48.694 INFO:teuthology.orchestra.run.smithi153.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-13T05:10:48.694 INFO:teuthology.orchestra.run.smithi153.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-13T05:10:48.695 INFO:teuthology.orchestra.run.smithi153.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-13T05:10:48.695 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:10:48.695 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:10:48.695 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:10:48.695 INFO:teuthology.orchestra.run.smithi153.stdout:Install 4 Packages 2024-09-13T05:10:48.696 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:10:48.696 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 79 M 2024-09-13T05:10:48.696 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 126 M 2024-09-13T05:10:48.696 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:10:48.852 INFO:teuthology.orchestra.run.smithi153.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 205 kB/s | 23 kB 00:00 2024-09-13T05:10:49.594 INFO:teuthology.orchestra.run.smithi153.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 18 MB/s | 16 MB 00:00 2024-09-13T05:10:50.411 INFO:teuthology.orchestra.run.smithi153.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 18 MB/s | 29 MB 00:01 2024-09-13T05:10:51.009 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - CRB 16 MB/s | 6.5 MB 00:00 2024-09-13T05:10:51.191 INFO:teuthology.orchestra.run.smithi145.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-09-13T05:10:51.394 INFO:teuthology.orchestra.run.smithi153.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 13 MB/s | 35 MB 00:02 2024-09-13T05:10:51.394 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:10:51.394 INFO:teuthology.orchestra.run.smithi153.stdout:Total 29 MB/s | 79 MB 00:02 2024-09-13T05:10:52.069 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:10:52.413 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:10:52.413 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:10:52.593 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - Extras packages 75 kB/s | 19 kB 00:00 2024-09-13T05:10:53.164 INFO:teuthology.orchestra.run.smithi145.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-13T05:10:53.165 INFO:teuthology.orchestra.run.smithi145.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-13T05:10:53.256 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:10:53.262 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:10:53.262 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-13T05:10:53.262 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:10:53.262 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:10:53.262 INFO:teuthology.orchestra.run.smithi145.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-13T05:10:53.262 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:10:53.262 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-13T05:10:53.262 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-13T05:10:53.262 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-13T05:10:53.263 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:10:53.263 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:10:53.263 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:10:53.263 INFO:teuthology.orchestra.run.smithi145.stdout:Install 4 Packages 2024-09-13T05:10:53.263 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:10:53.263 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 79 M 2024-09-13T05:10:53.263 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 126 M 2024-09-13T05:10:53.264 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:10:53.355 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:10:53.356 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:10:53.376 INFO:teuthology.orchestra.run.smithi145.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 248 kB/s | 23 kB 00:00 2024-09-13T05:10:53.680 INFO:teuthology.orchestra.run.smithi151.stdout:Extra Packages for Enterprise Linux 24 MB/s | 23 MB 00:00 2024-09-13T05:10:53.768 INFO:teuthology.orchestra.run.smithi145.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 32 MB/s | 16 MB 00:00 2024-09-13T05:10:54.143 INFO:teuthology.orchestra.run.smithi145.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 37 MB/s | 29 MB 00:00 2024-09-13T05:10:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 29 MB/s | 35 MB 00:01 2024-09-13T05:10:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:10:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:Total 65 MB/s | 79 MB 00:01 2024-09-13T05:10:55.153 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:10:55.526 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:10:55.526 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:10:55.837 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:10:56.462 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:10:56.462 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:10:56.483 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-13T05:10:56.579 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T05:10:58.880 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:10:59.153 INFO:teuthology.orchestra.run.smithi151.stdout:lab-extras 24 kB/s | 1.7 kB 00:00 2024-09-13T05:10:59.387 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T05:10:59.515 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T05:10:59.594 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-13T05:10:59.677 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T05:11:01.151 INFO:teuthology.orchestra.run.smithi151.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-13T05:11:01.151 INFO:teuthology.orchestra.run.smithi151.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-13T05:11:01.249 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:11:01.259 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:11:01.259 INFO:teuthology.orchestra.run.smithi151.stdout: Package Architecture Version Repository Size 2024-09-13T05:11:01.259 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:11:01.259 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:11:01.259 INFO:teuthology.orchestra.run.smithi151.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-13T05:11:01.259 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:11:01.260 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-13T05:11:01.260 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-13T05:11:01.260 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-13T05:11:01.260 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:11:01.260 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:11:01.260 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:11:01.260 INFO:teuthology.orchestra.run.smithi151.stdout:Install 4 Packages 2024-09-13T05:11:01.260 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:11:01.261 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 79 M 2024-09-13T05:11:01.261 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 126 M 2024-09-13T05:11:01.261 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:11:01.462 INFO:teuthology.orchestra.run.smithi151.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 223 kB/s | 23 kB 00:00 2024-09-13T05:11:01.863 INFO:teuthology.orchestra.run.smithi151.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 31 MB/s | 16 MB 00:00 2024-09-13T05:11:02.288 INFO:teuthology.orchestra.run.smithi151.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 35 MB/s | 29 MB 00:00 2024-09-13T05:11:02.462 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T05:11:02.606 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T05:11:02.655 INFO:teuthology.orchestra.run.smithi151.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 27 MB/s | 35 MB 00:01 2024-09-13T05:11:02.655 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:11:02.655 INFO:teuthology.orchestra.run.smithi151.stdout:Total 56 MB/s | 79 MB 00:01 2024-09-13T05:11:03.335 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:11:03.697 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:11:03.697 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:11:04.429 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T05:11:04.582 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:04.682 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:11:04.682 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:11:07.134 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:11:07.437 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T05:11:07.473 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:07.787 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-13T05:11:07.879 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T05:11:09.428 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:10.700 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T05:11:10.822 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T05:11:12.309 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:15.636 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T05:11:15.747 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:20.581 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:47.701 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:47.741 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:48.080 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:48.080 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-13T05:11:48.080 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T05:11:48.080 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T05:11:48.943 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:48.943 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:11:48.943 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:11:48.943 INFO:teuthology.orchestra.run.smithi153.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-13T05:11:48.944 INFO:teuthology.orchestra.run.smithi153.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-13T05:11:48.944 INFO:teuthology.orchestra.run.smithi153.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-13T05:11:48.944 INFO:teuthology.orchestra.run.smithi153.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-13T05:11:48.944 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:11:48.944 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:11:49.298 DEBUG:teuthology.orchestra.run.smithi153:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T05:11:49.386 INFO:teuthology.orchestra.run.smithi153.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T05:11:49.386 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T05:11:49.386 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-13T05:11:49.386 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-13T05:11:49.386 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-13T05:11:49.387 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-13T05:11:49.387 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi153.front.sepia.ceph.com, path=None, version=distro) 2024-09-13T05:11:49.387 DEBUG:teuthology.orchestra.run.smithi153:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T05:11:49.446 INFO:teuthology.orchestra.run.smithi153.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T05:11:49.446 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T05:11:49.446 DEBUG:teuthology.orchestra.run.smithi153:> sudo rpm -qi grub2-tools 2024-09-13T05:11:49.478 INFO:teuthology.orchestra.run.smithi153.stdout:Name : grub2-tools 2024-09-13T05:11:49.478 INFO:teuthology.orchestra.run.smithi153.stdout:Epoch : 1 2024-09-13T05:11:49.478 INFO:teuthology.orchestra.run.smithi153.stdout:Version : 2.06 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Release : 82.el9 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Architecture: x86_64 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Group : Unspecified 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Size : 8274670 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:License : GPLv3+ 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Packager : builder@centos.org 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Vendor : CentOS 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-13T05:11:49.479 INFO:teuthology.orchestra.run.smithi153.stdout:Summary : Support tools for GRUB. 2024-09-13T05:11:49.480 INFO:teuthology.orchestra.run.smithi153.stdout:Description : 2024-09-13T05:11:49.480 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:11:49.480 INFO:teuthology.orchestra.run.smithi153.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-13T05:11:49.480 INFO:teuthology.orchestra.run.smithi153.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-13T05:11:49.480 INFO:teuthology.orchestra.run.smithi153.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-13T05:11:49.480 INFO:teuthology.orchestra.run.smithi153.stdout:hardware devices. 2024-09-13T05:11:49.480 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:11:49.480 INFO:teuthology.orchestra.run.smithi153.stdout:This subpackage provides tools for support of all platforms. 2024-09-13T05:11:49.481 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-13T05:11:49.481 INFO:teuthology.task.kernel:Updating grub on smithi153 to boot 5.14.0-505.el9.x86_64 2024-09-13T05:11:49.481 DEBUG:teuthology.orchestra.run.smithi153:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-13T05:11:50.154 INFO:teuthology.orchestra.run.smithi153.stderr:Generating grub configuration file ... 2024-09-13T05:11:50.542 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:50.581 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:50.933 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:50.933 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-13T05:11:50.933 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T05:11:50.933 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T05:11:51.440 INFO:teuthology.orchestra.run.smithi153.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-13T05:11:51.469 INFO:teuthology.orchestra.run.smithi153.stderr:done 2024-09-13T05:11:51.471 DEBUG:teuthology.orchestra.run.smithi153:> mktemp 2024-09-13T05:11:51.487 INFO:teuthology.orchestra.run.smithi153.stdout:/tmp/tmp.fGgOBphF9E 2024-09-13T05:11:51.487 DEBUG:teuthology.orchestra.run.smithi153:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.fGgOBphF9E 2024-09-13T05:11:51.554 DEBUG:teuthology.orchestra.run.smithi153:> sudo chmod 0666 /tmp/tmp.fGgOBphF9E 2024-09-13T05:11:51.709 DEBUG:teuthology.orchestra.remote:smithi153:/tmp/tmp.fGgOBphF9E is 6KB 2024-09-13T05:11:51.757 DEBUG:teuthology.orchestra.run.smithi153:> rm -fr /tmp/tmp.fGgOBphF9E 2024-09-13T05:11:51.772 DEBUG:teuthology.orchestra.run.smithi153:> sudo /bin/ls /boot/loader/entries || true 2024-09-13T05:11:51.808 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:51.808 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:11:51.808 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:11:51.808 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-13T05:11:51.808 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-13T05:11:51.808 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-13T05:11:51.808 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-13T05:11:51.808 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:11:51.808 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:11:51.835 INFO:teuthology.orchestra.run.smithi153.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-13T05:11:51.835 INFO:teuthology.orchestra.run.smithi153.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-13T05:11:51.835 INFO:teuthology.orchestra.run.smithi153.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-13T05:11:51.835 INFO:teuthology.orchestra.run.smithi153.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-13T05:11:51.836 DEBUG:teuthology.orchestra.run.smithi153:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-13T05:11:52.008 DEBUG:teuthology.orchestra.run.smithi153:> sudo shutdown -r now 2024-09-13T05:11:52.149 DEBUG:teuthology.orchestra.run.smithi145:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T05:11:52.234 INFO:teuthology.orchestra.run.smithi145.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T05:11:52.234 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T05:11:52.234 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-13T05:11:52.234 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-13T05:11:52.235 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-13T05:11:52.235 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-13T05:11:52.235 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi145.front.sepia.ceph.com, path=None, version=distro) 2024-09-13T05:11:52.235 DEBUG:teuthology.orchestra.run.smithi145:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T05:11:52.294 INFO:teuthology.orchestra.run.smithi145.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T05:11:52.294 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T05:11:52.294 DEBUG:teuthology.orchestra.run.smithi145:> sudo rpm -qi grub2-tools 2024-09-13T05:11:52.327 INFO:teuthology.orchestra.run.smithi145.stdout:Name : grub2-tools 2024-09-13T05:11:52.327 INFO:teuthology.orchestra.run.smithi145.stdout:Epoch : 1 2024-09-13T05:11:52.327 INFO:teuthology.orchestra.run.smithi145.stdout:Version : 2.06 2024-09-13T05:11:52.327 INFO:teuthology.orchestra.run.smithi145.stdout:Release : 82.el9 2024-09-13T05:11:52.327 INFO:teuthology.orchestra.run.smithi145.stdout:Architecture: x86_64 2024-09-13T05:11:52.327 INFO:teuthology.orchestra.run.smithi145.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-13T05:11:52.327 INFO:teuthology.orchestra.run.smithi145.stdout:Group : Unspecified 2024-09-13T05:11:52.327 INFO:teuthology.orchestra.run.smithi145.stdout:Size : 8274670 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:License : GPLv3+ 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:Packager : builder@centos.org 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:Vendor : CentOS 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:Summary : Support tools for GRUB. 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:Description : 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-13T05:11:52.328 INFO:teuthology.orchestra.run.smithi145.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-13T05:11:52.329 INFO:teuthology.orchestra.run.smithi145.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-13T05:11:52.329 INFO:teuthology.orchestra.run.smithi145.stdout:hardware devices. 2024-09-13T05:11:52.329 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:11:52.329 INFO:teuthology.orchestra.run.smithi145.stdout:This subpackage provides tools for support of all platforms. 2024-09-13T05:11:52.330 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-13T05:11:52.330 INFO:teuthology.task.kernel:Updating grub on smithi145 to boot 5.14.0-505.el9.x86_64 2024-09-13T05:11:52.330 DEBUG:teuthology.orchestra.run.smithi145:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-13T05:11:52.954 INFO:teuthology.orchestra.run.smithi145.stderr:Generating grub configuration file ... 2024-09-13T05:11:54.215 INFO:teuthology.orchestra.run.smithi145.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-13T05:11:54.246 INFO:teuthology.orchestra.run.smithi145.stderr:done 2024-09-13T05:11:54.248 DEBUG:teuthology.orchestra.run.smithi145:> mktemp 2024-09-13T05:11:54.263 INFO:teuthology.orchestra.run.smithi145.stdout:/tmp/tmp.42ICrHzM2f 2024-09-13T05:11:54.264 DEBUG:teuthology.orchestra.run.smithi145:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.42ICrHzM2f 2024-09-13T05:11:54.331 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod 0666 /tmp/tmp.42ICrHzM2f 2024-09-13T05:11:54.483 DEBUG:teuthology.orchestra.remote:smithi145:/tmp/tmp.42ICrHzM2f is 6KB 2024-09-13T05:11:54.531 DEBUG:teuthology.orchestra.run.smithi145:> rm -fr /tmp/tmp.42ICrHzM2f 2024-09-13T05:11:54.546 DEBUG:teuthology.orchestra.run.smithi145:> sudo /bin/ls /boot/loader/entries || true 2024-09-13T05:11:54.618 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-13T05:11:54.618 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-13T05:11:54.618 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-13T05:11:54.618 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-13T05:11:54.619 DEBUG:teuthology.orchestra.run.smithi145:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-13T05:11:54.782 DEBUG:teuthology.orchestra.run.smithi145:> sudo shutdown -r now 2024-09-13T05:11:58.829 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:58.872 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:59.229 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:11:59.229 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-13T05:11:59.229 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T05:11:59.229 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T05:12:00.087 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T05:12:00.087 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:12:00.087 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:12:00.088 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-13T05:12:00.088 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-13T05:12:00.088 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-13T05:12:00.088 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-13T05:12:00.088 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:12:00.088 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:12:00.427 DEBUG:teuthology.orchestra.run.smithi151:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T05:12:00.511 INFO:teuthology.orchestra.run.smithi151.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T05:12:00.512 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T05:12:00.512 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-13T05:12:00.512 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-13T05:12:00.512 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-13T05:12:00.512 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-13T05:12:00.512 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi151.front.sepia.ceph.com, path=None, version=distro) 2024-09-13T05:12:00.512 DEBUG:teuthology.orchestra.run.smithi151:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T05:12:00.572 INFO:teuthology.orchestra.run.smithi151.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T05:12:00.572 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T05:12:00.572 DEBUG:teuthology.orchestra.run.smithi151:> sudo rpm -qi grub2-tools 2024-09-13T05:12:00.609 INFO:teuthology.orchestra.run.smithi151.stdout:Name : grub2-tools 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Epoch : 1 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Version : 2.06 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Release : 82.el9 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Architecture: x86_64 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Group : Unspecified 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Size : 8274670 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:License : GPLv3+ 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-13T05:12:00.610 INFO:teuthology.orchestra.run.smithi151.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:Packager : builder@centos.org 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:Vendor : CentOS 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:Summary : Support tools for GRUB. 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:Description : 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:hardware devices. 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:12:00.611 INFO:teuthology.orchestra.run.smithi151.stdout:This subpackage provides tools for support of all platforms. 2024-09-13T05:12:00.612 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-13T05:12:00.612 INFO:teuthology.task.kernel:Updating grub on smithi151 to boot 5.14.0-505.el9.x86_64 2024-09-13T05:12:00.612 DEBUG:teuthology.orchestra.run.smithi151:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-13T05:12:01.215 INFO:teuthology.orchestra.run.smithi151.stderr:Generating grub configuration file ... 2024-09-13T05:12:02.521 INFO:teuthology.orchestra.run.smithi151.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-13T05:12:02.546 INFO:teuthology.orchestra.run.smithi151.stderr:done 2024-09-13T05:12:02.548 DEBUG:teuthology.orchestra.run.smithi151:> mktemp 2024-09-13T05:12:02.565 INFO:teuthology.orchestra.run.smithi151.stdout:/tmp/tmp.d3zcz5Hzc2 2024-09-13T05:12:02.566 DEBUG:teuthology.orchestra.run.smithi151:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.d3zcz5Hzc2 2024-09-13T05:12:02.632 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod 0666 /tmp/tmp.d3zcz5Hzc2 2024-09-13T05:12:02.778 DEBUG:teuthology.orchestra.remote:smithi151:/tmp/tmp.d3zcz5Hzc2 is 6KB 2024-09-13T05:12:02.825 DEBUG:teuthology.orchestra.run.smithi151:> rm -fr /tmp/tmp.d3zcz5Hzc2 2024-09-13T05:12:02.840 DEBUG:teuthology.orchestra.run.smithi151:> sudo /bin/ls /boot/loader/entries || true 2024-09-13T05:12:02.903 INFO:teuthology.orchestra.run.smithi151.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-13T05:12:02.903 INFO:teuthology.orchestra.run.smithi151.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-13T05:12:02.903 INFO:teuthology.orchestra.run.smithi151.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-13T05:12:02.903 INFO:teuthology.orchestra.run.smithi151.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-13T05:12:02.904 DEBUG:teuthology.orchestra.run.smithi151:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-13T05:12:03.053 DEBUG:teuthology.orchestra.run.smithi151:> sudo shutdown -r now 2024-09-13T05:12:22.029 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-13T05:12:22.030 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi153.front.sepia.ceph.com' 2024-09-13T05:12:22.031 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi153.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:12:24.788 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-13T05:12:24.789 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-13T05:12:24.789 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:12:33.061 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-13T05:12:33.061 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-13T05:12:33.062 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:12:40.509 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.153 2024-09-13T05:12:49.513 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi153.front.sepia.ceph.com' 2024-09-13T05:12:49.514 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi153.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:12:52.573 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.153 2024-09-13T05:13:04.585 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi153.front.sepia.ceph.com' 2024-09-13T05:13:04.586 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi153.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:13:07.649 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.151 2024-09-13T05:13:16.659 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-13T05:13:16.660 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:13:23.005 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.153 2024-09-13T05:13:24.817 DEBUG:teuthology.orchestra.remote:timed out 2024-09-13T05:13:33.825 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-13T05:13:33.826 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:13:34.174 DEBUG:teuthology.orchestra.run.smithi145:> true 2024-09-13T05:13:34.587 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-13T05:13:34.587 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-505.el9.x86_64"... 2024-09-13T05:13:34.587 DEBUG:teuthology.orchestra.run.smithi145:> uname -r 2024-09-13T05:13:34.602 INFO:teuthology.orchestra.run.smithi145.stdout:5.14.0-505.el9.x86_64 2024-09-13T05:13:34.602 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-13T05:13:34.602 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-13T05:13:34.603 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-13T05:13:35.604 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-13T05:13:35.604 DEBUG:teuthology.orchestra.run.smithi145:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-13T05:13:35.679 INFO:teuthology.orchestra.run.smithi145.stdout:ttyS1 2024-09-13T05:13:35.711 DEBUG:teuthology.parallel:result is None 2024-09-13T05:13:38.006 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi153.front.sepia.ceph.com' 2024-09-13T05:13:38.006 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi153.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:13:38.444 DEBUG:teuthology.orchestra.run.smithi153:> true 2024-09-13T05:13:38.814 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi153.front.sepia.ceph.com' 2024-09-13T05:13:38.814 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-505.el9.x86_64"... 2024-09-13T05:13:38.815 DEBUG:teuthology.orchestra.run.smithi153:> uname -r 2024-09-13T05:13:38.829 INFO:teuthology.orchestra.run.smithi153.stdout:5.14.0-505.el9.x86_64 2024-09-13T05:13:38.829 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-13T05:13:38.829 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-13T05:13:38.829 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-13T05:13:39.830 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-13T05:13:39.831 DEBUG:teuthology.orchestra.run.smithi153:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-13T05:13:39.914 INFO:teuthology.orchestra.run.smithi153.stdout:ttyS1 2024-09-13T05:13:39.940 DEBUG:teuthology.parallel:result is None 2024-09-13T05:13:48.396 DEBUG:teuthology.orchestra.run.smithi151:> true 2024-09-13T05:13:48.990 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-13T05:13:48.991 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-505.el9.x86_64"... 2024-09-13T05:13:48.991 DEBUG:teuthology.orchestra.run.smithi151:> uname -r 2024-09-13T05:13:49.006 INFO:teuthology.orchestra.run.smithi151.stdout:5.14.0-505.el9.x86_64 2024-09-13T05:13:49.006 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-13T05:13:49.006 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-13T05:13:49.006 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-13T05:13:50.007 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-13T05:13:50.007 DEBUG:teuthology.orchestra.run.smithi151:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-13T05:13:50.087 INFO:teuthology.orchestra.run.smithi151.stdout:ttyS1 2024-09-13T05:13:50.109 DEBUG:teuthology.parallel:result is None 2024-09-13T05:13:50.109 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-13T05:13:50.117 INFO:teuthology.task.internal:Creating test directory... 2024-09-13T05:13:50.118 DEBUG:teuthology.orchestra.run.smithi145:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-13T05:13:50.120 DEBUG:teuthology.orchestra.run.smithi151:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-13T05:13:50.123 DEBUG:teuthology.orchestra.run.smithi153:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-13T05:13:50.144 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-13T05:13:50.414 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-13T05:13:50.958 INFO:teuthology.task.internal:Creating archive directory... 2024-09-13T05:13:50.958 DEBUG:teuthology.orchestra.run.smithi145:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-13T05:13:50.961 DEBUG:teuthology.orchestra.run.smithi151:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-13T05:13:50.963 DEBUG:teuthology.orchestra.run.smithi153:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-13T05:13:51.175 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-13T05:13:51.211 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-13T05:13:51.211 DEBUG:teuthology.orchestra.run.smithi145:> 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-09-13T05:13:51.214 DEBUG:teuthology.orchestra.run.smithi151:> 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-09-13T05:13:51.217 DEBUG:teuthology.orchestra.run.smithi153:> 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-09-13T05:13:51.243 INFO:teuthology.orchestra.run.smithi145.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T05:13:51.249 INFO:teuthology.orchestra.run.smithi153.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T05:13:51.255 INFO:teuthology.orchestra.run.smithi145.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T05:13:51.261 INFO:teuthology.orchestra.run.smithi153.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T05:13:51.269 INFO:teuthology.orchestra.run.smithi151.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T05:13:51.280 INFO:teuthology.orchestra.run.smithi151.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T05:13:51.281 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-13T05:13:51.288 INFO:teuthology.task.internal:Configuring sudo... 2024-09-13T05:13:51.289 DEBUG:teuthology.orchestra.run.smithi145:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-13T05:13:51.300 DEBUG:teuthology.orchestra.run.smithi151:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-13T05:13:51.302 DEBUG:teuthology.orchestra.run.smithi153:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-13T05:13:51.330 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-13T05:13:51.339 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-13T05:13:51.339 DEBUG:teuthology.orchestra.run.smithi145:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-13T05:13:51.367 DEBUG:teuthology.orchestra.run.smithi151:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-13T05:13:51.369 DEBUG:teuthology.orchestra.run.smithi153:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-13T05:13:51.386 DEBUG:teuthology.orchestra.run.smithi145:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T05:13:51.474 DEBUG:teuthology.orchestra.run.smithi145:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T05:13:51.519 DEBUG:teuthology.orchestra.run.smithi145:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T05:13:51.605 DEBUG:teuthology.orchestra.run.smithi145:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T05:13:51.643 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:13:51.643 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-13T05:13:51.708 DEBUG:teuthology.orchestra.run.smithi151:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T05:13:51.757 DEBUG:teuthology.orchestra.run.smithi151:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T05:13:51.814 DEBUG:teuthology.orchestra.run.smithi151:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T05:13:51.863 DEBUG:teuthology.orchestra.run.smithi151:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T05:13:51.893 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:13:51.893 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-13T05:13:51.961 DEBUG:teuthology.orchestra.run.smithi153:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T05:13:52.015 DEBUG:teuthology.orchestra.run.smithi153:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T05:13:52.056 DEBUG:teuthology.orchestra.run.smithi153:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T05:13:52.148 DEBUG:teuthology.orchestra.run.smithi153:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T05:13:52.182 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:13:52.182 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-13T05:13:52.249 DEBUG:teuthology.orchestra.run.smithi145:> sudo service rsyslog restart 2024-09-13T05:13:52.252 DEBUG:teuthology.orchestra.run.smithi151:> sudo service rsyslog restart 2024-09-13T05:13:52.254 DEBUG:teuthology.orchestra.run.smithi153:> sudo service rsyslog restart 2024-09-13T05:13:52.310 INFO:teuthology.orchestra.run.smithi151.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T05:13:52.313 INFO:teuthology.orchestra.run.smithi145.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T05:13:52.338 INFO:teuthology.orchestra.run.smithi153.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T05:13:52.844 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-13T05:13:52.851 INFO:teuthology.task.internal:Starting timer... 2024-09-13T05:13:52.851 INFO:teuthology.run_tasks:Running task pcp... 2024-09-13T05:13:52.877 INFO:teuthology.run_tasks:Running task selinux... 2024-09-13T05:13:52.886 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0', 'scontext=system_u:system_r:getty_t:s0']} 2024-09-13T05:13:52.886 DEBUG:teuthology.orchestra.run.smithi145:> sudo service auditd rotate 2024-09-13T05:13:52.953 INFO:teuthology.orchestra.run.smithi145.stdout:Rotating logs: 2024-09-13T05:13:52.955 DEBUG:teuthology.orchestra.run.smithi151:> sudo service auditd rotate 2024-09-13T05:13:53.001 INFO:teuthology.orchestra.run.smithi151.stdout:Rotating logs: 2024-09-13T05:13:53.003 DEBUG:teuthology.orchestra.run.smithi153:> sudo service auditd rotate 2024-09-13T05:13:53.058 INFO:teuthology.orchestra.run.smithi153.stdout:Rotating logs: 2024-09-13T05:13:53.061 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-13T05:13:53.061 DEBUG:teuthology.orchestra.run.smithi145:> /usr/sbin/getenforce 2024-09-13T05:13:53.092 INFO:teuthology.orchestra.run.smithi145.stdout:Permissive 2024-09-13T05:13:53.092 DEBUG:teuthology.orchestra.run.smithi151:> /usr/sbin/getenforce 2024-09-13T05:13:53.124 INFO:teuthology.orchestra.run.smithi151.stdout:Permissive 2024-09-13T05:13:53.125 DEBUG:teuthology.orchestra.run.smithi153:> /usr/sbin/getenforce 2024-09-13T05:13:53.170 INFO:teuthology.orchestra.run.smithi153.stdout:Permissive 2024-09-13T05:13:53.171 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi145.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi151.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi153.front.sepia.ceph.com': 'permissive'} 2024-09-13T05:13:53.171 DEBUG:teuthology.orchestra.run.smithi145:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T05:13:53.198 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:13:53.199 DEBUG:teuthology.orchestra.run.smithi151:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T05:13:53.223 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:13:53.224 DEBUG:teuthology.orchestra.run.smithi153:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T05:13:53.251 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:13:53.252 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-13T05:13:53.252 DEBUG:teuthology.orchestra.run.smithi145:> sudo /usr/sbin/setenforce permissive 2024-09-13T05:13:53.293 DEBUG:teuthology.orchestra.run.smithi151:> sudo /usr/sbin/setenforce permissive 2024-09-13T05:13:53.321 DEBUG:teuthology.orchestra.run.smithi153:> sudo /usr/sbin/setenforce permissive 2024-09-13T05:13:53.366 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-13T05:13:53.376 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-13T05:13:53.388 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-09-13T05:13:53.389 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi145.front.sepia.ceph.com,smithi151.front.sepia.ceph.com,smithi153.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-13T05:17:49.317 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi145.front.sepia.ceph.com'), Remote(name='ubuntu@smithi151.front.sepia.ceph.com'), Remote(name='ubuntu@smithi153.front.sepia.ceph.com')] 2024-09-13T05:17:49.319 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-13T05:17:49.321 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:17:49.416 DEBUG:teuthology.orchestra.run.smithi145:> true 2024-09-13T05:17:49.493 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-13T05:17:49.496 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-13T05:17:49.497 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:17:49.578 DEBUG:teuthology.orchestra.run.smithi151:> true 2024-09-13T05:17:49.656 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-13T05:17:49.656 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi153.front.sepia.ceph.com' 2024-09-13T05:17:49.657 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi153.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T05:17:49.742 DEBUG:teuthology.orchestra.run.smithi153:> true 2024-09-13T05:17:49.828 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi153.front.sepia.ceph.com' 2024-09-13T05:17:49.828 INFO:teuthology.run_tasks:Running task clock... 2024-09-13T05:17:49.839 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-13T05:17:49.839 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-13T05:17:49.840 DEBUG:teuthology.orchestra.run.smithi145:> 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-09-13T05:17:49.842 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-13T05:17:49.842 DEBUG:teuthology.orchestra.run.smithi151:> 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-09-13T05:17:49.844 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-13T05:17:49.844 DEBUG:teuthology.orchestra.run.smithi153:> 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-09-13T05:17:49.870 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-13T05:17:49.870 INFO:teuthology.orchestra.run.smithi151.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-13T05:17:49.884 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-13T05:17:49.885 INFO:teuthology.orchestra.run.smithi151.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-13T05:17:49.899 INFO:teuthology.orchestra.run.smithi153.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-13T05:17:49.907 INFO:teuthology.orchestra.run.smithi145.stderr:sudo: ntpd: command not found 2024-09-13T05:17:49.909 INFO:teuthology.orchestra.run.smithi151.stderr:sudo: ntpd: command not found 2024-09-13T05:17:49.913 INFO:teuthology.orchestra.run.smithi153.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-13T05:17:49.918 INFO:teuthology.orchestra.run.smithi145.stdout:506 Cannot talk to daemon 2024-09-13T05:17:49.921 INFO:teuthology.orchestra.run.smithi151.stdout:506 Cannot talk to daemon 2024-09-13T05:17:49.932 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-13T05:17:49.935 INFO:teuthology.orchestra.run.smithi151.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-13T05:17:49.938 INFO:teuthology.orchestra.run.smithi153.stderr:sudo: ntpd: command not found 2024-09-13T05:17:49.946 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-13T05:17:49.950 INFO:teuthology.orchestra.run.smithi153.stdout:506 Cannot talk to daemon 2024-09-13T05:17:49.950 INFO:teuthology.orchestra.run.smithi151.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-13T05:17:49.964 INFO:teuthology.orchestra.run.smithi153.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-13T05:17:49.978 INFO:teuthology.orchestra.run.smithi153.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-13T05:17:50.002 INFO:teuthology.orchestra.run.smithi151.stderr:bash: line 1: ntpq: command not found 2024-09-13T05:17:50.004 INFO:teuthology.orchestra.run.smithi145.stderr:bash: line 1: ntpq: command not found 2024-09-13T05:17:50.006 INFO:teuthology.orchestra.run.smithi151.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T05:17:50.006 INFO:teuthology.orchestra.run.smithi151.stdout:=============================================================================== 2024-09-13T05:17:50.006 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.006 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.006 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.006 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.007 INFO:teuthology.orchestra.run.smithi145.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T05:17:50.007 INFO:teuthology.orchestra.run.smithi145.stdout:=============================================================================== 2024-09-13T05:17:50.007 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.007 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.008 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.008 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.042 INFO:teuthology.orchestra.run.smithi153.stderr:bash: line 1: ntpq: command not found 2024-09-13T05:17:50.046 INFO:teuthology.orchestra.run.smithi153.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T05:17:50.046 INFO:teuthology.orchestra.run.smithi153.stdout:=============================================================================== 2024-09-13T05:17:50.046 INFO:teuthology.orchestra.run.smithi153.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.046 INFO:teuthology.orchestra.run.smithi153.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.047 INFO:teuthology.orchestra.run.smithi153.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.047 INFO:teuthology.orchestra.run.smithi153.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:17:50.047 INFO:teuthology.run_tasks:Running task pexec... 2024-09-13T05:17:50.057 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-13T05:17:50.057 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi145.front.sepia.ceph.com 2024-09-13T05:17:50.057 DEBUG:teuthology.orchestra.run.smithi145:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-13T05:17:50.058 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi151.front.sepia.ceph.com 2024-09-13T05:17:50.058 DEBUG:teuthology.orchestra.run.smithi151:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-13T05:17:50.058 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi153.front.sepia.ceph.com 2024-09-13T05:17:50.058 DEBUG:teuthology.orchestra.run.smithi153:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-13T05:17:50.407 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:17:50.410 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:17:50.412 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:17:50.412 INFO:teuthology.orchestra.run.smithi151.stdout: Package Architecture Version Repository Size 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout:Removing: 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout:Removing unused dependencies: 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout:Remove 2 Packages 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout:Freed space: 5.5 M 2024-09-13T05:17:50.413 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:17:50.417 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:17:50.417 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:17:50.426 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:17:50.426 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout:Removing: 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout:Removing unused dependencies: 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout:Remove 2 Packages 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout:Freed space: 5.5 M 2024-09-13T05:17:50.427 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:17:50.431 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:17:50.431 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:17:50.437 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:17:50.456 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:17:50.456 INFO:teuthology.orchestra.run.smithi153.stdout: Package Architecture Version Repository Size 2024-09-13T05:17:50.456 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:17:50.456 INFO:teuthology.orchestra.run.smithi153.stdout:Removing: 2024-09-13T05:17:50.456 INFO:teuthology.orchestra.run.smithi153.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-13T05:17:50.457 INFO:teuthology.orchestra.run.smithi153.stdout:Removing unused dependencies: 2024-09-13T05:17:50.457 INFO:teuthology.orchestra.run.smithi153.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-13T05:17:50.457 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:17:50.457 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:17:50.457 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:17:50.457 INFO:teuthology.orchestra.run.smithi153.stdout:Remove 2 Packages 2024-09-13T05:17:50.457 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:17:50.457 INFO:teuthology.orchestra.run.smithi153.stdout:Freed space: 5.5 M 2024-09-13T05:17:50.457 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:17:50.461 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:17:50.461 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:17:50.483 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:17:50.483 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:17:50.495 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:17:50.496 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:17:50.519 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:17:50.519 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:17:50.617 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:17:50.631 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:17:50.658 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:17:50.705 INFO:teuthology.orchestra.run.smithi151.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-13T05:17:50.713 INFO:teuthology.orchestra.run.smithi145.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-13T05:17:50.731 INFO:teuthology.orchestra.run.smithi153.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-13T05:17:50.768 INFO:teuthology.orchestra.run.smithi151.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T05:17:50.773 INFO:teuthology.orchestra.run.smithi145.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T05:17:50.796 INFO:teuthology.orchestra.run.smithi153.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T05:17:51.225 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T05:17:51.225 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-13T05:17:51.277 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T05:17:51.277 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-13T05:17:51.361 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T05:17:51.361 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-13T05:17:51.477 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-13T05:17:51.478 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:17:51.478 INFO:teuthology.orchestra.run.smithi151.stdout:Removed: 2024-09-13T05:17:51.478 INFO:teuthology.orchestra.run.smithi151.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T05:17:51.478 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:17:51.478 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:17:51.551 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-13T05:17:51.551 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:17:51.551 INFO:teuthology.orchestra.run.smithi145.stdout:Removed: 2024-09-13T05:17:51.551 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T05:17:51.551 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:17:51.552 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:17:51.601 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-13T05:17:51.601 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:17:51.601 INFO:teuthology.orchestra.run.smithi153.stdout:Removed: 2024-09-13T05:17:51.601 INFO:teuthology.orchestra.run.smithi153.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T05:17:51.601 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:17:51.601 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:17:52.287 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 05:16:52 AM UTC. 2024-09-13T05:17:52.380 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:51 ago on Fri 13 Sep 2024 05:17:01 AM UTC. 2024-09-13T05:17:52.426 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:17:52.426 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout: Package Architecture Version Repository Size 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:17:52.427 INFO:teuthology.orchestra.run.smithi151.stdout:Install 6 Packages 2024-09-13T05:17:52.428 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:17:52.436 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 2.0 M 2024-09-13T05:17:52.436 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 9.2 M 2024-09-13T05:17:52.436 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:17:52.461 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 05:16:52 AM UTC. 2024-09-13T05:17:52.519 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:17:52.519 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:17:52.519 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout:Install 6 Packages 2024-09-13T05:17:52.520 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:17:52.521 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 2.0 M 2024-09-13T05:17:52.521 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 9.2 M 2024-09-13T05:17:52.522 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:17:52.602 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:17:52.603 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:17:52.603 INFO:teuthology.orchestra.run.smithi153.stdout: Package Architecture Version Repository Size 2024-09-13T05:17:52.603 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:17:52.603 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:17:52.603 INFO:teuthology.orchestra.run.smithi153.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-13T05:17:52.603 INFO:teuthology.orchestra.run.smithi153.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-13T05:17:52.603 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:17:52.604 INFO:teuthology.orchestra.run.smithi153.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-13T05:17:52.604 INFO:teuthology.orchestra.run.smithi153.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-13T05:17:52.604 INFO:teuthology.orchestra.run.smithi153.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-13T05:17:52.604 INFO:teuthology.orchestra.run.smithi153.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-13T05:17:52.604 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:17:52.604 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:17:52.604 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:17:52.604 INFO:teuthology.orchestra.run.smithi153.stdout:Install 6 Packages 2024-09-13T05:17:52.604 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:17:52.615 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 2.0 M 2024-09-13T05:17:52.615 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 9.2 M 2024-09-13T05:17:52.615 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:17:52.766 INFO:teuthology.orchestra.run.smithi145.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 377 kB/s | 44 kB 00:00 2024-09-13T05:17:52.791 INFO:teuthology.orchestra.run.smithi145.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 737 kB/s | 106 kB 00:00 2024-09-13T05:17:52.849 INFO:teuthology.orchestra.run.smithi145.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.4 MB/s | 84 kB 00:00 2024-09-13T05:17:52.875 INFO:teuthology.orchestra.run.smithi145.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 660 kB/s | 72 kB 00:00 2024-09-13T05:17:53.042 INFO:teuthology.orchestra.run.smithi145.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 2.2 MB/s | 906 kB 00:00 2024-09-13T05:17:53.059 INFO:teuthology.orchestra.run.smithi151.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 75 kB/s | 44 kB 00:00 2024-09-13T05:17:53.125 INFO:teuthology.orchestra.run.smithi145.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 3.0 MB/s | 837 kB 00:00 2024-09-13T05:17:53.125 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:17:53.126 INFO:teuthology.orchestra.run.smithi145.stdout:Total 3.3 MB/s | 2.0 MB 00:00 2024-09-13T05:17:53.193 INFO:teuthology.orchestra.run.smithi151.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 147 kB/s | 106 kB 00:00 2024-09-13T05:17:53.205 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:17:53.219 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:17:53.219 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:17:53.227 INFO:teuthology.orchestra.run.smithi153.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 76 kB/s | 44 kB 00:00 2024-09-13T05:17:53.310 INFO:teuthology.orchestra.run.smithi153.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 158 kB/s | 106 kB 00:00 2024-09-13T05:17:53.360 INFO:teuthology.orchestra.run.smithi151.stdout:(3/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 1.0 MB/s | 906 kB 00:00 2024-09-13T05:17:53.490 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:17:53.490 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:17:53.535 INFO:teuthology.orchestra.run.smithi153.stdout:(3/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 1.0 MB/s | 906 kB 00:00 2024-09-13T05:17:53.702 INFO:teuthology.orchestra.run.smithi151.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 112 kB/s | 72 kB 00:00 2024-09-13T05:17:53.869 INFO:teuthology.orchestra.run.smithi151.stdout:(5/6): python3-kmod-0.9-32.el9.x86_64.rpm 125 kB/s | 84 kB 00:00 2024-09-13T05:17:53.870 INFO:teuthology.orchestra.run.smithi153.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 112 kB/s | 72 kB 00:00 2024-09-13T05:17:53.922 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:17:53.961 INFO:teuthology.orchestra.run.smithi153.stdout:(5/6): python3-kmod-0.9-32.el9.x86_64.rpm 129 kB/s | 84 kB 00:00 2024-09-13T05:17:54.011 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-13T05:17:54.054 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-13T05:17:54.082 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-13T05:17:54.297 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-13T05:17:54.327 INFO:teuthology.orchestra.run.smithi151.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 867 kB/s | 837 kB 00:00 2024-09-13T05:17:54.328 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:17:54.328 INFO:teuthology.orchestra.run.smithi151.stdout:Total 1.1 MB/s | 2.0 MB 00:01 2024-09-13T05:17:54.330 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T05:17:54.409 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:17:54.424 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:17:54.424 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:17:54.544 INFO:teuthology.orchestra.run.smithi153.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 837 kB/s | 837 kB 00:01 2024-09-13T05:17:54.545 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:17:54.545 INFO:teuthology.orchestra.run.smithi153.stdout:Total 1.0 MB/s | 2.0 MB 00:01 2024-09-13T05:17:54.627 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:17:54.642 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:17:54.643 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:17:54.682 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:17:54.682 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:17:54.773 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T05:17:54.816 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T05:17:54.933 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:17:54.934 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:17:55.104 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:17:55.188 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-13T05:17:55.230 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-13T05:17:55.260 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-13T05:17:55.350 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:17:55.430 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-13T05:17:55.465 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-13T05:17:55.466 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-13T05:17:55.493 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-13T05:17:55.500 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T05:17:55.703 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-13T05:17:55.741 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T05:17:55.777 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T05:17:55.778 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-13T05:17:55.778 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-13T05:17:55.778 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-13T05:17:55.778 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-13T05:17:55.778 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-13T05:17:55.954 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T05:17:55.987 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T05:17:56.103 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-13T05:17:56.104 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:17:56.104 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:17:56.104 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T05:17:56.104 INFO:teuthology.orchestra.run.smithi145.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-13T05:17:56.104 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-13T05:17:56.104 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:17:56.104 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:17:56.192 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T05:17:56.222 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T05:17:56.438 DEBUG:teuthology.parallel:result is None 2024-09-13T05:17:57.049 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T05:17:57.050 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-13T05:17:57.050 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-13T05:17:57.050 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-13T05:17:57.050 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-13T05:17:57.050 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-13T05:17:57.239 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T05:17:57.239 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-13T05:17:57.239 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-13T05:17:57.239 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-13T05:17:57.239 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-13T05:17:57.239 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-13T05:17:57.424 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-13T05:17:57.424 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:17:57.424 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:17:57.424 INFO:teuthology.orchestra.run.smithi151.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T05:17:57.424 INFO:teuthology.orchestra.run.smithi151.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-13T05:17:57.424 INFO:teuthology.orchestra.run.smithi151.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-13T05:17:57.424 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:17:57.424 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:17:57.572 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-13T05:17:57.572 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:17:57.572 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:17:57.572 INFO:teuthology.orchestra.run.smithi153.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T05:17:57.572 INFO:teuthology.orchestra.run.smithi153.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-13T05:17:57.572 INFO:teuthology.orchestra.run.smithi153.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-13T05:17:57.573 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:17:57.573 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:17:57.778 DEBUG:teuthology.parallel:result is None 2024-09-13T05:17:57.874 DEBUG:teuthology.parallel:result is None 2024-09-13T05:17:57.874 INFO:teuthology.run_tasks:Running task install... 2024-09-13T05:17:57.885 DEBUG:teuthology.task.install:project ceph 2024-09-13T05:17:57.885 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3'}} 2024-09-13T05:17:57.885 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3'} 2024-09-13T05:17:57.885 INFO:teuthology.task.install:Using flavor: default 2024-09-13T05:17:57.894 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-09-13T05:17:57.894 INFO:teuthology.task.install:extra packages: [] 2024-09-13T05:17:57.894 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': '9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3', 'tag': None, 'wait_for_package': False} 2024-09-13T05:17:57.895 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:17:57.897 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': '9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3', 'tag': None, 'wait_for_package': False} 2024-09-13T05:17:57.897 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:17:57.898 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': '9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3', 'tag': None, 'wait_for_package': False} 2024-09-13T05:17:57.898 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:17:58.065 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/ 2024-09-13T05:17:58.065 INFO:teuthology.task.install.rpm:Package version is 19.3.0-4911.g9d608eb1 2024-09-13T05:17:58.077 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/ 2024-09-13T05:17:58.077 INFO:teuthology.task.install.rpm:Package version is 19.3.0-4911.g9d608eb1 2024-09-13T05:17:58.088 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/ 2024-09-13T05:17:58.088 INFO:teuthology.task.install.rpm:Package version is 19.3.0-4911.g9d608eb1 2024-09-13T05:17:58.185 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-13T05:17:58.185 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:17:58.186 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-13T05:17:58.194 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-13T05:17:58.194 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:17:58.194 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-13T05:17:58.203 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-13T05:17:58.203 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:17:58.204 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-13T05:17:58.220 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-09-13T05:17:58.220 DEBUG:teuthology.orchestra.run.smithi145:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-13T05:17:58.225 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-09-13T05:17:58.225 DEBUG:teuthology.orchestra.run.smithi151:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-13T05:17:58.233 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-09-13T05:17:58.235 DEBUG:teuthology.orchestra.run.smithi153:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-13T05:17:58.290 DEBUG:teuthology.orchestra.run.smithi145:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-09-13T05:17:58.294 DEBUG:teuthology.orchestra.run.smithi151:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-09-13T05:17:58.300 DEBUG:teuthology.orchestra.run.smithi153:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-09-13T05:17:58.369 DEBUG:teuthology.orchestra.run.smithi145:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-09-13T05:17:58.378 DEBUG:teuthology.orchestra.run.smithi153:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-09-13T05:17:58.384 DEBUG:teuthology.orchestra.run.smithi151:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-09-13T05:17:58.409 INFO:teuthology.orchestra.run.smithi151.stdout:check_obsoletes = 1 2024-09-13T05:17:58.410 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum clean all 2024-09-13T05:17:58.436 INFO:teuthology.orchestra.run.smithi145.stdout:check_obsoletes = 1 2024-09-13T05:17:58.438 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum clean all 2024-09-13T05:17:58.456 INFO:teuthology.orchestra.run.smithi153.stdout:check_obsoletes = 1 2024-09-13T05:17:58.457 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum clean all 2024-09-13T05:17:58.640 INFO:teuthology.orchestra.run.smithi151.stdout:45 files removed 2024-09-13T05:17:58.666 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-radosgw 2024-09-13T05:17:58.672 INFO:teuthology.orchestra.run.smithi145.stdout:45 files removed 2024-09-13T05:17:58.675 INFO:teuthology.orchestra.run.smithi153.stdout:45 files removed 2024-09-13T05:17:58.699 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-radosgw 2024-09-13T05:17:58.702 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-radosgw 2024-09-13T05:17:59.223 INFO:teuthology.orchestra.run.smithi151.stdout:ceph packages for x86_64 310 kB/s | 84 kB 00:00 2024-09-13T05:17:59.255 INFO:teuthology.orchestra.run.smithi145.stdout:ceph packages for x86_64 309 kB/s | 84 kB 00:00 2024-09-13T05:17:59.259 INFO:teuthology.orchestra.run.smithi153.stdout:ceph packages for x86_64 313 kB/s | 84 kB 00:00 2024-09-13T05:17:59.515 INFO:teuthology.orchestra.run.smithi151.stdout:ceph noarch packages 97 kB/s | 24 kB 00:00 2024-09-13T05:17:59.547 INFO:teuthology.orchestra.run.smithi145.stdout:ceph noarch packages 97 kB/s | 24 kB 00:00 2024-09-13T05:17:59.581 INFO:teuthology.orchestra.run.smithi153.stdout:ceph noarch packages 87 kB/s | 24 kB 00:00 2024-09-13T05:17:59.791 INFO:teuthology.orchestra.run.smithi151.stdout:ceph source packages 8.1 kB/s | 1.9 kB 00:00 2024-09-13T05:17:59.831 INFO:teuthology.orchestra.run.smithi145.stdout:ceph source packages 7.9 kB/s | 1.9 kB 00:00 2024-09-13T05:17:59.860 INFO:teuthology.orchestra.run.smithi153.stdout:ceph source packages 8.1 kB/s | 1.9 kB 00:00 2024-09-13T05:18:00.315 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - BaseOS 18 MB/s | 8.2 MB 00:00 2024-09-13T05:18:01.575 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - BaseOS 4.7 MB/s | 8.2 MB 00:01 2024-09-13T05:18:01.844 INFO:teuthology.orchestra.run.smithi153.stdout:CentOS Stream 9 - BaseOS 4.2 MB/s | 8.2 MB 00:01 2024-09-13T05:18:03.616 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - AppStream 9.2 MB/s | 20 MB 00:02 2024-09-13T05:18:04.734 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - AppStream 10 MB/s | 20 MB 00:02 2024-09-13T05:18:07.942 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - CRB 12 MB/s | 6.5 MB 00:00 2024-09-13T05:18:09.842 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - Extras packages 28 kB/s | 19 kB 00:00 2024-09-13T05:18:10.119 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - CRB 4.2 MB/s | 6.5 MB 00:01 2024-09-13T05:18:10.713 INFO:teuthology.orchestra.run.smithi145.stdout:Extra Packages for Enterprise Linux 30 MB/s | 23 MB 00:00 2024-09-13T05:18:11.728 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - Extras packages 49 kB/s | 19 kB 00:00 2024-09-13T05:18:12.866 INFO:teuthology.orchestra.run.smithi151.stdout:Extra Packages for Enterprise Linux 22 MB/s | 23 MB 00:01 2024-09-13T05:18:16.160 INFO:teuthology.orchestra.run.smithi145.stdout:lab-extras 39 kB/s | 1.7 kB 00:00 2024-09-13T05:18:17.742 INFO:teuthology.orchestra.run.smithi153.stdout:CentOS Stream 9 - AppStream 1.4 MB/s | 20 MB 00:14 2024-09-13T05:18:18.397 INFO:teuthology.orchestra.run.smithi151.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-09-13T05:18:18.555 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-radosgw x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 11 M 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout:Upgrading: 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout: librados2 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 3.5 M 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout: librbd1 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 3.2 M 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:18:18.558 INFO:teuthology.orchestra.run.smithi145.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-base x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 5.5 M 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-common x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 22 M 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-selinux x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 25 k 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: libcephfs2 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 755 k 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: libnbd x86_64 1.20.2-2.el9 appstream 171 k 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-13T05:18:18.559 INFO:teuthology.orchestra.run.smithi145.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: libradosstriper1 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 508 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: librgw2 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 5.5 M 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ceph-argparse x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 45 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ceph-common x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 143 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cephfs x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 162 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-13T05:18:18.560 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rados x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 321 k 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rbd x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 305 k 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rgw x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 99 k 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout:Installing weak dependencies: 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:18.561 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:18:18.562 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:18:18.562 INFO:teuthology.orchestra.run.smithi145.stdout:Install 31 Packages 2024-09-13T05:18:18.562 INFO:teuthology.orchestra.run.smithi145.stdout:Upgrade 2 Packages 2024-09-13T05:18:18.562 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:18.562 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 62 M 2024-09-13T05:18:18.562 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:18:19.578 INFO:teuthology.orchestra.run.smithi145.stdout:(1/33): ceph-base-19.3.0-4911.g9d608eb1.el9.x86 8.7 MB/s | 5.5 MB 00:00 2024-09-13T05:18:19.628 INFO:teuthology.orchestra.run.smithi145.stdout:(2/33): ceph-selinux-19.3.0-4911.g9d608eb1.el9. 506 kB/s | 25 kB 00:00 2024-09-13T05:18:19.712 INFO:teuthology.orchestra.run.smithi145.stdout:(3/33): libcephfs2-19.3.0-4911.g9d608eb1.el9.x8 8.8 MB/s | 755 kB 00:00 2024-09-13T05:18:19.788 INFO:teuthology.orchestra.run.smithi145.stdout:(4/33): libradosstriper1-19.3.0-4911.g9d608eb1. 6.6 MB/s | 508 kB 00:00 2024-09-13T05:18:19.946 INFO:teuthology.orchestra.run.smithi145.stdout:(5/33): ceph-radosgw-19.3.0-4911.g9d608eb1.el9. 11 MB/s | 11 MB 00:00 2024-09-13T05:18:19.996 INFO:teuthology.orchestra.run.smithi145.stdout:(6/33): python3-ceph-argparse-19.3.0-4911.g9d60 905 kB/s | 45 kB 00:00 2024-09-13T05:18:20.063 INFO:teuthology.orchestra.run.smithi145.stdout:(7/33): python3-ceph-common-19.3.0-4911.g9d608e 2.1 MB/s | 143 kB 00:00 2024-09-13T05:18:20.130 INFO:teuthology.orchestra.run.smithi145.stdout:(8/33): python3-cephfs-19.3.0-4911.g9d608eb1.el 2.4 MB/s | 162 kB 00:00 2024-09-13T05:18:20.247 INFO:teuthology.orchestra.run.smithi145.stdout:(9/33): librgw2-19.3.0-4911.g9d608eb1.el9.x86_6 12 MB/s | 5.5 MB 00:00 2024-09-13T05:18:20.272 INFO:teuthology.orchestra.run.smithi145.stdout:(10/33): python3-rados-19.3.0-4911.g9d608eb1.el 2.2 MB/s | 321 kB 00:00 2024-09-13T05:18:20.297 INFO:teuthology.orchestra.run.smithi145.stdout:(11/33): python3-rbd-19.3.0-4911.g9d608eb1.el9. 6.0 MB/s | 305 kB 00:00 2024-09-13T05:18:20.323 INFO:teuthology.orchestra.run.smithi145.stdout:(12/33): python3-rgw-19.3.0-4911.g9d608eb1.el9. 1.9 MB/s | 99 kB 00:00 2024-09-13T05:18:20.531 INFO:teuthology.orchestra.run.smithi145.stdout:(13/33): ceph-common-19.3.0-4911.g9d608eb1.el9. 14 MB/s | 22 MB 00:01 2024-09-13T05:18:20.793 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:18:20.795 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:18:20.795 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:18:20.795 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-radosgw x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 11 M 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout:Upgrading: 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: librados2 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 3.5 M 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: librbd1 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 3.2 M 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-base x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 5.5 M 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-common x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 22 M 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-selinux x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 25 k 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-13T05:18:20.796 INFO:teuthology.orchestra.run.smithi151.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: libcephfs2 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 755 k 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: libnbd x86_64 1.20.2-2.el9 appstream 171 k 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: libradosstriper1 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 508 k 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: librgw2 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 5.5 M 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-13T05:18:20.797 INFO:teuthology.orchestra.run.smithi151.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-13T05:18:20.798 INFO:teuthology.orchestra.run.smithi151.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-13T05:18:20.798 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ceph-argparse x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 45 k 2024-09-13T05:18:20.798 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ceph-common x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 143 k 2024-09-13T05:18:20.798 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cephfs x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 162 k 2024-09-13T05:18:20.798 INFO:teuthology.orchestra.run.smithi151.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-13T05:18:20.798 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rados x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 321 k 2024-09-13T05:18:20.798 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rbd x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 305 k 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rgw x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 99 k 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout:Installing weak dependencies: 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:18:20.799 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:18:20.800 INFO:teuthology.orchestra.run.smithi151.stdout:Install 31 Packages 2024-09-13T05:18:20.800 INFO:teuthology.orchestra.run.smithi151.stdout:Upgrade 2 Packages 2024-09-13T05:18:20.800 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:20.800 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 62 M 2024-09-13T05:18:20.800 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:18:20.906 INFO:teuthology.orchestra.run.smithi145.stdout:(14/33): boost-program-options-1.75.0-8.el9.x86 176 kB/s | 107 kB 00:00 2024-09-13T05:18:20.999 INFO:teuthology.orchestra.run.smithi145.stdout:(15/33): libnbd-1.20.2-2.el9.x86_64.rpm 252 kB/s | 171 kB 00:00 2024-09-13T05:18:21.024 INFO:teuthology.orchestra.run.smithi145.stdout:(16/33): librabbitmq-0.11.0-7.el9.x86_64.rpm 386 kB/s | 45 kB 00:00 2024-09-13T05:18:21.082 INFO:teuthology.orchestra.run.smithi145.stdout:(17/33): libpmemobj-1.12.1-1.el9.x86_64.rpm 291 kB/s | 160 kB 00:00 2024-09-13T05:18:21.199 INFO:teuthology.orchestra.run.smithi145.stdout:(18/33): python3-prettytable-0.7.2-27.el9.noarc 362 kB/s | 42 kB 00:00 2024-09-13T05:18:21.325 INFO:teuthology.orchestra.run.smithi145.stdout:(19/33): lttng-ust-2.12.0-6.el9.x86_64.rpm 973 kB/s | 292 kB 00:00 2024-09-13T05:18:21.442 INFO:teuthology.orchestra.run.smithi145.stdout:(20/33): qatlib-service-24.02.0-1.el9.x86_64.rp 307 kB/s | 36 kB 00:00 2024-09-13T05:18:21.500 INFO:teuthology.orchestra.run.smithi145.stdout:(21/33): qatlib-24.02.0-1.el9.x86_64.rpm 735 kB/s | 221 kB 00:00 2024-09-13T05:18:21.542 INFO:teuthology.orchestra.run.smithi145.stdout:(22/33): librdkafka-1.6.1-102.el9.x86_64.rpm 1.2 MB/s | 662 kB 00:00 2024-09-13T05:18:21.567 INFO:teuthology.orchestra.run.smithi145.stdout:(23/33): qatzip-libs-1.2.0-1.el9.x86_64.rpm 377 kB/s | 47 kB 00:00 2024-09-13T05:18:21.599 INFO:teuthology.orchestra.run.smithi151.stdout:(1/33): ceph-base-19.3.0-4911.g9d608eb1.el9.x86 7.8 MB/s | 5.5 MB 00:00 2024-09-13T05:18:21.609 INFO:teuthology.orchestra.run.smithi145.stdout:(24/33): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.8 MB/s | 308 kB 00:00 2024-09-13T05:18:21.643 INFO:teuthology.orchestra.run.smithi145.stdout:(25/33): libarrow-doc-9.0.0-11.el9.noarch.rpm 384 kB/s | 26 kB 00:00 2024-09-13T05:18:21.658 INFO:teuthology.orchestra.run.smithi151.stdout:(2/33): ceph-selinux-19.3.0-4911.g9d608eb1.el9. 432 kB/s | 25 kB 00:00 2024-09-13T05:18:21.676 INFO:teuthology.orchestra.run.smithi145.stdout:(26/33): liboath-2.6.7-2.el9.x86_64.rpm 746 kB/s | 49 kB 00:00 2024-09-13T05:18:21.703 INFO:teuthology.orchestra.run.smithi145.stdout:(27/33): libunwind-1.6.2-1.el9.x86_64.rpm 1.1 MB/s | 67 kB 00:00 2024-09-13T05:18:21.735 INFO:teuthology.orchestra.run.smithi145.stdout:(28/33): re2-20211101-20.el9.x86_64.rpm 5.6 MB/s | 191 kB 00:00 2024-09-13T05:18:21.777 INFO:teuthology.orchestra.run.smithi145.stdout:(29/33): parquet-libs-9.0.0-11.el9.x86_64.rpm 8.2 MB/s | 839 kB 00:00 2024-09-13T05:18:21.817 INFO:teuthology.orchestra.run.smithi151.stdout:(3/33): ceph-radosgw-19.3.0-4911.g9d608eb1.el9. 12 MB/s | 11 MB 00:00 2024-09-13T05:18:21.845 INFO:teuthology.orchestra.run.smithi145.stdout:(30/33): thrift-0.15.0-2.el9.x86_64.rpm 15 MB/s | 1.6 MB 00:00 2024-09-13T05:18:21.858 INFO:teuthology.orchestra.run.smithi151.stdout:(4/33): libcephfs2-19.3.0-4911.g9d608eb1.el9.x8 3.7 MB/s | 755 kB 00:00 2024-09-13T05:18:21.892 INFO:teuthology.orchestra.run.smithi151.stdout:(5/33): libradosstriper1-19.3.0-4911.g9d608eb1. 6.6 MB/s | 508 kB 00:00 2024-09-13T05:18:21.920 INFO:teuthology.orchestra.run.smithi145.stdout:(31/33): libarrow-9.0.0-11.el9.x86_64.rpm 12 MB/s | 4.4 MB 00:00 2024-09-13T05:18:21.951 INFO:teuthology.orchestra.run.smithi151.stdout:(6/33): python3-ceph-argparse-19.3.0-4911.g9d60 773 kB/s | 45 kB 00:00 2024-09-13T05:18:22.009 INFO:teuthology.orchestra.run.smithi151.stdout:(7/33): python3-ceph-common-19.3.0-4911.g9d608e 2.4 MB/s | 143 kB 00:00 2024-09-13T05:18:22.085 INFO:teuthology.orchestra.run.smithi151.stdout:(8/33): python3-cephfs-19.3.0-4911.g9d608eb1.el 2.1 MB/s | 162 kB 00:00 2024-09-13T05:18:22.177 INFO:teuthology.orchestra.run.smithi151.stdout:(9/33): python3-rados-19.3.0-4911.g9d608eb1.el9 3.4 MB/s | 321 kB 00:00 2024-09-13T05:18:22.212 INFO:teuthology.orchestra.run.smithi145.stdout:(32/33): librbd1-19.3.0-4911.g9d608eb1.el9.x86_ 8.9 MB/s | 3.2 MB 00:00 2024-09-13T05:18:22.262 INFO:teuthology.orchestra.run.smithi145.stdout:(33/33): librados2-19.3.0-4911.g9d608eb1.el9.x8 7.1 MB/s | 3.5 MB 00:00 2024-09-13T05:18:22.267 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:18:22.267 INFO:teuthology.orchestra.run.smithi145.stdout:Total 17 MB/s | 62 MB 00:03 2024-09-13T05:18:22.386 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:18:22.402 INFO:teuthology.orchestra.run.smithi151.stdout:(10/33): ceph-common-19.3.0-4911.g9d608eb1.el9. 14 MB/s | 22 MB 00:01 2024-09-13T05:18:22.422 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:18:22.422 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:18:22.427 INFO:teuthology.orchestra.run.smithi151.stdout:(11/33): python3-rbd-19.3.0-4911.g9d608eb1.el9. 1.2 MB/s | 305 kB 00:00 2024-09-13T05:18:22.453 INFO:teuthology.orchestra.run.smithi151.stdout:(12/33): python3-rgw-19.3.0-4911.g9d608eb1.el9. 1.9 MB/s | 99 kB 00:00 2024-09-13T05:18:22.595 INFO:teuthology.orchestra.run.smithi151.stdout:(13/33): boost-program-options-1.75.0-8.el9.x86 640 kB/s | 107 kB 00:00 2024-09-13T05:18:22.662 INFO:teuthology.orchestra.run.smithi151.stdout:(14/33): libnbd-1.20.2-2.el9.x86_64.rpm 818 kB/s | 171 kB 00:00 2024-09-13T05:18:22.737 INFO:teuthology.orchestra.run.smithi151.stdout:(15/33): librgw2-19.3.0-4911.g9d608eb1.el9.x86_ 6.3 MB/s | 5.5 MB 00:00 2024-09-13T05:18:22.763 INFO:teuthology.orchestra.run.smithi151.stdout:(16/33): libpmemobj-1.12.1-1.el9.x86_64.rpm 956 kB/s | 160 kB 00:00 2024-09-13T05:18:22.789 INFO:teuthology.orchestra.run.smithi151.stdout:(17/33): librabbitmq-0.11.0-7.el9.x86_64.rpm 359 kB/s | 45 kB 00:00 2024-09-13T05:18:22.847 INFO:teuthology.orchestra.run.smithi151.stdout:(18/33): python3-prettytable-0.7.2-27.el9.noarc 725 kB/s | 42 kB 00:00 2024-09-13T05:18:22.872 INFO:teuthology.orchestra.run.smithi151.stdout:(19/33): librdkafka-1.6.1-102.el9.x86_64.rpm 4.8 MB/s | 662 kB 00:00 2024-09-13T05:18:22.931 INFO:teuthology.orchestra.run.smithi151.stdout:(20/33): qatlib-service-24.02.0-1.el9.x86_64.rp 613 kB/s | 36 kB 00:00 2024-09-13T05:18:22.956 INFO:teuthology.orchestra.run.smithi151.stdout:(21/33): qatlib-24.02.0-1.el9.x86_64.rpm 2.0 MB/s | 221 kB 00:00 2024-09-13T05:18:22.963 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:18:22.964 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:18:22.981 INFO:teuthology.orchestra.run.smithi151.stdout:(22/33): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.3 MB/s | 292 kB 00:00 2024-09-13T05:18:22.998 INFO:teuthology.orchestra.run.smithi151.stdout:(23/33): qatzip-libs-1.2.0-1.el9.x86_64.rpm 703 kB/s | 47 kB 00:00 2024-09-13T05:18:23.057 INFO:teuthology.orchestra.run.smithi151.stdout:(24/33): gperftools-libs-2.9.1-3.el9.x86_64.rpm 3.0 MB/s | 308 kB 00:00 2024-09-13T05:18:23.074 INFO:teuthology.orchestra.run.smithi151.stdout:(25/33): liboath-2.6.7-2.el9.x86_64.rpm 3.2 MB/s | 49 kB 00:00 2024-09-13T05:18:23.091 INFO:teuthology.orchestra.run.smithi151.stdout:(26/33): libarrow-doc-9.0.0-11.el9.noarch.rpm 332 kB/s | 26 kB 00:00 2024-09-13T05:18:23.116 INFO:teuthology.orchestra.run.smithi151.stdout:(27/33): libunwind-1.6.2-1.el9.x86_64.rpm 1.6 MB/s | 67 kB 00:00 2024-09-13T05:18:23.142 INFO:teuthology.orchestra.run.smithi151.stdout:(28/33): re2-20211101-20.el9.x86_64.rpm 7.4 MB/s | 191 kB 00:00 2024-09-13T05:18:23.260 INFO:teuthology.orchestra.run.smithi151.stdout:(29/33): thrift-0.15.0-2.el9.x86_64.rpm 13 MB/s | 1.6 MB 00:00 2024-09-13T05:18:23.309 INFO:teuthology.orchestra.run.smithi151.stdout:(30/33): parquet-libs-9.0.0-11.el9.x86_64.rpm 3.8 MB/s | 839 kB 00:00 2024-09-13T05:18:23.410 INFO:teuthology.orchestra.run.smithi151.stdout:(31/33): libarrow-9.0.0-11.el9.x86_64.rpm 10 MB/s | 4.4 MB 00:00 2024-09-13T05:18:23.552 INFO:teuthology.orchestra.run.smithi151.stdout:(32/33): librbd1-19.3.0-4911.g9d608eb1.el9.x86_ 13 MB/s | 3.2 MB 00:00 2024-09-13T05:18:23.685 INFO:teuthology.orchestra.run.smithi151.stdout:(33/33): librados2-19.3.0-4911.g9d608eb1.el9.x8 8.2 MB/s | 3.5 MB 00:00 2024-09-13T05:18:23.690 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:18:23.690 INFO:teuthology.orchestra.run.smithi151.stdout:Total 21 MB/s | 62 MB 00:02 2024-09-13T05:18:23.709 INFO:teuthology.orchestra.run.smithi153.stdout:CentOS Stream 9 - CRB 3.4 MB/s | 6.5 MB 00:01 2024-09-13T05:18:23.806 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:18:23.843 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:18:23.843 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:18:24.365 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:18:24.365 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:18:24.444 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:18:24.537 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/35 2024-09-13T05:18:24.575 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/35 2024-09-13T05:18:24.601 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/35 2024-09-13T05:18:24.624 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-13T05:18:24.644 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-13T05:18:24.792 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-13T05:18:24.854 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-13T05:18:25.209 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/35 2024-09-13T05:18:25.327 INFO:teuthology.orchestra.run.smithi145.stdout: Upgrading : librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 7/35 2024-09-13T05:18:25.410 INFO:teuthology.orchestra.run.smithi153.stdout:CentOS Stream 9 - Extras packages 48 kB/s | 19 kB 00:00 2024-09-13T05:18:25.420 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 7/35 2024-09-13T05:18:25.510 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 8/35 2024-09-13T05:18:25.546 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 9/35 2024-09-13T05:18:25.609 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 9/35 2024-09-13T05:18:25.646 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/35 2024-09-13T05:18:25.690 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-ceph-argparse-2:19.3.0-4911.g9d608eb1.el9. 11/35 2024-09-13T05:18:25.770 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 12/35 2024-09-13T05:18:25.798 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_6 13/35 2024-09-13T05:18:25.862 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_6 13/35 2024-09-13T05:18:25.863 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:18:25.896 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/35 2024-09-13T05:18:25.948 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/35 2024-09-13T05:18:25.991 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/35 2024-09-13T05:18:26.008 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/35 2024-09-13T05:18:26.016 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/35 2024-09-13T05:18:26.045 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-13T05:18:26.047 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/35 2024-09-13T05:18:26.070 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-13T05:18:26.091 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/35 2024-09-13T05:18:26.129 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/35 2024-09-13T05:18:26.158 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/35 2024-09-13T05:18:26.192 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-13T05:18:26.229 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/35 2024-09-13T05:18:26.247 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-13T05:18:26.302 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-13T05:18:26.356 INFO:teuthology.orchestra.run.smithi153.stdout:Extra Packages for Enterprise Linux 28 MB/s | 23 MB 00:00 2024-09-13T05:18:26.545 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libnbd-1.20.2-2.el9.x86_64 22/35 2024-09-13T05:18:26.588 INFO:teuthology.orchestra.run.smithi145.stdout: Upgrading : librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 23/35 2024-09-13T05:18:26.660 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/35 2024-09-13T05:18:26.684 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 23/35 2024-09-13T05:18:26.727 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 24/35 2024-09-13T05:18:26.763 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 25/35 2024-09-13T05:18:26.774 INFO:teuthology.orchestra.run.smithi151.stdout: Upgrading : librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 7/35 2024-09-13T05:18:26.867 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 7/35 2024-09-13T05:18:26.957 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 8/35 2024-09-13T05:18:26.985 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 9/35 2024-09-13T05:18:27.048 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 9/35 2024-09-13T05:18:27.076 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/35 2024-09-13T05:18:27.112 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-ceph-argparse-2:19.3.0-4911.g9d608eb1.el9. 11/35 2024-09-13T05:18:27.182 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 12/35 2024-09-13T05:18:27.212 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_6 13/35 2024-09-13T05:18:27.254 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 26/35 2024-09-13T05:18:27.277 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_6 13/35 2024-09-13T05:18:27.304 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 27/35 2024-09-13T05:18:27.311 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/35 2024-09-13T05:18:27.378 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 27/35 2024-09-13T05:18:27.423 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/35 2024-09-13T05:18:27.447 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 28/35 2024-09-13T05:18:27.463 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/35 2024-09-13T05:18:27.501 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-ceph-common-2:19.3.0-4911.g9d608eb1.el9.x8 29/35 2024-09-13T05:18:27.504 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/35 2024-09-13T05:18:27.536 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/35 2024-09-13T05:18:27.574 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/35 2024-09-13T05:18:27.607 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-13T05:18:27.645 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/35 2024-09-13T05:18:27.972 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libnbd-1.20.2-2.el9.x86_64 22/35 2024-09-13T05:18:28.021 INFO:teuthology.orchestra.run.smithi151.stdout: Upgrading : librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 23/35 2024-09-13T05:18:28.113 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 23/35 2024-09-13T05:18:28.143 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 24/35 2024-09-13T05:18:28.179 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 25/35 2024-09-13T05:18:28.680 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 26/35 2024-09-13T05:18:28.708 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 27/35 2024-09-13T05:18:28.779 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 27/35 2024-09-13T05:18:28.866 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 28/35 2024-09-13T05:18:28.894 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-ceph-common-2:19.3.0-4911.g9d608eb1.el9.x8 29/35 2024-09-13T05:18:29.817 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 30/35 2024-09-13T05:18:29.856 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 30/35 2024-09-13T05:18:30.431 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 30/35 2024-09-13T05:18:30.467 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 31/35 2024-09-13T05:18:30.559 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 31/35 2024-09-13T05:18:30.560 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-13T05:18:30.560 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-13T05:18:30.560 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:30.602 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 32/35 2024-09-13T05:18:31.250 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 30/35 2024-09-13T05:18:31.292 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 30/35 2024-09-13T05:18:31.857 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 30/35 2024-09-13T05:18:31.896 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 31/35 2024-09-13T05:18:31.936 INFO:teuthology.orchestra.run.smithi153.stdout:lab-extras 38 kB/s | 1.7 kB 00:00 2024-09-13T05:18:31.988 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 31/35 2024-09-13T05:18:31.988 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-13T05:18:31.988 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-13T05:18:31.988 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:32.023 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 32/35 2024-09-13T05:18:34.320 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:18:34.322 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:18:34.322 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:18:34.322 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:18:34.322 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:18:34.322 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-radosgw x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 11 M 2024-09-13T05:18:34.322 INFO:teuthology.orchestra.run.smithi153.stdout:Upgrading: 2024-09-13T05:18:34.322 INFO:teuthology.orchestra.run.smithi153.stdout: librados2 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 3.5 M 2024-09-13T05:18:34.322 INFO:teuthology.orchestra.run.smithi153.stdout: librbd1 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 3.2 M 2024-09-13T05:18:34.322 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-base x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 5.5 M 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-common x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 22 M 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-selinux x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 25 k 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: libcephfs2 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 755 k 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: libnbd x86_64 1.20.2-2.el9 appstream 171 k 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-13T05:18:34.323 INFO:teuthology.orchestra.run.smithi153.stdout: libradosstriper1 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 508 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: librgw2 x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 5.5 M 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: python3-ceph-argparse x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 45 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: python3-ceph-common x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 143 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cephfs x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 162 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: python3-rados x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 321 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: python3-rbd x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 305 k 2024-09-13T05:18:34.324 INFO:teuthology.orchestra.run.smithi153.stdout: python3-rgw x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 99 k 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout:Installing weak dependencies: 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout:Install 31 Packages 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout:Upgrade 2 Packages 2024-09-13T05:18:34.325 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:18:34.326 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 62 M 2024-09-13T05:18:34.326 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:18:35.079 INFO:teuthology.orchestra.run.smithi153.stdout:(1/33): ceph-base-19.3.0-4911.g9d608eb1.el9.x86 9.4 MB/s | 5.5 MB 00:00 2024-09-13T05:18:35.146 INFO:teuthology.orchestra.run.smithi153.stdout:(2/33): ceph-selinux-19.3.0-4911.g9d608eb1.el9. 379 kB/s | 25 kB 00:00 2024-09-13T05:18:35.280 INFO:teuthology.orchestra.run.smithi153.stdout:(3/33): ceph-radosgw-19.3.0-4911.g9d608eb1.el9. 14 MB/s | 11 MB 00:00 2024-09-13T05:18:35.313 INFO:teuthology.orchestra.run.smithi153.stdout:(4/33): libcephfs2-19.3.0-4911.g9d608eb1.el9.x8 4.4 MB/s | 755 kB 00:00 2024-09-13T05:18:35.347 INFO:teuthology.orchestra.run.smithi153.stdout:(5/33): libradosstriper1-19.3.0-4911.g9d608eb1. 7.4 MB/s | 508 kB 00:00 2024-09-13T05:18:35.406 INFO:teuthology.orchestra.run.smithi153.stdout:(6/33): python3-ceph-argparse-19.3.0-4911.g9d60 773 kB/s | 45 kB 00:00 2024-09-13T05:18:35.489 INFO:teuthology.orchestra.run.smithi153.stdout:(7/33): python3-ceph-common-19.3.0-4911.g9d608e 1.7 MB/s | 143 kB 00:00 2024-09-13T05:18:35.623 INFO:teuthology.orchestra.run.smithi153.stdout:(8/33): librgw2-19.3.0-4911.g9d608eb1.el9.x86_6 18 MB/s | 5.5 MB 00:00 2024-09-13T05:18:35.648 INFO:teuthology.orchestra.run.smithi153.stdout:(9/33): python3-cephfs-19.3.0-4911.g9d608eb1.el 1.0 MB/s | 162 kB 00:00 2024-09-13T05:18:35.857 INFO:teuthology.orchestra.run.smithi153.stdout:(10/33): ceph-common-19.3.0-4911.g9d608eb1.el9. 16 MB/s | 22 MB 00:01 2024-09-13T05:18:35.898 INFO:teuthology.orchestra.run.smithi153.stdout:(11/33): python3-rados-19.3.0-4911.g9d608eb1.el 1.1 MB/s | 321 kB 00:00 2024-09-13T05:18:35.924 INFO:teuthology.orchestra.run.smithi153.stdout:(12/33): python3-rgw-19.3.0-4911.g9d608eb1.el9. 1.5 MB/s | 99 kB 00:00 2024-09-13T05:18:35.949 INFO:teuthology.orchestra.run.smithi153.stdout:(13/33): python3-rbd-19.3.0-4911.g9d608eb1.el9. 1.0 MB/s | 305 kB 00:00 2024-09-13T05:18:36.025 INFO:teuthology.orchestra.run.smithi153.stdout:(14/33): boost-program-options-1.75.0-8.el9.x86 851 kB/s | 107 kB 00:00 2024-09-13T05:18:36.058 INFO:teuthology.orchestra.run.smithi153.stdout:(15/33): librabbitmq-0.11.0-7.el9.x86_64.rpm 1.3 MB/s | 45 kB 00:00 2024-09-13T05:18:36.083 INFO:teuthology.orchestra.run.smithi153.stdout:(16/33): libnbd-1.20.2-2.el9.x86_64.rpm 1.0 MB/s | 171 kB 00:00 2024-09-13T05:18:36.108 INFO:teuthology.orchestra.run.smithi153.stdout:(17/33): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.0 MB/s | 160 kB 00:00 2024-09-13T05:18:36.160 INFO:teuthology.orchestra.run.smithi153.stdout:(18/33): lttng-ust-2.12.0-6.el9.x86_64.rpm 3.8 MB/s | 292 kB 00:00 2024-09-13T05:18:36.176 INFO:teuthology.orchestra.run.smithi153.stdout:(19/33): python3-prettytable-0.7.2-27.el9.noarc 632 kB/s | 42 kB 00:00 2024-09-13T05:18:36.210 INFO:teuthology.orchestra.run.smithi153.stdout:(20/33): librdkafka-1.6.1-102.el9.x86_64.rpm 4.3 MB/s | 662 kB 00:00 2024-09-13T05:18:36.227 INFO:teuthology.orchestra.run.smithi153.stdout:(21/33): qatlib-service-24.02.0-1.el9.x86_64.rp 711 kB/s | 36 kB 00:00 2024-09-13T05:18:36.252 INFO:teuthology.orchestra.run.smithi153.stdout:(22/33): qatlib-24.02.0-1.el9.x86_64.rpm 2.3 MB/s | 221 kB 00:00 2024-09-13T05:18:36.277 INFO:teuthology.orchestra.run.smithi153.stdout:(23/33): qatzip-libs-1.2.0-1.el9.x86_64.rpm 706 kB/s | 47 kB 00:00 2024-09-13T05:18:36.327 INFO:teuthology.orchestra.run.smithi153.stdout:(24/33): gperftools-libs-2.9.1-3.el9.x86_64.rpm 3.0 MB/s | 308 kB 00:00 2024-09-13T05:18:36.344 INFO:teuthology.orchestra.run.smithi153.stdout:(25/33): liboath-2.6.7-2.el9.x86_64.rpm 3.3 MB/s | 49 kB 00:00 2024-09-13T05:18:36.361 INFO:teuthology.orchestra.run.smithi153.stdout:(26/33): libarrow-doc-9.0.0-11.el9.noarch.rpm 352 kB/s | 26 kB 00:00 2024-09-13T05:18:36.387 INFO:teuthology.orchestra.run.smithi153.stdout:(27/33): libunwind-1.6.2-1.el9.x86_64.rpm 1.6 MB/s | 67 kB 00:00 2024-09-13T05:18:36.412 INFO:teuthology.orchestra.run.smithi153.stdout:(28/33): re2-20211101-20.el9.x86_64.rpm 7.5 MB/s | 191 kB 00:00 2024-09-13T05:18:36.462 INFO:teuthology.orchestra.run.smithi153.stdout:(29/33): parquet-libs-9.0.0-11.el9.x86_64.rpm 8.2 MB/s | 839 kB 00:00 2024-09-13T05:18:36.504 INFO:teuthology.orchestra.run.smithi153.stdout:(30/33): thrift-0.15.0-2.el9.x86_64.rpm 17 MB/s | 1.6 MB 00:00 2024-09-13T05:18:36.588 INFO:teuthology.orchestra.run.smithi153.stdout:(31/33): libarrow-9.0.0-11.el9.x86_64.rpm 13 MB/s | 4.4 MB 00:00 2024-09-13T05:18:36.713 INFO:teuthology.orchestra.run.smithi153.stdout:(32/33): librados2-19.3.0-4911.g9d608eb1.el9.x8 14 MB/s | 3.5 MB 00:00 2024-09-13T05:18:36.780 INFO:teuthology.orchestra.run.smithi153.stdout:(33/33): librbd1-19.3.0-4911.g9d608eb1.el9.x86_ 12 MB/s | 3.2 MB 00:00 2024-09-13T05:18:36.785 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:18:36.785 INFO:teuthology.orchestra.run.smithi153.stdout:Total 25 MB/s | 62 MB 00:02 2024-09-13T05:18:36.893 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:18:36.930 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:18:36.930 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:18:37.452 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:18:37.452 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:18:38.975 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:18:39.064 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/35 2024-09-13T05:18:39.113 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/35 2024-09-13T05:18:39.143 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/35 2024-09-13T05:18:39.166 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-13T05:18:39.190 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/35 2024-09-13T05:18:39.385 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-13T05:18:39.439 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/35 2024-09-13T05:18:39.842 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/35 2024-09-13T05:18:39.903 INFO:teuthology.orchestra.run.smithi153.stdout: Upgrading : librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 7/35 2024-09-13T05:18:39.996 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 7/35 2024-09-13T05:18:40.086 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 8/35 2024-09-13T05:18:40.129 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 9/35 2024-09-13T05:18:40.184 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 9/35 2024-09-13T05:18:40.221 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/35 2024-09-13T05:18:40.265 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-ceph-argparse-2:19.3.0-4911.g9d608eb1.el9. 11/35 2024-09-13T05:18:40.335 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 12/35 2024-09-13T05:18:40.365 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_6 13/35 2024-09-13T05:18:40.429 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_6 13/35 2024-09-13T05:18:40.472 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/35 2024-09-13T05:18:40.520 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 32/35 2024-09-13T05:18:40.520 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /sys 2024-09-13T05:18:40.520 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /proc 2024-09-13T05:18:40.520 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /mnt 2024-09-13T05:18:40.520 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /var/tmp 2024-09-13T05:18:40.520 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /home 2024-09-13T05:18:40.520 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /root 2024-09-13T05:18:40.520 INFO:teuthology.orchestra.run.smithi145.stdout:skipping the directory /tmp 2024-09-13T05:18:40.520 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:40.585 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/35 2024-09-13T05:18:40.623 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/35 2024-09-13T05:18:40.664 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/35 2024-09-13T05:18:40.696 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/35 2024-09-13T05:18:40.726 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/35 2024-09-13T05:18:40.759 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-13T05:18:40.796 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/35 2024-09-13T05:18:41.115 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libnbd-1.20.2-2.el9.x86_64 22/35 2024-09-13T05:18:41.164 INFO:teuthology.orchestra.run.smithi153.stdout: Upgrading : librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 23/35 2024-09-13T05:18:41.254 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 23/35 2024-09-13T05:18:41.285 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 24/35 2024-09-13T05:18:41.322 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 25/35 2024-09-13T05:18:41.526 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/35 2024-09-13T05:18:41.552 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/35 2024-09-13T05:18:41.552 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:18:41.552 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-13T05:18:41.552 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T05:18:41.552 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T05:18:41.552 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:41.554 INFO:teuthology.orchestra.run.smithi145.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-13T05:18:41.645 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-13T05:18:41.646 INFO:teuthology.orchestra.run.smithi145.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-13T05:18:41.815 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 26/35 2024-09-13T05:18:41.841 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 27/35 2024-09-13T05:18:41.912 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 27/35 2024-09-13T05:18:41.982 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 28/35 2024-09-13T05:18:42.010 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-ceph-common-2:19.3.0-4911.g9d608eb1.el9.x8 29/35 2024-09-13T05:18:42.167 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 32/35 2024-09-13T05:18:42.168 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /sys 2024-09-13T05:18:42.168 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /proc 2024-09-13T05:18:42.168 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /mnt 2024-09-13T05:18:42.168 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /var/tmp 2024-09-13T05:18:42.168 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /home 2024-09-13T05:18:42.168 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /root 2024-09-13T05:18:42.168 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /tmp 2024-09-13T05:18:42.168 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:42.818 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-13T05:18:42.818 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/35 2024-09-13T05:18:42.818 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/35 2024-09-13T05:18:42.818 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/35 2024-09-13T05:18:42.818 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/35 2024-09-13T05:18:42.818 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 5/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_6 6/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 7/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-ceph-argparse-2:19.3.0-4911.g9d608eb1.el9. 8/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-ceph-common-2:19.3.0-4911.g9d608eb1.el9.x8 9/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 10/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 11/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 12/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 13/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libnbd-1.20.2-2.el9.x86_64 15/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 16/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 17/35 2024-09-13T05:18:42.819 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 18/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 19/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 21/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 22/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 23/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 24/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 25/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 26/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 27/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 28/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 29/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : re2-1:20211101-20.el9.x86_64 30/35 2024-09-13T05:18:42.820 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 31/35 2024-09-13T05:18:42.821 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 32/35 2024-09-13T05:18:42.821 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 33/35 2024-09-13T05:18:42.821 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 34/35 2024-09-13T05:18:43.197 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/35 2024-09-13T05:18:43.222 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/35 2024-09-13T05:18:43.223 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:18:43.223 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-13T05:18:43.223 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T05:18:43.223 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T05:18:43.223 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:43.225 INFO:teuthology.orchestra.run.smithi151.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-13T05:18:43.309 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-13T05:18:43.309 INFO:teuthology.orchestra.run.smithi151.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-13T05:18:43.696 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 35/35 2024-09-13T05:18:43.696 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:43.696 INFO:teuthology.orchestra.run.smithi145.stdout:Upgraded: 2024-09-13T05:18:43.696 INFO:teuthology.orchestra.run.smithi145.stdout: librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.696 INFO:teuthology.orchestra.run.smithi145.stdout: librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.696 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:18:43.696 INFO:teuthology.orchestra.run.smithi145.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-13T05:18:43.696 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: libnbd-1.20.2-2.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.697 INFO:teuthology.orchestra.run.smithi145.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ceph-argparse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-13T05:18:43.698 INFO:teuthology.orchestra.run.smithi145.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-13T05:18:43.699 INFO:teuthology.orchestra.run.smithi145.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-13T05:18:43.699 INFO:teuthology.orchestra.run.smithi145.stdout: re2-1:20211101-20.el9.x86_64 2024-09-13T05:18:43.699 INFO:teuthology.orchestra.run.smithi145.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-13T05:18:43.699 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:43.699 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:18:44.084 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-test 2024-09-13T05:18:44.461 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-13T05:18:44.461 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/35 2024-09-13T05:18:44.461 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/35 2024-09-13T05:18:44.461 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/35 2024-09-13T05:18:44.461 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/35 2024-09-13T05:18:44.461 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 5/35 2024-09-13T05:18:44.461 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_6 6/35 2024-09-13T05:18:44.461 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 7/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-ceph-argparse-2:19.3.0-4911.g9d608eb1.el9. 8/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-ceph-common-2:19.3.0-4911.g9d608eb1.el9.x8 9/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 10/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 11/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 12/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 13/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libnbd-1.20.2-2.el9.x86_64 15/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 16/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 17/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 18/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 19/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-13T05:18:44.462 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 21/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 22/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 23/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 24/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 25/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 26/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 27/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 28/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 29/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : re2-1:20211101-20.el9.x86_64 30/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 31/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 32/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 33/35 2024-09-13T05:18:44.463 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 34/35 2024-09-13T05:18:44.609 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 30/35 2024-09-13T05:18:44.649 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 30/35 2024-09-13T05:18:44.655 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:28 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:18:44.786 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:18:44.787 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:18:44.787 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:18:44.787 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:18:44.787 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:18:44.787 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-test x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 50 M 2024-09-13T05:18:44.787 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:18:44.787 INFO:teuthology.orchestra.run.smithi145.stdout: libcephsqlite x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 161 k 2024-09-13T05:18:44.788 INFO:teuthology.orchestra.run.smithi145.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-13T05:18:44.788 INFO:teuthology.orchestra.run.smithi145.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-13T05:18:44.788 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:44.788 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:18:44.788 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:18:44.788 INFO:teuthology.orchestra.run.smithi145.stdout:Install 4 Packages 2024-09-13T05:18:44.788 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:44.789 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 51 M 2024-09-13T05:18:44.790 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 217 M 2024-09-13T05:18:44.790 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:18:45.102 INFO:teuthology.orchestra.run.smithi145.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.6 MB/s | 304 kB 00:00 2024-09-13T05:18:45.127 INFO:teuthology.orchestra.run.smithi145.stdout:(2/4): libcephsqlite-19.3.0-4911.g9d608eb1.el9. 744 kB/s | 161 kB 00:00 2024-09-13T05:18:45.153 INFO:teuthology.orchestra.run.smithi145.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.2 MB/s | 64 kB 00:00 2024-09-13T05:18:45.217 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 30/35 2024-09-13T05:18:45.252 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 31/35 2024-09-13T05:18:45.356 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 31/35 2024-09-13T05:18:45.356 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-13T05:18:45.357 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-13T05:18:45.357 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:18:45.395 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 32/35 2024-09-13T05:18:45.482 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 35/35 2024-09-13T05:18:45.482 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout:Upgraded: 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-13T05:18:45.483 INFO:teuthology.orchestra.run.smithi151.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: libnbd-1.20.2-2.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-13T05:18:45.484 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ceph-argparse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: re2-1:20211101-20.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:45.485 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:18:45.851 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-test 2024-09-13T05:18:46.420 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:28 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:18:46.553 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-test x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 50 M 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout: libcephsqlite x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 161 k 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:46.554 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:18:46.555 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:18:46.555 INFO:teuthology.orchestra.run.smithi151.stdout:Install 4 Packages 2024-09-13T05:18:46.555 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:46.555 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 51 M 2024-09-13T05:18:46.555 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 217 M 2024-09-13T05:18:46.555 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:18:46.861 INFO:teuthology.orchestra.run.smithi145.stdout:(4/4): ceph-test-19.3.0-4911.g9d608eb1.el9.x86_ 26 MB/s | 50 MB 00:01 2024-09-13T05:18:46.863 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:18:46.864 INFO:teuthology.orchestra.run.smithi145.stdout:Total 24 MB/s | 51 MB 00:02 2024-09-13T05:18:46.880 INFO:teuthology.orchestra.run.smithi151.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.5 MB/s | 304 kB 00:00 2024-09-13T05:18:46.892 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:18:46.905 INFO:teuthology.orchestra.run.smithi151.stdout:(2/4): libcephsqlite-19.3.0-4911.g9d608eb1.el9. 732 kB/s | 161 kB 00:00 2024-09-13T05:18:46.912 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:18:46.912 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:18:46.931 INFO:teuthology.orchestra.run.smithi151.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.2 MB/s | 64 kB 00:00 2024-09-13T05:18:47.295 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:18:47.296 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:18:47.840 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:18:47.912 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-13T05:18:47.951 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-13T05:18:47.987 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/4 2024-09-13T05:18:48.264 INFO:teuthology.orchestra.run.smithi151.stdout:(4/4): ceph-test-19.3.0-4911.g9d608eb1.el9.x86_ 32 MB/s | 50 MB 00:01 2024-09-13T05:18:48.266 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:18:48.267 INFO:teuthology.orchestra.run.smithi151.stdout:Total 30 MB/s | 51 MB 00:01 2024-09-13T05:18:48.294 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:18:48.315 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:18:48.315 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:18:48.699 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:18:48.699 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:18:49.256 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:18:49.333 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-13T05:18:49.372 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-13T05:18:49.400 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/4 2024-09-13T05:18:52.747 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/4 2024-09-13T05:18:52.845 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/4 2024-09-13T05:18:54.138 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/4 2024-09-13T05:18:54.225 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/4 2024-09-13T05:18:55.328 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/4 2024-09-13T05:18:55.328 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/4 2024-09-13T05:18:55.329 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/4 2024-09-13T05:18:55.329 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-13T05:18:55.478 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 32/35 2024-09-13T05:18:55.478 INFO:teuthology.orchestra.run.smithi153.stdout:skipping the directory /sys 2024-09-13T05:18:55.479 INFO:teuthology.orchestra.run.smithi153.stdout:skipping the directory /proc 2024-09-13T05:18:55.479 INFO:teuthology.orchestra.run.smithi153.stdout:skipping the directory /mnt 2024-09-13T05:18:55.479 INFO:teuthology.orchestra.run.smithi153.stdout:skipping the directory /var/tmp 2024-09-13T05:18:55.479 INFO:teuthology.orchestra.run.smithi153.stdout:skipping the directory /home 2024-09-13T05:18:55.479 INFO:teuthology.orchestra.run.smithi153.stdout:skipping the directory /root 2024-09-13T05:18:55.479 INFO:teuthology.orchestra.run.smithi153.stdout:skipping the directory /tmp 2024-09-13T05:18:55.479 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:18:55.719 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-13T05:18:55.719 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:55.719 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:18:55.719 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:55.719 INFO:teuthology.orchestra.run.smithi145.stdout: libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:55.719 INFO:teuthology.orchestra.run.smithi145.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-13T05:18:55.719 INFO:teuthology.orchestra.run.smithi145.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-13T05:18:55.719 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:55.719 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:18:56.008 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph 2024-09-13T05:18:56.528 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/35 2024-09-13T05:18:56.553 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/35 2024-09-13T05:18:56.554 INFO:teuthology.orchestra.run.smithi153.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:18:56.554 INFO:teuthology.orchestra.run.smithi153.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-13T05:18:56.554 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T05:18:56.554 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T05:18:56.554 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:18:56.555 INFO:teuthology.orchestra.run.smithi153.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-13T05:18:56.600 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:40 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:18:56.637 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 34/35 2024-09-13T05:18:56.637 INFO:teuthology.orchestra.run.smithi153.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-13T05:18:56.742 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout: ceph x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 6.6 k 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mds x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 2.4 M 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 1.5 M 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-modules-core noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 291 k 2024-09-13T05:18:56.745 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mon x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 4.8 M 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-osd x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 17 M 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-13T05:18:56.746 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-collections 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-13T05:18:56.747 INFO:teuthology.orchestra.run.smithi145.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-13T05:18:56.748 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:56.749 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:18:56.749 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:18:56.749 INFO:teuthology.orchestra.run.smithi145.stdout:Install 37 Packages 2024-09-13T05:18:56.749 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:18:56.749 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 31 M 2024-09-13T05:18:56.750 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 109 M 2024-09-13T05:18:56.750 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:18:56.796 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/4 2024-09-13T05:18:56.797 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/4 2024-09-13T05:18:56.797 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/4 2024-09-13T05:18:56.797 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-13T05:18:57.165 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-13T05:18:57.165 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:57.166 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:18:57.166 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:57.166 INFO:teuthology.orchestra.run.smithi151.stdout: libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:57.166 INFO:teuthology.orchestra.run.smithi151.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-13T05:18:57.166 INFO:teuthology.orchestra.run.smithi151.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-13T05:18:57.166 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:57.166 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:18:57.362 INFO:teuthology.orchestra.run.smithi145.stdout:(1/37): ceph-19.3.0-4911.g9d608eb1.el9.x86_64.r 54 kB/s | 6.6 kB 00:00 2024-09-13T05:18:57.467 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph 2024-09-13T05:18:57.563 INFO:teuthology.orchestra.run.smithi145.stdout:(2/37): ceph-mgr-19.3.0-4911.g9d608eb1.el9.x86_ 4.7 MB/s | 1.5 MB 00:00 2024-09-13T05:18:57.629 INFO:teuthology.orchestra.run.smithi145.stdout:(3/37): ceph-mds-19.3.0-4911.g9d608eb1.el9.x86_ 6.1 MB/s | 2.4 MB 00:00 2024-09-13T05:18:57.713 INFO:teuthology.orchestra.run.smithi145.stdout:(4/37): ceph-mon-19.3.0-4911.g9d608eb1.el9.x86_ 14 MB/s | 4.8 MB 00:00 2024-09-13T05:18:57.738 INFO:teuthology.orchestra.run.smithi145.stdout:(5/37): ceph-mgr-modules-core-19.3.0-4911.g9d60 2.6 MB/s | 291 kB 00:00 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 35/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 5/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_6 6/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 7/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-ceph-argparse-2:19.3.0-4911.g9d608eb1.el9. 8/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-ceph-common-2:19.3.0-4911.g9d608eb1.el9.x8 9/35 2024-09-13T05:18:57.776 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 10/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 11/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 12/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 13/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libnbd-1.20.2-2.el9.x86_64 15/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 16/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 17/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 18/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 19/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 20/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 21/35 2024-09-13T05:18:57.777 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 22/35 2024-09-13T05:18:57.778 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 23/35 2024-09-13T05:18:57.778 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 24/35 2024-09-13T05:18:57.778 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 25/35 2024-09-13T05:18:57.778 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 26/35 2024-09-13T05:18:57.778 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 27/35 2024-09-13T05:18:57.779 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 28/35 2024-09-13T05:18:57.779 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 29/35 2024-09-13T05:18:57.779 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : re2-1:20211101-20.el9.x86_64 30/35 2024-09-13T05:18:57.779 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 31/35 2024-09-13T05:18:57.779 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 32/35 2024-09-13T05:18:57.779 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 33/35 2024-09-13T05:18:57.779 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 34/35 2024-09-13T05:18:57.881 INFO:teuthology.orchestra.run.smithi145.stdout:(6/37): python3-cryptography-36.0.1-4.el9.x86_6 8.7 MB/s | 1.2 MB 00:00 2024-09-13T05:18:57.939 INFO:teuthology.orchestra.run.smithi145.stdout:(7/37): python3-ply-3.11-14.el9.noarch.rpm 1.8 MB/s | 106 kB 00:00 2024-09-13T05:18:57.964 INFO:teuthology.orchestra.run.smithi145.stdout:(8/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.0 MB/s | 253 kB 00:00 2024-09-13T05:18:57.998 INFO:teuthology.orchestra.run.smithi145.stdout:(9/37): python3-pycparser-2.20-6.el9.noarch.rpm 2.3 MB/s | 135 kB 00:00 2024-09-13T05:18:58.043 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:40 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:18:58.173 INFO:teuthology.orchestra.run.smithi145.stdout:(10/37): ceph-osd-19.3.0-4911.g9d608eb1.el9.x86 28 MB/s | 17 MB 00:00 2024-09-13T05:18:58.179 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:18:58.182 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:18:58.182 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:18:58.182 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:18:58.182 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:18:58.182 INFO:teuthology.orchestra.run.smithi151.stdout: ceph x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 6.6 k 2024-09-13T05:18:58.182 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:18:58.182 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mds x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 2.4 M 2024-09-13T05:18:58.182 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 1.5 M 2024-09-13T05:18:58.183 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-modules-core noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 291 k 2024-09-13T05:18:58.183 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mon x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 4.8 M 2024-09-13T05:18:58.183 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-osd x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 17 M 2024-09-13T05:18:58.183 INFO:teuthology.orchestra.run.smithi151.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-13T05:18:58.183 INFO:teuthology.orchestra.run.smithi151.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-13T05:18:58.183 INFO:teuthology.orchestra.run.smithi151.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-13T05:18:58.183 INFO:teuthology.orchestra.run.smithi151.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-13T05:18:58.183 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-13T05:18:58.183 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-collections 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-13T05:18:58.184 INFO:teuthology.orchestra.run.smithi151.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-13T05:18:58.185 INFO:teuthology.orchestra.run.smithi151.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-13T05:18:58.186 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:58.186 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:18:58.186 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:18:58.186 INFO:teuthology.orchestra.run.smithi151.stdout:Install 37 Packages 2024-09-13T05:18:58.186 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:18:58.186 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 31 M 2024-09-13T05:18:58.186 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 109 M 2024-09-13T05:18:58.186 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:18:58.198 INFO:teuthology.orchestra.run.smithi145.stdout:(11/37): python3-requests-2.25.1-8.el9.noarch.r 533 kB/s | 125 kB 00:00 2024-09-13T05:18:58.249 INFO:teuthology.orchestra.run.smithi145.stdout:(12/37): python3-urllib3-1.26.5-6.el9.noarch.rp 857 kB/s | 215 kB 00:00 2024-09-13T05:18:58.382 INFO:teuthology.orchestra.run.smithi145.stdout:(13/37): python3-markupsafe-1.1.1-12.el9.x86_64 261 kB/s | 35 kB 00:00 2024-09-13T05:18:58.483 INFO:teuthology.orchestra.run.smithi145.stdout:(14/37): python3-mako-1.1.4-6.el9.noarch.rpm 607 kB/s | 172 kB 00:00 2024-09-13T05:18:58.508 INFO:teuthology.orchestra.run.smithi145.stdout:(15/37): lua-5.4.4-4.el9.x86_64.rpm 564 kB/s | 188 kB 00:00 2024-09-13T05:18:58.541 INFO:teuthology.orchestra.run.smithi145.stdout:(16/37): python3-packaging-20.9-5.el9.noarch.rp 486 kB/s | 77 kB 00:00 2024-09-13T05:18:58.567 INFO:teuthology.orchestra.run.smithi145.stdout:(17/37): python3-pytz-2021.1-5.el9.noarch.rpm 608 kB/s | 51 kB 00:00 2024-09-13T05:18:58.592 INFO:teuthology.orchestra.run.smithi145.stdout:(18/37): python3-toml-0.10.2-6.el9.noarch.rpm 496 kB/s | 42 kB 00:00 2024-09-13T05:18:58.642 INFO:teuthology.orchestra.run.smithi145.stdout:(19/37): luarocks-3.9.2-5.el9.noarch.rpm 2.0 MB/s | 151 kB 00:00 2024-09-13T05:18:58.660 INFO:teuthology.orchestra.run.smithi151.stdout:(1/37): ceph-19.3.0-4911.g9d608eb1.el9.x86_64.r 47 kB/s | 6.6 kB 00:00 2024-09-13T05:18:58.667 INFO:teuthology.orchestra.run.smithi145.stdout:(20/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 578 kB/s | 43 kB 00:00 2024-09-13T05:18:58.693 INFO:teuthology.orchestra.run.smithi145.stdout:(21/37): lua-devel-5.4.4-4.el9.x86_64.rpm 147 kB/s | 22 kB 00:00 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 35/35 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout:Upgraded: 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-radosgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-selinux-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-13T05:18:58.701 INFO:teuthology.orchestra.run.smithi153.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: libnbd-1.20.2-2.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: libradosstriper1-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: librgw2-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-13T05:18:58.702 INFO:teuthology.orchestra.run.smithi153.stdout: python3-ceph-argparse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: python3-ceph-common-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: re2-1:20211101-20.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:18:58.703 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:18:58.727 INFO:teuthology.orchestra.run.smithi145.stdout:(22/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 2.0 MB/s | 172 kB 00:00 2024-09-13T05:18:58.760 INFO:teuthology.orchestra.run.smithi145.stdout:(23/37): python3-jaraco-classes-3.2.1-5.el9.noa 692 kB/s | 18 kB 00:00 2024-09-13T05:18:58.785 INFO:teuthology.orchestra.run.smithi145.stdout:(24/37): python3-cherrypy-18.6.1-2.el9.noarch.r 3.0 MB/s | 358 kB 00:00 2024-09-13T05:18:58.811 INFO:teuthology.orchestra.run.smithi145.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 476 kB/s | 23 kB 00:00 2024-09-13T05:18:58.836 INFO:teuthology.orchestra.run.smithi145.stdout:(26/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 75 kB/s | 11 kB 00:00 2024-09-13T05:18:58.852 INFO:teuthology.orchestra.run.smithi151.stdout:(2/37): ceph-mgr-19.3.0-4911.g9d608eb1.el9.x86_ 4.6 MB/s | 1.5 MB 00:00 2024-09-13T05:18:58.861 INFO:teuthology.orchestra.run.smithi145.stdout:(27/37): python3-jaraco-functools-3.5.0-2.el9.n 257 kB/s | 19 kB 00:00 2024-09-13T05:18:58.887 INFO:teuthology.orchestra.run.smithi145.stdout:(28/37): python3-jaraco-text-3.2.0-6.el9.noarch 260 kB/s | 20 kB 00:00 2024-09-13T05:18:58.911 INFO:teuthology.orchestra.run.smithi151.stdout:(3/37): ceph-mds-19.3.0-4911.g9d608eb1.el9.x86_ 6.1 MB/s | 2.4 MB 00:00 2024-09-13T05:18:58.912 INFO:teuthology.orchestra.run.smithi145.stdout:(29/37): python3-logutils-0.3.5-21.el9.noarch.r 615 kB/s | 46 kB 00:00 2024-09-13T05:18:58.937 INFO:teuthology.orchestra.run.smithi145.stdout:(30/37): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-09-13T05:18:58.962 INFO:teuthology.orchestra.run.smithi145.stdout:(31/37): python3-portend-3.1.0-2.el9.noarch.rpm 326 kB/s | 16 kB 00:00 2024-09-13T05:18:58.970 INFO:teuthology.orchestra.run.smithi151.stdout:(4/37): ceph-mgr-modules-core-19.3.0-4911.g9d60 4.9 MB/s | 291 kB 00:00 2024-09-13T05:18:58.987 INFO:teuthology.orchestra.run.smithi145.stdout:(32/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2024-09-13T05:18:59.013 INFO:teuthology.orchestra.run.smithi145.stdout:(33/37): python3-tempora-5.0.0-2.el9.noarch.rpm 712 kB/s | 36 kB 00:00 2024-09-13T05:18:59.038 INFO:teuthology.orchestra.run.smithi145.stdout:(34/37): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-09-13T05:18:59.063 INFO:teuthology.orchestra.run.smithi145.stdout:(35/37): python3-webob-1.8.8-2.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-09-13T05:18:59.066 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-test 2024-09-13T05:18:59.089 INFO:teuthology.orchestra.run.smithi145.stdout:(36/37): python3-zc-lockfile-2.0-10.el9.noarch. 398 kB/s | 20 kB 00:00 2024-09-13T05:18:59.120 INFO:teuthology.orchestra.run.smithi151.stdout:(5/37): ceph-mon-19.3.0-4911.g9d608eb1.el9.x86_ 10 MB/s | 4.8 MB 00:00 2024-09-13T05:18:59.122 INFO:teuthology.orchestra.run.smithi145.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.8 MB/s | 427 kB 00:00 2024-09-13T05:18:59.127 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:18:59.127 INFO:teuthology.orchestra.run.smithi145.stdout:Total 13 MB/s | 31 MB 00:02 2024-09-13T05:18:59.276 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:18:59.316 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:18:59.316 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:18:59.587 INFO:teuthology.orchestra.run.smithi151.stdout:(6/37): ceph-osd-19.3.0-4911.g9d608eb1.el9.x86_ 23 MB/s | 17 MB 00:00 2024-09-13T05:18:59.636 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:00:28 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:18:59.769 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:18:59.769 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-test x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 50 M 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout: libcephsqlite x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 161 k 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout:Install 4 Packages 2024-09-13T05:18:59.770 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:18:59.771 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 51 M 2024-09-13T05:18:59.771 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 217 M 2024-09-13T05:18:59.771 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:18:59.803 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:18:59.803 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:18:59.978 INFO:teuthology.orchestra.run.smithi153.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.9 MB/s | 304 kB 00:00 2024-09-13T05:18:59.979 INFO:teuthology.orchestra.run.smithi151.stdout:(7/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 251 kB/s | 253 kB 00:01 2024-09-13T05:19:00.028 INFO:teuthology.orchestra.run.smithi153.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.2 MB/s | 64 kB 00:00 2024-09-13T05:19:00.053 INFO:teuthology.orchestra.run.smithi153.stdout:(3/4): libcephsqlite-19.3.0-4911.g9d608eb1.el9. 700 kB/s | 161 kB 00:00 2024-09-13T05:19:00.304 INFO:teuthology.orchestra.run.smithi151.stdout:(8/37): python3-cryptography-36.0.1-4.el9.x86_6 1.0 MB/s | 1.2 MB 00:01 2024-09-13T05:19:00.330 INFO:teuthology.orchestra.run.smithi151.stdout:(9/37): python3-ply-3.11-14.el9.noarch.rpm 144 kB/s | 106 kB 00:00 2024-09-13T05:19:00.713 INFO:teuthology.orchestra.run.smithi151.stdout:(10/37): python3-pycparser-2.20-6.el9.noarch.rp 184 kB/s | 135 kB 00:00 2024-09-13T05:19:01.005 INFO:teuthology.orchestra.run.smithi151.stdout:(11/37): python3-requests-2.25.1-8.el9.noarch.r 178 kB/s | 125 kB 00:00 2024-09-13T05:19:01.110 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:01.156 INFO:teuthology.orchestra.run.smithi151.stdout:(12/37): python3-urllib3-1.26.5-6.el9.noarch.rp 260 kB/s | 215 kB 00:00 2024-09-13T05:19:01.158 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-13T05:19:01.199 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-13T05:19:01.236 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-13T05:19:01.264 INFO:teuthology.orchestra.run.smithi151.stdout:(13/37): lua-5.4.4-4.el9.x86_64.rpm 342 kB/s | 188 kB 00:00 2024-09-13T05:19:01.309 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-13T05:19:01.359 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-13T05:19:01.362 INFO:teuthology.orchestra.run.smithi153.stdout:(4/4): ceph-test-19.3.0-4911.g9d608eb1.el9.x86_ 33 MB/s | 50 MB 00:01 2024-09-13T05:19:01.364 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:01.364 INFO:teuthology.orchestra.run.smithi153.stdout:Total 32 MB/s | 51 MB 00:01 2024-09-13T05:19:01.373 INFO:teuthology.orchestra.run.smithi151.stdout:(14/37): python3-packaging-20.9-5.el9.noarch.rp 713 kB/s | 77 kB 00:00 2024-09-13T05:19:01.392 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-13T05:19:01.392 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:19:01.413 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:19:01.413 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:19:01.465 INFO:teuthology.orchestra.run.smithi151.stdout:(15/37): python3-markupsafe-1.1.1-12.el9.x86_64 112 kB/s | 35 kB 00:00 2024-09-13T05:19:01.485 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-13T05:19:01.490 INFO:teuthology.orchestra.run.smithi151.stdout:(16/37): python3-pytz-2021.1-5.el9.noarch.rpm 435 kB/s | 51 kB 00:00 2024-09-13T05:19:01.549 INFO:teuthology.orchestra.run.smithi151.stdout:(17/37): python3-mako-1.1.4-6.el9.noarch.rpm 317 kB/s | 172 kB 00:00 2024-09-13T05:19:01.563 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-13T05:19:01.599 INFO:teuthology.orchestra.run.smithi151.stdout:(18/37): lua-devel-5.4.4-4.el9.x86_64.rpm 205 kB/s | 22 kB 00:00 2024-09-13T05:19:01.625 INFO:teuthology.orchestra.run.smithi151.stdout:(19/37): luarocks-3.9.2-5.el9.noarch.rpm 2.0 MB/s | 151 kB 00:00 2024-09-13T05:19:01.637 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-13T05:19:01.667 INFO:teuthology.orchestra.run.smithi151.stdout:(20/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 4.9 MB/s | 172 kB 00:00 2024-09-13T05:19:01.671 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-13T05:19:01.684 INFO:teuthology.orchestra.run.smithi151.stdout:(21/37): python3-toml-0.10.2-6.el9.noarch.rpm 191 kB/s | 42 kB 00:00 2024-09-13T05:19:01.701 INFO:teuthology.orchestra.run.smithi151.stdout:(22/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 430 kB/s | 43 kB 00:00 2024-09-13T05:19:01.726 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-13T05:19:01.734 INFO:teuthology.orchestra.run.smithi151.stdout:(23/37): python3-cherrypy-18.6.1-2.el9.noarch.r 5.3 MB/s | 358 kB 00:00 2024-09-13T05:19:01.751 INFO:teuthology.orchestra.run.smithi151.stdout:(24/37): python3-jaraco-classes-3.2.1-5.el9.noa 414 kB/s | 18 kB 00:00 2024-09-13T05:19:01.761 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-13T05:19:01.777 INFO:teuthology.orchestra.run.smithi151.stdout:(25/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 115 kB/s | 11 kB 00:00 2024-09-13T05:19:01.794 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-13T05:19:01.795 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:19:01.796 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:19:01.802 INFO:teuthology.orchestra.run.smithi151.stdout:(26/37): python3-jaraco-collections-3.0.0-8.el9 354 kB/s | 23 kB 00:00 2024-09-13T05:19:01.835 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-13T05:19:01.836 INFO:teuthology.orchestra.run.smithi151.stdout:(27/37): python3-jaraco-functools-3.5.0-2.el9.n 230 kB/s | 19 kB 00:00 2024-09-13T05:19:01.861 INFO:teuthology.orchestra.run.smithi151.stdout:(28/37): python3-jaraco-text-3.2.0-6.el9.noarch 233 kB/s | 20 kB 00:00 2024-09-13T05:19:01.870 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-13T05:19:01.886 INFO:teuthology.orchestra.run.smithi151.stdout:(29/37): python3-logutils-0.3.5-21.el9.noarch.r 550 kB/s | 46 kB 00:00 2024-09-13T05:19:01.912 INFO:teuthology.orchestra.run.smithi151.stdout:(30/37): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-09-13T05:19:01.912 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-13T05:19:01.937 INFO:teuthology.orchestra.run.smithi151.stdout:(31/37): python3-portend-3.1.0-2.el9.noarch.rpm 326 kB/s | 16 kB 00:00 2024-09-13T05:19:01.954 INFO:teuthology.orchestra.run.smithi151.stdout:(32/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 2.1 MB/s | 90 kB 00:00 2024-09-13T05:19:01.961 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-13T05:19:01.979 INFO:teuthology.orchestra.run.smithi151.stdout:(33/37): python3-tempora-5.0.0-2.el9.noarch.rpm 853 kB/s | 36 kB 00:00 2024-09-13T05:19:01.993 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-13T05:19:02.005 INFO:teuthology.orchestra.run.smithi151.stdout:(34/37): python3-pecan-1.4.2-3.el9.noarch.rpm 1.9 MB/s | 272 kB 00:00 2024-09-13T05:19:02.030 INFO:teuthology.orchestra.run.smithi151.stdout:(35/37): python3-zc-lockfile-2.0-10.el9.noarch. 803 kB/s | 20 kB 00:00 2024-09-13T05:19:02.056 INFO:teuthology.orchestra.run.smithi151.stdout:(36/37): python3-webob-1.8.8-2.el9.noarch.rpm 2.2 MB/s | 230 kB 00:00 2024-09-13T05:19:02.066 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-13T05:19:02.081 INFO:teuthology.orchestra.run.smithi151.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.1 MB/s | 427 kB 00:00 2024-09-13T05:19:02.086 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:02.086 INFO:teuthology.orchestra.run.smithi151.stdout:Total 7.9 MB/s | 31 MB 00:03 2024-09-13T05:19:02.207 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-13T05:19:02.237 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:19:02.278 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:19:02.278 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:19:02.294 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-13T05:19:02.338 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:19:02.358 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-13T05:19:02.402 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-13T05:19:02.421 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-13T05:19:02.452 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-13T05:19:02.469 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-13T05:19:02.497 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/4 2024-09-13T05:19:02.507 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-13T05:19:02.704 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-13T05:19:02.746 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:19:02.746 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:19:02.757 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-13T05:19:02.835 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-13T05:19:02.932 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-13T05:19:02.973 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-13T05:19:03.100 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-13T05:19:03.312 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-modules-core-2:19.3.0-4911.g9d608eb1.el9. 32/37 2024-09-13T05:19:03.349 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/37 2024-09-13T05:19:03.377 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/37 2024-09-13T05:19:03.377 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:03.377 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-13T05:19:03.377 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T05:19:03.377 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T05:19:03.377 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:04.063 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:19:04.151 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-13T05:19:04.197 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-13T05:19:04.228 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-13T05:19:04.292 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-13T05:19:04.345 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-13T05:19:04.386 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-13T05:19:04.479 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-13T05:19:04.573 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-13T05:19:04.614 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-13T05:19:04.649 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-13T05:19:04.679 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-13T05:19:04.714 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-13T05:19:04.747 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-13T05:19:04.788 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-13T05:19:04.823 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-13T05:19:04.850 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 34/37 2024-09-13T05:19:04.858 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-13T05:19:04.877 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 34/37 2024-09-13T05:19:04.878 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:04.878 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-13T05:19:04.878 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T05:19:04.878 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T05:19:04.878 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:04.907 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-13T05:19:04.938 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-13T05:19:05.012 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-13T05:19:05.153 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-13T05:19:05.241 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-13T05:19:05.293 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-13T05:19:05.326 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 35/37 2024-09-13T05:19:05.331 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-13T05:19:05.350 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 35/37 2024-09-13T05:19:05.350 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:05.350 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-13T05:19:05.350 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T05:19:05.350 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T05:19:05.350 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:05.381 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-13T05:19:05.437 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-13T05:19:05.585 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 36/37 2024-09-13T05:19:05.609 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 36/37 2024-09-13T05:19:05.609 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:05.609 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-13T05:19:05.609 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T05:19:05.609 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T05:19:05.609 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:05.633 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-13T05:19:05.673 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 37/37 2024-09-13T05:19:05.678 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-13T05:19:05.800 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-13T05:19:05.938 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-13T05:19:05.987 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-13T05:19:06.116 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-13T05:19:06.277 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-modules-core-2:19.3.0-4911.g9d608eb1.el9. 32/37 2024-09-13T05:19:06.306 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/37 2024-09-13T05:19:06.332 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/37 2024-09-13T05:19:06.332 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:06.332 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-13T05:19:06.332 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T05:19:06.332 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T05:19:06.332 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:07.275 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/4 2024-09-13T05:19:07.362 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/4 2024-09-13T05:19:07.512 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 37/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 5/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-modules-core-2:19.3.0-4911.g9d608eb1.el9. 6/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-13T05:19:07.513 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-13T05:19:07.514 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-13T05:19:07.515 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-13T05:19:07.799 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 34/37 2024-09-13T05:19:07.827 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 34/37 2024-09-13T05:19:07.827 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:07.827 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-13T05:19:07.827 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T05:19:07.827 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T05:19:07.827 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:08.275 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 35/37 2024-09-13T05:19:08.300 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 35/37 2024-09-13T05:19:08.300 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:08.300 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-13T05:19:08.300 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T05:19:08.300 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T05:19:08.300 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:08.526 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 36/37 2024-09-13T05:19:08.555 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 36/37 2024-09-13T05:19:08.555 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:08.555 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-13T05:19:08.556 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T05:19:08.556 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T05:19:08.556 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:08.563 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-13T05:19:08.563 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:08.563 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:08.563 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:08.563 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:08.563 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-modules-core-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: lua-5.4.4-4.el9.x86_64 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-13T05:19:08.564 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-ply-3.11-14.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-13T05:19:08.565 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:08.566 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:08.622 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 37/37 2024-09-13T05:19:08.978 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-base 2024-09-13T05:19:09.540 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:53 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:09.630 INFO:teuthology.orchestra.run.smithi145.stdout:Package ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:19:09.672 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:09.673 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-13T05:19:09.673 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:09.744 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install cephadm 2024-09-13T05:19:09.817 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/4 2024-09-13T05:19:09.817 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/4 2024-09-13T05:19:09.818 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/4 2024-09-13T05:19:09.818 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-13T05:19:10.186 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-13T05:19:10.186 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:10.186 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:19:10.186 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-test-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:10.186 INFO:teuthology.orchestra.run.smithi153.stdout: libcephsqlite-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:10.186 INFO:teuthology.orchestra.run.smithi153.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-13T05:19:10.186 INFO:teuthology.orchestra.run.smithi153.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-13T05:19:10.186 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:10.187 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:19:10.307 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:54 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:10.417 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 37/37 2024-09-13T05:19:10.417 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/37 2024-09-13T05:19:10.417 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/37 2024-09-13T05:19:10.417 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/37 2024-09-13T05:19:10.417 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/37 2024-09-13T05:19:10.417 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 5/37 2024-09-13T05:19:10.417 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-modules-core-2:19.3.0-4911.g9d608eb1.el9. 6/37 2024-09-13T05:19:10.417 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-13T05:19:10.418 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-13T05:19:10.419 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-13T05:19:10.420 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-13T05:19:10.420 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-13T05:19:10.440 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:10.440 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:10.440 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:19:10.440 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:10.440 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:10.441 INFO:teuthology.orchestra.run.smithi145.stdout: cephadm noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 784 k 2024-09-13T05:19:10.441 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:10.441 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:10.441 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:10.441 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-13T05:19:10.441 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:10.441 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 784 k 2024-09-13T05:19:10.442 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 791 k 2024-09-13T05:19:10.442 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:10.454 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph 2024-09-13T05:19:10.701 INFO:teuthology.orchestra.run.smithi145.stdout:cephadm-19.3.0-4911.g9d608eb1.el9.noarch.rpm 3.0 MB/s | 784 kB 00:00 2024-09-13T05:19:10.702 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:10.702 INFO:teuthology.orchestra.run.smithi145.stdout:Total 2.9 MB/s | 784 kB 00:00 2024-09-13T05:19:10.702 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:10.707 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:10.707 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:10.713 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:10.713 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:10.785 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:11.041 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:00:40 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:19:11.183 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:19:11.185 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:11.185 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: ceph x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 6.6 k 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mds x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 2.4 M 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 1.5 M 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-modules-core noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 291 k 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mon x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 4.8 M 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-osd x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 17 M 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-13T05:19:11.186 INFO:teuthology.orchestra.run.smithi153.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco-collections 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-13T05:19:11.187 INFO:teuthology.orchestra.run.smithi153.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-13T05:19:11.188 INFO:teuthology.orchestra.run.smithi153.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-13T05:19:11.189 INFO:teuthology.orchestra.run.smithi153.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-13T05:19:11.189 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:11.189 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:19:11.189 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:11.189 INFO:teuthology.orchestra.run.smithi153.stdout:Install 37 Packages 2024-09-13T05:19:11.189 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:11.190 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 31 M 2024-09-13T05:19:11.190 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 109 M 2024-09-13T05:19:11.190 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:19:11.214 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:11.296 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:11.397 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-13T05:19:11.397 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-modules-core-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: lua-5.4.4-4.el9.x86_64 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-13T05:19:11.398 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ply-3.11-14.el9.noarch 2024-09-13T05:19:11.399 INFO:teuthology.orchestra.run.smithi151.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:11.400 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:19:11.682 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:11.809 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-base 2024-09-13T05:19:11.913 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:11.913 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:11.913 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:11.913 INFO:teuthology.orchestra.run.smithi145.stdout: cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:11.914 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:11.914 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:12.113 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-immutable-object-cache 2024-09-13T05:19:12.315 INFO:teuthology.orchestra.run.smithi153.stdout:(1/37): ceph-19.3.0-4911.g9d608eb1.el9.x86_64.r 44 kB/s | 6.6 kB 00:00 2024-09-13T05:19:12.376 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:54 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:19:12.466 INFO:teuthology.orchestra.run.smithi151.stdout:Package ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:19:12.506 INFO:teuthology.orchestra.run.smithi153.stdout:(2/37): ceph-mgr-19.3.0-4911.g9d608eb1.el9.x86_ 4.5 MB/s | 1.5 MB 00:00 2024-09-13T05:19:12.508 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:19:12.509 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-09-13T05:19:12.509 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:19:12.565 INFO:teuthology.orchestra.run.smithi153.stdout:(3/37): ceph-mds-19.3.0-4911.g9d608eb1.el9.x86_ 6.0 MB/s | 2.4 MB 00:00 2024-09-13T05:19:12.572 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install cephadm 2024-09-13T05:19:12.665 INFO:teuthology.orchestra.run.smithi153.stdout:(4/37): ceph-mgr-modules-core-19.3.0-4911.g9d60 2.8 MB/s | 291 kB 00:00 2024-09-13T05:19:12.679 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:56 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:12.741 INFO:teuthology.orchestra.run.smithi153.stdout:(5/37): ceph-mon-19.3.0-4911.g9d608eb1.el9.x86_ 11 MB/s | 4.8 MB 00:00 2024-09-13T05:19:12.811 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:12.812 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:12.812 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repo Size 2024-09-13T05:19:12.812 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:12.812 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:12.812 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-immutable-object-cache x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 145 k 2024-09-13T05:19:12.812 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:12.812 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:12.813 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:12.813 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-13T05:19:12.813 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:12.813 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 145 k 2024-09-13T05:19:12.813 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 432 k 2024-09-13T05:19:12.813 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:12.908 INFO:teuthology.orchestra.run.smithi153.stdout:(6/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.0 MB/s | 253 kB 00:00 2024-09-13T05:19:13.066 INFO:teuthology.orchestra.run.smithi145.stdout:ceph-immutable-object-cache-19.3.0-4911.g9d608e 575 kB/s | 145 kB 00:00 2024-09-13T05:19:13.066 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:13.067 INFO:teuthology.orchestra.run.smithi145.stdout:Total 571 kB/s | 145 kB 00:00 2024-09-13T05:19:13.067 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:13.075 INFO:teuthology.orchestra.run.smithi153.stdout:(7/37): ceph-osd-19.3.0-4911.g9d608eb1.el9.x86_ 30 MB/s | 17 MB 00:00 2024-09-13T05:19:13.075 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:13.075 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:13.100 INFO:teuthology.orchestra.run.smithi153.stdout:(8/37): python3-ply-3.11-14.el9.noarch.rpm 555 kB/s | 106 kB 00:00 2024-09-13T05:19:13.132 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:13.133 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:13.135 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:55 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:19:13.175 INFO:teuthology.orchestra.run.smithi153.stdout:(9/37): python3-requests-2.25.1-8.el9.noarch.rp 1.6 MB/s | 125 kB 00:00 2024-09-13T05:19:13.233 INFO:teuthology.orchestra.run.smithi153.stdout:(10/37): python3-pycparser-2.20-6.el9.noarch.rp 853 kB/s | 135 kB 00:00 2024-09-13T05:19:13.271 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout: cephadm noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 784 k 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:13.272 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 784 k 2024-09-13T05:19:13.273 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 791 k 2024-09-13T05:19:13.273 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:19:13.273 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:13.300 INFO:teuthology.orchestra.run.smithi153.stdout:(11/37): python3-cryptography-36.0.1-4.el9.x86_ 2.2 MB/s | 1.2 MB 00:00 2024-09-13T05:19:13.358 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1. 1/1 2024-09-13T05:19:13.383 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1. 1/1 2024-09-13T05:19:13.383 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:13.383 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-13T05:19:13.384 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:13.392 INFO:teuthology.orchestra.run.smithi153.stdout:(12/37): python3-urllib3-1.26.5-6.el9.noarch.rp 988 kB/s | 215 kB 00:00 2024-09-13T05:19:13.537 INFO:teuthology.orchestra.run.smithi151.stdout:cephadm-19.3.0-4911.g9d608eb1.el9.noarch.rpm 2.9 MB/s | 784 kB 00:00 2024-09-13T05:19:13.538 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:13.538 INFO:teuthology.orchestra.run.smithi151.stdout:Total 2.9 MB/s | 784 kB 00:00 2024-09-13T05:19:13.538 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:19:13.544 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:19:13.544 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:19:13.550 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:19:13.550 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:19:13.624 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:19:13.951 INFO:teuthology.orchestra.run.smithi153.stdout:(13/37): python3-markupsafe-1.1.1-12.el9.x86_64 62 kB/s | 35 kB 00:00 2024-09-13T05:19:13.993 INFO:teuthology.orchestra.run.smithi153.stdout:(14/37): lua-5.4.4-4.el9.x86_64.rpm 248 kB/s | 188 kB 00:00 2024-09-13T05:19:14.043 INFO:teuthology.orchestra.run.smithi153.stdout:(15/37): python3-mako-1.1.4-6.el9.noarch.rpm 232 kB/s | 172 kB 00:00 2024-09-13T05:19:14.108 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:14.201 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:14.324 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1. 1/1 2024-09-13T05:19:14.324 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:14.324 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:14.324 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:14.324 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:14.325 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:14.569 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr 2024-09-13T05:19:14.582 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:14.585 INFO:teuthology.orchestra.run.smithi153.stdout:(16/37): python3-pytz-2021.1-5.el9.noarch.rpm 86 kB/s | 51 kB 00:00 2024-09-13T05:19:14.610 INFO:teuthology.orchestra.run.smithi153.stdout:(17/37): python3-toml-0.10.2-6.el9.noarch.rpm 73 kB/s | 42 kB 00:00 2024-09-13T05:19:14.636 INFO:teuthology.orchestra.run.smithi153.stdout:(18/37): python3-packaging-20.9-5.el9.noarch.rp 113 kB/s | 77 kB 00:00 2024-09-13T05:19:14.669 INFO:teuthology.orchestra.run.smithi153.stdout:(19/37): lua-devel-5.4.4-4.el9.x86_64.rpm 267 kB/s | 22 kB 00:00 2024-09-13T05:19:14.695 INFO:teuthology.orchestra.run.smithi153.stdout:(20/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 745 kB/s | 43 kB 00:00 2024-09-13T05:19:14.720 INFO:teuthology.orchestra.run.smithi153.stdout:(21/37): luarocks-3.9.2-5.el9.noarch.rpm 1.4 MB/s | 151 kB 00:00 2024-09-13T05:19:14.737 INFO:teuthology.orchestra.run.smithi153.stdout:(22/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 643 kB/s | 11 kB 00:00 2024-09-13T05:19:14.770 INFO:teuthology.orchestra.run.smithi153.stdout:(23/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.7 MB/s | 172 kB 00:00 2024-09-13T05:19:14.796 INFO:teuthology.orchestra.run.smithi153.stdout:(24/37): python3-jaraco-classes-3.2.1-5.el9.noa 302 kB/s | 18 kB 00:00 2024-09-13T05:19:14.821 INFO:teuthology.orchestra.run.smithi153.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 462 kB/s | 23 kB 00:00 2024-09-13T05:19:14.830 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:14.830 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:14.830 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:19:14.830 INFO:teuthology.orchestra.run.smithi151.stdout: cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:14.830 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:14.830 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:19:14.846 INFO:teuthology.orchestra.run.smithi153.stdout:(26/37): python3-jaraco-functools-3.5.0-2.el9.n 388 kB/s | 19 kB 00:00 2024-09-13T05:19:14.871 INFO:teuthology.orchestra.run.smithi153.stdout:(27/37): python3-jaraco-text-3.2.0-6.el9.noarch 391 kB/s | 20 kB 00:00 2024-09-13T05:19:14.897 INFO:teuthology.orchestra.run.smithi153.stdout:(28/37): python3-cherrypy-18.6.1-2.el9.noarch.r 1.8 MB/s | 358 kB 00:00 2024-09-13T05:19:14.922 INFO:teuthology.orchestra.run.smithi153.stdout:(29/37): python3-logutils-0.3.5-21.el9.noarch.r 612 kB/s | 46 kB 00:00 2024-09-13T05:19:14.939 INFO:teuthology.orchestra.run.smithi153.stdout:(30/37): python3-portend-3.1.0-2.el9.noarch.rpm 997 kB/s | 16 kB 00:00 2024-09-13T05:19:14.964 INFO:teuthology.orchestra.run.smithi153.stdout:(31/37): python3-more-itertools-8.12.0-2.el9.no 853 kB/s | 79 kB 00:00 2024-09-13T05:19:14.981 INFO:teuthology.orchestra.run.smithi153.stdout:(32/37): python3-tempora-5.0.0-2.el9.noarch.rpm 2.1 MB/s | 36 kB 00:00 2024-09-13T05:19:15.006 INFO:teuthology.orchestra.run.smithi153.stdout:(33/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.3 MB/s | 90 kB 00:00 2024-09-13T05:19:15.040 INFO:teuthology.orchestra.run.smithi153.stdout:(34/37): python3-pecan-1.4.2-3.el9.noarch.rpm 1.9 MB/s | 272 kB 00:00 2024-09-13T05:19:15.065 INFO:teuthology.orchestra.run.smithi153.stdout:(35/37): python3-webob-1.8.8-2.el9.noarch.rpm 2.7 MB/s | 230 kB 00:00 2024-09-13T05:19:15.069 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-immutable-object-cache 2024-09-13T05:19:15.090 INFO:teuthology.orchestra.run.smithi153.stdout:(36/37): python3-zc-lockfile-2.0-10.el9.noarch. 399 kB/s | 20 kB 00:00 2024-09-13T05:19:15.116 INFO:teuthology.orchestra.run.smithi153.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.8 MB/s | 427 kB 00:00 2024-09-13T05:19:15.121 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:15.121 INFO:teuthology.orchestra.run.smithi153.stdout:Total 7.8 MB/s | 31 MB 00:03 2024-09-13T05:19:15.134 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:59 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:15.229 INFO:teuthology.orchestra.run.smithi145.stdout:Package ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:19:15.271 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:15.272 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-13T05:19:15.272 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:15.273 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:19:15.313 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:19:15.313 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:19:15.335 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr-dashboard 2024-09-13T05:19:15.642 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:57 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:19:15.770 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:19:15.770 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:19:15.779 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:19:15.779 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repo Size 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-immutable-object-cache x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 145 k 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 145 k 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 432 k 2024-09-13T05:19:15.780 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:19:15.898 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:59 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:15.989 INFO:teuthology.orchestra.run.smithi151.stdout:ceph-immutable-object-cache-19.3.0-4911.g9d608e 694 kB/s | 145 kB 00:00 2024-09-13T05:19:15.990 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:15.990 INFO:teuthology.orchestra.run.smithi151.stdout:Total 689 kB/s | 145 kB 00:00 2024-09-13T05:19:15.990 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:19:15.998 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:19:15.998 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:19:16.031 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:16.032 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:16.032 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:19:16.032 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:16.032 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:16.032 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-dashboard noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 14 M 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-grafana-dashboards noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 34 k 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-prometheus-alerts noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 16 k 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-13T05:19:16.033 INFO:teuthology.orchestra.run.smithi145.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-13T05:19:16.034 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:16.034 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:16.034 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:16.034 INFO:teuthology.orchestra.run.smithi145.stdout:Install 12 Packages 2024-09-13T05:19:16.034 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:16.034 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 19 M 2024-09-13T05:19:16.034 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 159 M 2024-09-13T05:19:16.034 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:16.055 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:19:16.055 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:19:16.201 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:19:16.266 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1. 1/1 2024-09-13T05:19:16.291 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1. 1/1 2024-09-13T05:19:16.291 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:16.292 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-13T05:19:16.292 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:16.811 INFO:teuthology.orchestra.run.smithi145.stdout:(1/12): ceph-grafana-dashboards-19.3.0-4911.g9d 232 kB/s | 34 kB 00:00 2024-09-13T05:19:16.828 INFO:teuthology.orchestra.run.smithi145.stdout:(2/12): ceph-prometheus-alerts-19.3.0-4911.g9d6 100 kB/s | 16 kB 00:00 2024-09-13T05:19:17.003 INFO:teuthology.orchestra.run.smithi145.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.5 MB/s | 269 kB 00:00 2024-09-13T05:19:17.062 INFO:teuthology.orchestra.run.smithi145.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 4.0 MB/s | 1.0 MB 00:00 2024-09-13T05:19:17.106 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:19:17.168 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-13T05:19:17.170 INFO:teuthology.orchestra.run.smithi145.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 5.0 MB/s | 548 kB 00:00 2024-09-13T05:19:17.196 INFO:teuthology.orchestra.run.smithi145.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 779 kB/s | 19 kB 00:00 2024-09-13T05:19:17.217 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-13T05:19:17.221 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1. 1/1 2024-09-13T05:19:17.221 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:17.221 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:19:17.221 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:17.221 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:17.222 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:19:17.245 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-13T05:19:17.317 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-13T05:19:17.371 INFO:teuthology.orchestra.run.smithi145.stdout:(7/12): ceph-mgr-dashboard-19.3.0-4911.g9d608eb 20 MB/s | 14 MB 00:00 2024-09-13T05:19:17.387 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-13T05:19:17.419 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-13T05:19:17.427 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr 2024-09-13T05:19:17.438 INFO:teuthology.orchestra.run.smithi145.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 2.1 MB/s | 144 kB 00:00 2024-09-13T05:19:17.463 INFO:teuthology.orchestra.run.smithi145.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 1.2 MB/s | 31 kB 00:00 2024-09-13T05:19:17.497 INFO:teuthology.orchestra.run.smithi145.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 5.5 MB/s | 188 kB 00:00 2024-09-13T05:19:17.510 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-13T05:19:17.547 INFO:teuthology.orchestra.run.smithi145.stdout:(11/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 5.8 MB/s | 2.0 MB 00:00 2024-09-13T05:19:17.589 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-13T05:19:17.638 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-13T05:19:17.674 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-13T05:19:17.703 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-13T05:19:17.738 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-13T05:19:17.771 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-13T05:19:17.812 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-13T05:19:17.855 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-13T05:19:17.890 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-13T05:19:17.930 INFO:teuthology.orchestra.run.smithi145.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 931 kB/s | 863 kB 00:00 2024-09-13T05:19:17.934 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:17.934 INFO:teuthology.orchestra.run.smithi145.stdout:Total 10 MB/s | 19 MB 00:01 2024-09-13T05:19:17.938 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-13T05:19:17.970 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-13T05:19:17.983 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:18.002 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:18.002 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:18.009 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:19:18.059 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-13T05:19:18.103 INFO:teuthology.orchestra.run.smithi151.stdout:Package ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:19:18.147 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:19:18.148 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-09-13T05:19:18.148 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:19:18.207 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-13T05:19:18.208 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr-dashboard 2024-09-13T05:19:18.281 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:18.281 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:18.294 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-13T05:19:18.348 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-13T05:19:18.394 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-13T05:19:18.443 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-13T05:19:18.498 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-13T05:19:18.694 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-13T05:19:18.741 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-13T05:19:18.766 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:19:18.818 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-13T05:19:18.898 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:18.899 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:19:18.900 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-dashboard noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 14 M 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-grafana-dashboards noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 34 k 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-prometheus-alerts noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 16 k 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-13T05:19:18.901 INFO:teuthology.orchestra.run.smithi151.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-13T05:19:18.902 INFO:teuthology.orchestra.run.smithi151.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-13T05:19:18.902 INFO:teuthology.orchestra.run.smithi151.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-13T05:19:18.902 INFO:teuthology.orchestra.run.smithi151.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-13T05:19:18.902 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:18.902 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:19:18.902 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:18.902 INFO:teuthology.orchestra.run.smithi151.stdout:Install 12 Packages 2024-09-13T05:19:18.902 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:18.903 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 19 M 2024-09-13T05:19:18.903 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 159 M 2024-09-13T05:19:18.903 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:19:18.907 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-13T05:19:18.953 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-13T05:19:18.980 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-13T05:19:19.024 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-13T05:19:19.079 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-13T05:19:19.092 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-13T05:19:19.126 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-13T05:19:19.223 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-13T05:19:19.262 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-mgr-modules-core-2:19.3.0-4911.g9d608eb1.el9. 32/37 2024-09-13T05:19:19.291 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/37 2024-09-13T05:19:19.319 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 33/37 2024-09-13T05:19:19.319 INFO:teuthology.orchestra.run.smithi153.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:19.319 INFO:teuthology.orchestra.run.smithi153.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-13T05:19:19.319 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T05:19:19.319 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T05:19:19.319 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:19.361 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-13T05:19:19.454 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-13T05:19:19.506 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-13T05:19:19.626 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-13T05:19:19.646 INFO:teuthology.orchestra.run.smithi151.stdout:(1/12): ceph-grafana-dashboards-19.3.0-4911.g9d 213 kB/s | 34 kB 00:00 2024-09-13T05:19:19.658 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-prometheus-alerts-2:19.3.0-4911.g9d608eb1.el9 10/12 2024-09-13T05:19:19.672 INFO:teuthology.orchestra.run.smithi151.stdout:(2/12): ceph-prometheus-alerts-19.3.0-4911.g9d6 89 kB/s | 16 kB 00:00 2024-09-13T05:19:19.864 INFO:teuthology.orchestra.run.smithi151.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.4 MB/s | 269 kB 00:00 2024-09-13T05:19:20.189 INFO:teuthology.orchestra.run.smithi151.stdout:(4/12): ceph-mgr-dashboard-19.3.0-4911.g9d608eb 20 MB/s | 14 MB 00:00 2024-09-13T05:19:20.231 INFO:teuthology.orchestra.run.smithi151.stdout:(5/12): protobuf-3.14.0-13.el9.x86_64.rpm 1.7 MB/s | 1.0 MB 00:00 2024-09-13T05:19:20.290 INFO:teuthology.orchestra.run.smithi151.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 334 kB/s | 19 kB 00:00 2024-09-13T05:19:20.324 INFO:teuthology.orchestra.run.smithi151.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 4.2 MB/s | 548 kB 00:00 2024-09-13T05:19:20.349 INFO:teuthology.orchestra.run.smithi151.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 5.6 MB/s | 144 kB 00:00 2024-09-13T05:19:20.374 INFO:teuthology.orchestra.run.smithi151.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 1.2 MB/s | 31 kB 00:00 2024-09-13T05:19:20.400 INFO:teuthology.orchestra.run.smithi151.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 7.4 MB/s | 188 kB 00:00 2024-09-13T05:19:20.450 INFO:teuthology.orchestra.run.smithi151.stdout:(11/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 13 MB/s | 2.0 MB 00:00 2024-09-13T05:19:20.793 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 34/37 2024-09-13T05:19:20.820 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 34/37 2024-09-13T05:19:20.820 INFO:teuthology.orchestra.run.smithi153.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:20.820 INFO:teuthology.orchestra.run.smithi153.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-13T05:19:20.820 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T05:19:20.821 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T05:19:20.821 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:20.933 INFO:teuthology.orchestra.run.smithi151.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 807 kB/s | 863 kB 00:01 2024-09-13T05:19:20.939 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:20.940 INFO:teuthology.orchestra.run.smithi151.stdout:Total 9.5 MB/s | 19 MB 00:02 2024-09-13T05:19:20.992 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:19:21.014 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:19:21.014 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:19:21.276 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 35/37 2024-09-13T05:19:21.285 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:19:21.285 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:19:21.300 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 35/37 2024-09-13T05:19:21.300 INFO:teuthology.orchestra.run.smithi153.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:21.300 INFO:teuthology.orchestra.run.smithi153.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-13T05:19:21.300 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T05:19:21.300 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T05:19:21.300 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:21.527 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 36/37 2024-09-13T05:19:21.551 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 36/37 2024-09-13T05:19:21.551 INFO:teuthology.orchestra.run.smithi153.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:21.551 INFO:teuthology.orchestra.run.smithi153.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-13T05:19:21.552 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T05:19:21.552 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T05:19:21.552 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:21.624 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 37/37 2024-09-13T05:19:21.882 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:19:21.959 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-13T05:19:21.994 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-13T05:19:22.042 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-13T05:19:22.076 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-13T05:19:22.298 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-13T05:19:22.425 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-13T05:19:22.518 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-13T05:19:22.595 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-13T05:19:22.649 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-13T05:19:22.681 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-prometheus-alerts-2:19.3.0-4911.g9d608eb1.el9 10/12 2024-09-13T05:19:22.825 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-grafana-dashboards-2:19.3.0-4911.g9d608eb1.el 11/12 2024-09-13T05:19:22.880 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noa 12/12 2024-09-13T05:19:23.500 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 37/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 3/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 4/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 5/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-mgr-modules-core-2:19.3.0-4911.g9d608eb1.el9. 6/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-13T05:19:23.501 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-13T05:19:23.502 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-13T05:19:23.503 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-13T05:19:23.503 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-13T05:19:23.504 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-13T05:19:23.504 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-13T05:19:23.504 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-13T05:19:23.504 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-13T05:19:23.504 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-13T05:19:23.504 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-13T05:19:23.504 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-13T05:19:23.504 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-13T05:19:23.504 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-13T05:19:24.380 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-13T05:19:24.380 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:24.380 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mds-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-modules-core-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mon-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-osd-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: lua-5.4.4-4.el9.x86_64 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-13T05:19:24.381 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-13T05:19:24.382 INFO:teuthology.orchestra.run.smithi153.stdout: python3-ply-3.11-14.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:24.383 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:19:24.748 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-base 2024-09-13T05:19:24.895 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noa 12/12 2024-09-13T05:19:24.895 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-grafana-dashboards-2:19.3.0-4911.g9d608eb1.el 1/12 2024-09-13T05:19:24.895 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noa 2/12 2024-09-13T05:19:24.896 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-prometheus-alerts-2:19.3.0-4911.g9d608eb1.el9 3/12 2024-09-13T05:19:24.896 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-13T05:19:24.896 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-13T05:19:24.896 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-13T05:19:24.896 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-13T05:19:24.896 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-13T05:19:24.896 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-13T05:19:24.896 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-13T05:19:24.896 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-13T05:19:25.215 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-grafana-dashboards-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-prometheus-alerts-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-13T05:19:25.216 INFO:teuthology.orchestra.run.smithi145.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-13T05:19:25.217 INFO:teuthology.orchestra.run.smithi145.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-13T05:19:25.217 INFO:teuthology.orchestra.run.smithi145.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-13T05:19:25.217 INFO:teuthology.orchestra.run.smithi145.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-13T05:19:25.217 INFO:teuthology.orchestra.run.smithi145.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-13T05:19:25.217 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:25.217 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:25.336 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:00:54 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:19:25.429 INFO:teuthology.orchestra.run.smithi153.stdout:Package ceph-base-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:19:25.452 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-13T05:19:25.471 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:19:25.472 INFO:teuthology.orchestra.run.smithi153.stdout:Nothing to do. 2024-09-13T05:19:25.472 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:19:25.550 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install cephadm 2024-09-13T05:19:25.926 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-grafana-dashboards-2:19.3.0-4911.g9d608eb1.el 11/12 2024-09-13T05:19:25.996 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noa 12/12 2024-09-13T05:19:26.013 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:10 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:26.112 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:00:55 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:19:26.146 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:26.147 INFO:teuthology.orchestra.run.smithi145.stdout:======================================================================================= 2024-09-13T05:19:26.147 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:19:26.147 INFO:teuthology.orchestra.run.smithi145.stdout:======================================================================================= 2024-09-13T05:19:26.147 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:26.147 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-diskprediction-local noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 7.4 M 2024-09-13T05:19:26.147 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:19:26.147 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-13T05:19:26.147 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout:======================================================================================= 2024-09-13T05:19:26.148 INFO:teuthology.orchestra.run.smithi145.stdout:Install 12 Packages 2024-09-13T05:19:26.149 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:26.149 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 38 M 2024-09-13T05:19:26.149 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 212 M 2024-09-13T05:19:26.149 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:26.248 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:19:26.248 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:26.248 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout: cephadm noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 784 k 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout:Install 1 Package 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 784 k 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 791 k 2024-09-13T05:19:26.249 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:19:26.518 INFO:teuthology.orchestra.run.smithi153.stdout:cephadm-19.3.0-4911.g9d608eb1.el9.noarch.rpm 2.9 MB/s | 784 kB 00:00 2024-09-13T05:19:26.519 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:26.519 INFO:teuthology.orchestra.run.smithi153.stdout:Total 2.8 MB/s | 784 kB 00:00 2024-09-13T05:19:26.519 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:19:26.524 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:19:26.524 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:19:26.530 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:19:26.530 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:19:26.601 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:19:26.670 INFO:teuthology.orchestra.run.smithi145.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.0 MB/s | 191 kB 00:00 2024-09-13T05:19:26.787 INFO:teuthology.orchestra.run.smithi145.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.5 MB/s | 801 kB 00:00 2024-09-13T05:19:26.995 INFO:teuthology.orchestra.run.smithi145.stdout:(3/12): ceph-mgr-diskprediction-local-19.3.0-49 14 MB/s | 7.4 MB 00:00 2024-09-13T05:19:27.081 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:27.205 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:27.271 INFO:teuthology.orchestra.run.smithi145.stdout:(4/12): flexiblas-3.0.4-8.el9.x86_64.rpm 54 kB/s | 33 kB 00:00 2024-09-13T05:19:27.479 INFO:teuthology.orchestra.run.smithi145.stdout:(5/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 38 kB/s | 18 kB 00:00 2024-09-13T05:19:27.571 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:27.820 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:27.820 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:27.820 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:19:27.821 INFO:teuthology.orchestra.run.smithi153.stdout: cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:27.821 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:27.821 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:19:27.821 INFO:teuthology.orchestra.run.smithi145.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 70 kB/s | 38 kB 00:00 2024-09-13T05:19:27.905 INFO:teuthology.orchestra.run.smithi145.stdout:(7/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 2.7 MB/s | 3.0 MB 00:01 2024-09-13T05:19:27.954 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noa 12/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-grafana-dashboards-2:19.3.0-4911.g9d608eb1.el 1/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noa 2/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-prometheus-alerts-2:19.3.0-4911.g9d608eb1.el9 3/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-13T05:19:27.955 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-13T05:19:28.034 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-immutable-object-cache 2024-09-13T05:19:28.280 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-grafana-dashboards-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-prometheus-alerts-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-13T05:19:28.281 INFO:teuthology.orchestra.run.smithi151.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-13T05:19:28.282 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:28.282 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:19:28.543 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-13T05:19:28.588 INFO:teuthology.orchestra.run.smithi145.stdout:(8/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 4.5 MB/s | 4.9 MB 00:01 2024-09-13T05:19:28.607 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:00:57 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:19:28.613 INFO:teuthology.orchestra.run.smithi145.stdout:(9/12): python3-devel-3.9.19-8.el9.x86_64.rpm 309 kB/s | 245 kB 00:00 2024-09-13T05:19:28.744 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:19:28.744 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:28.744 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repo Size 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-immutable-object-cache x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 145 k 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout:Install 1 Package 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 145 k 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 432 k 2024-09-13T05:19:28.745 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:19:28.957 INFO:teuthology.orchestra.run.smithi153.stdout:ceph-immutable-object-cache-19.3.0-4911.g9d608e 685 kB/s | 145 kB 00:00 2024-09-13T05:19:28.957 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:28.958 INFO:teuthology.orchestra.run.smithi153.stdout:Total 681 kB/s | 145 kB 00:00 2024-09-13T05:19:28.958 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:19:28.965 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:19:28.966 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:19:29.024 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:19:29.024 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:19:29.072 INFO:teuthology.orchestra.run.smithi145.stdout:(10/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 4.4 MB/s | 5.1 MB 00:01 2024-09-13T05:19:29.111 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:11 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:19:29.171 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:19:29.245 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:19:29.246 INFO:teuthology.orchestra.run.smithi151.stdout:======================================================================================= 2024-09-13T05:19:29.246 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:19:29.246 INFO:teuthology.orchestra.run.smithi151.stdout:======================================================================================= 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-diskprediction-local noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 7.4 M 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-13T05:19:29.247 INFO:teuthology.orchestra.run.smithi151.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-13T05:19:29.248 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:29.248 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:19:29.248 INFO:teuthology.orchestra.run.smithi151.stdout:======================================================================================= 2024-09-13T05:19:29.248 INFO:teuthology.orchestra.run.smithi151.stdout:Install 12 Packages 2024-09-13T05:19:29.248 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:29.248 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 38 M 2024-09-13T05:19:29.248 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 212 M 2024-09-13T05:19:29.248 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:19:29.258 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1. 1/1 2024-09-13T05:19:29.283 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1. 1/1 2024-09-13T05:19:29.283 INFO:teuthology.orchestra.run.smithi153.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:29.283 INFO:teuthology.orchestra.run.smithi153.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-13T05:19:29.283 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:29.381 INFO:teuthology.orchestra.run.smithi145.stdout:(11/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 316 kB/s | 250 kB 00:00 2024-09-13T05:19:29.780 INFO:teuthology.orchestra.run.smithi151.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.4 MB/s | 191 kB 00:00 2024-09-13T05:19:29.830 INFO:teuthology.orchestra.run.smithi151.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 4.3 MB/s | 801 kB 00:00 2024-09-13T05:19:30.056 INFO:teuthology.orchestra.run.smithi145.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 11 MB/s | 16 MB 00:01 2024-09-13T05:19:30.057 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:30.057 INFO:teuthology.orchestra.run.smithi145.stdout:Total 9.8 MB/s | 38 MB 00:03 2024-09-13T05:19:30.131 INFO:teuthology.orchestra.run.smithi151.stdout:(3/12): ceph-mgr-diskprediction-local-19.3.0-49 15 MB/s | 7.4 MB 00:00 2024-09-13T05:19:30.156 INFO:teuthology.orchestra.run.smithi151.stdout:(4/12): flexiblas-3.0.4-8.el9.x86_64.rpm 87 kB/s | 33 kB 00:00 2024-09-13T05:19:30.207 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1. 1/1 2024-09-13T05:19:30.207 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:30.207 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:19:30.207 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-immutable-object-cache-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:30.207 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:30.207 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:19:30.349 INFO:teuthology.orchestra.run.smithi151.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 201 kB/s | 38 kB 00:00 2024-09-13T05:19:30.407 INFO:teuthology.orchestra.run.smithi151.stdout:(6/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 66 kB/s | 18 kB 00:00 2024-09-13T05:19:30.413 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:30.436 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-mgr 2024-09-13T05:19:30.440 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:30.440 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:30.865 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:30.865 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:30.866 INFO:teuthology.orchestra.run.smithi151.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 534 kB/s | 245 kB 00:00 2024-09-13T05:19:31.009 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:19:31.104 INFO:teuthology.orchestra.run.smithi153.stdout:Package ceph-mgr-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:19:31.146 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:19:31.147 INFO:teuthology.orchestra.run.smithi153.stdout:Nothing to do. 2024-09-13T05:19:31.147 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:19:31.211 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-mgr-dashboard 2024-09-13T05:19:31.377 INFO:teuthology.orchestra.run.smithi151.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 1.9 MB/s | 3.0 MB 00:01 2024-09-13T05:19:31.450 INFO:teuthology.orchestra.run.smithi151.stdout:(9/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 4.5 MB/s | 4.9 MB 00:01 2024-09-13T05:19:31.492 INFO:teuthology.orchestra.run.smithi151.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 2.1 MB/s | 250 kB 00:00 2024-09-13T05:19:31.645 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:31.707 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-13T05:19:31.709 INFO:teuthology.orchestra.run.smithi151.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 6.0 MB/s | 5.1 MB 00:00 2024-09-13T05:19:31.763 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-13T05:19:31.775 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:19:31.869 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-13T05:19:31.910 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:19:31.911 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:31.911 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:19:31.912 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:31.912 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:19:31.912 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-dashboard noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 14 M 2024-09-13T05:19:31.912 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:19:31.912 INFO:teuthology.orchestra.run.smithi153.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-13T05:19:31.912 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-grafana-dashboards noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 34 k 2024-09-13T05:19:31.912 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-prometheus-alerts noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 16 k 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout:Install 12 Packages 2024-09-13T05:19:31.913 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:31.914 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 19 M 2024-09-13T05:19:31.914 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 159 M 2024-09-13T05:19:31.914 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:19:31.921 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-13T05:19:32.114 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-13T05:19:32.146 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-13T05:19:32.222 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-13T05:19:32.519 INFO:teuthology.orchestra.run.smithi153.stdout:(1/12): ceph-prometheus-alerts-19.3.0-4911.g9d6 96 kB/s | 16 kB 00:00 2024-09-13T05:19:32.544 INFO:teuthology.orchestra.run.smithi153.stdout:(2/12): ceph-grafana-dashboards-19.3.0-4911.g9d 173 kB/s | 34 kB 00:00 2024-09-13T05:19:32.736 INFO:teuthology.orchestra.run.smithi153.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.4 MB/s | 269 kB 00:00 2024-09-13T05:19:32.787 INFO:teuthology.orchestra.run.smithi153.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 3.8 MB/s | 1.0 MB 00:00 2024-09-13T05:19:32.853 INFO:teuthology.orchestra.run.smithi153.stdout:(5/12): protobuf-compiler-3.14.0-13.el9.x86_64. 7.2 MB/s | 863 kB 00:00 2024-09-13T05:19:32.893 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-13T05:19:32.904 INFO:teuthology.orchestra.run.smithi153.stdout:(6/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 4.6 MB/s | 548 kB 00:00 2024-09-13T05:19:32.937 INFO:teuthology.orchestra.run.smithi153.stdout:(7/12): grpc-data-1.46.7-10.el9.noarch.rpm 233 kB/s | 19 kB 00:00 2024-09-13T05:19:33.007 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-13T05:19:33.079 INFO:teuthology.orchestra.run.smithi153.stdout:(8/12): ceph-mgr-dashboard-19.3.0-4911.g9d608eb 19 MB/s | 14 MB 00:00 2024-09-13T05:19:33.104 INFO:teuthology.orchestra.run.smithi153.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 866 kB/s | 144 kB 00:00 2024-09-13T05:19:33.163 INFO:teuthology.orchestra.run.smithi153.stdout:(10/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 7.9 MB/s | 2.0 MB 00:00 2024-09-13T05:19:33.180 INFO:teuthology.orchestra.run.smithi153.stdout:(11/12): python3-repoze-lru-0.7-16.el9.noarch.r 307 kB/s | 31 kB 00:00 2024-09-13T05:19:33.238 INFO:teuthology.orchestra.run.smithi153.stdout:(12/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.5 MB/s | 188 kB 00:00 2024-09-13T05:19:33.243 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:33.243 INFO:teuthology.orchestra.run.smithi153.stdout:Total 14 MB/s | 19 MB 00:01 2024-09-13T05:19:33.293 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:19:33.313 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:19:33.314 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:19:33.599 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:19:33.599 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:19:34.190 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:19:34.272 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-13T05:19:34.306 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T05:19:34.315 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-13T05:19:34.362 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-13T05:19:34.410 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-13T05:19:34.514 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-13T05:19:34.652 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-13T05:19:34.745 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-13T05:19:34.814 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-13T05:19:34.843 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-13T05:19:34.875 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-prometheus-alerts-2:19.3.0-4911.g9d608eb1.el9 10/12 2024-09-13T05:19:35.342 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-13T05:19:35.370 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608 12/12 2024-09-13T05:19:38.052 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-grafana-dashboards-2:19.3.0-4911.g9d608eb1.el 11/12 2024-09-13T05:19:38.066 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608 12/12 2024-09-13T05:19:38.066 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608 1/12 2024-09-13T05:19:38.066 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-13T05:19:38.066 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-13T05:19:38.066 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-13T05:19:38.066 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-13T05:19:38.066 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-13T05:19:38.067 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-13T05:19:38.067 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-13T05:19:38.067 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-13T05:19:38.067 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T05:19:38.067 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-13T05:19:38.104 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noa 12/12 2024-09-13T05:19:38.495 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-13T05:19:38.496 INFO:teuthology.orchestra.run.smithi145.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-13T05:19:38.497 INFO:teuthology.orchestra.run.smithi145.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-13T05:19:38.497 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:38.497 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:38.906 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr-rook 2024-09-13T05:19:39.488 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:23 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:39.624 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-rook noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 49 k 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-13T05:19:39.626 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout:Install 13 Packages 2024-09-13T05:19:39.627 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:39.628 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 2.2 M 2024-09-13T05:19:39.628 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 26 M 2024-09-13T05:19:39.628 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:39.950 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noa 12/12 2024-09-13T05:19:39.950 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-grafana-dashboards-2:19.3.0-4911.g9d608eb1.el 1/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noa 2/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-prometheus-alerts-2:19.3.0-4911.g9d608eb1.el9 3/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-13T05:19:39.951 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-13T05:19:40.237 INFO:teuthology.orchestra.run.smithi145.stdout:(1/13): ceph-mgr-rook-19.3.0-4911.g9d608eb1.el9 184 kB/s | 49 kB 00:00 2024-09-13T05:19:40.273 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-grafana-dashboards-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-dashboard-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-prometheus-alerts-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-13T05:19:40.274 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:40.275 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:19:40.462 INFO:teuthology.orchestra.run.smithi145.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 39 kB/s | 19 kB 00:00 2024-09-13T05:19:40.504 INFO:teuthology.orchestra.run.smithi145.stdout:(3/13): python3-jsonpatch-1.21-16.el9.noarch.rp 48 kB/s | 26 kB 00:00 2024-09-13T05:19:40.534 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-13T05:19:41.046 INFO:teuthology.orchestra.run.smithi145.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 275 kB/s | 222 kB 00:00 2024-09-13T05:19:41.101 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:10 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:19:41.163 INFO:teuthology.orchestra.run.smithi145.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 227 kB/s | 159 kB 00:00 2024-09-13T05:19:41.205 INFO:teuthology.orchestra.run.smithi145.stdout:(6/13): python3-cachetools-4.2.4-1.el9.noarch.r 782 kB/s | 32 kB 00:00 2024-09-13T05:19:41.230 INFO:teuthology.orchestra.run.smithi145.stdout:(7/13): python3-certifi-2023.05.07-4.el9.noarch 565 kB/s | 14 kB 00:00 2024-09-13T05:19:41.235 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout:======================================================================================= 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout:======================================================================================= 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-diskprediction-local noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 7.4 M 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-13T05:19:41.237 INFO:teuthology.orchestra.run.smithi153.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout:======================================================================================= 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout:Install 12 Packages 2024-09-13T05:19:41.238 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:41.239 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 38 M 2024-09-13T05:19:41.239 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 212 M 2024-09-13T05:19:41.239 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:19:41.263 INFO:teuthology.orchestra.run.smithi145.stdout:(8/13): python3-google-auth-2.34.0-1.el9.noarch 6.5 MB/s | 220 kB 00:00 2024-09-13T05:19:41.289 INFO:teuthology.orchestra.run.smithi145.stdout:(9/13): python3-pyasn1-modules-0.4.8-6.el9.noar 355 kB/s | 279 kB 00:00 2024-09-13T05:19:41.347 INFO:teuthology.orchestra.run.smithi145.stdout:(10/13): python3-kubernetes-26.1.0-2.el9.noarch 12 MB/s | 1.0 MB 00:00 2024-09-13T05:19:41.381 INFO:teuthology.orchestra.run.smithi145.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 2.8 MB/s | 90 kB 00:00 2024-09-13T05:19:41.406 INFO:teuthology.orchestra.run.smithi145.stdout:(12/13): python3-rsa-4.9-2.el9.noarch.rpm 536 kB/s | 59 kB 00:00 2024-09-13T05:19:41.578 INFO:teuthology.orchestra.run.smithi153.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.0 MB/s | 191 kB 00:00 2024-09-13T05:19:41.628 INFO:teuthology.orchestra.run.smithi153.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 655 kB/s | 33 kB 00:00 2024-09-13T05:19:41.653 INFO:teuthology.orchestra.run.smithi153.stdout:(3/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.9 MB/s | 801 kB 00:00 2024-09-13T05:19:41.690 INFO:teuthology.orchestra.run.smithi145.stdout:(13/13): python3-requests-oauthlib-1.3.0-12.el9 83 kB/s | 54 kB 00:00 2024-09-13T05:19:41.693 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:41.693 INFO:teuthology.orchestra.run.smithi145.stdout:Total 1.1 MB/s | 2.2 MB 00:02 2024-09-13T05:19:41.703 INFO:teuthology.orchestra.run.smithi153.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 366 kB/s | 18 kB 00:00 2024-09-13T05:19:41.753 INFO:teuthology.orchestra.run.smithi153.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 768 kB/s | 38 kB 00:00 2024-09-13T05:19:41.759 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:41.775 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:41.775 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:41.864 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:41.866 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:41.895 INFO:teuthology.orchestra.run.smithi153.stdout:(6/12): ceph-mgr-diskprediction-local-19.3.0-49 15 MB/s | 7.4 MB 00:00 2024-09-13T05:19:41.971 INFO:teuthology.orchestra.run.smithi153.stdout:(7/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 8.7 MB/s | 3.0 MB 00:00 2024-09-13T05:19:42.180 INFO:teuthology.orchestra.run.smithi153.stdout:(8/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 12 MB/s | 4.9 MB 00:00 2024-09-13T05:19:42.205 INFO:teuthology.orchestra.run.smithi153.stdout:(9/12): python3-devel-3.9.19-8.el9.x86_64.rpm 791 kB/s | 245 kB 00:00 2024-09-13T05:19:42.239 INFO:teuthology.orchestra.run.smithi153.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 4.2 MB/s | 250 kB 00:00 2024-09-13T05:19:42.347 INFO:teuthology.orchestra.run.smithi153.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 14 MB/s | 5.1 MB 00:00 2024-09-13T05:19:42.382 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:42.549 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-13T05:19:42.617 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-13T05:19:42.672 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-13T05:19:42.709 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-13T05:19:42.750 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-13T05:19:42.863 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-13T05:19:42.972 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-13T05:19:43.014 INFO:teuthology.orchestra.run.smithi153.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 20 MB/s | 16 MB 00:00 2024-09-13T05:19:43.015 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:43.015 INFO:teuthology.orchestra.run.smithi153.stdout:Total 22 MB/s | 38 MB 00:01 2024-09-13T05:19:43.027 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-13T05:19:43.373 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:19:43.398 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:19:43.399 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:19:43.789 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-13T05:19:43.823 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:19:43.824 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:19:43.841 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-13T05:19:43.883 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-13T05:19:43.939 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-13T05:19:43.961 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 13/13 2024-09-13T05:19:44.597 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:19:44.675 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-13T05:19:44.721 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-13T05:19:44.735 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 13/13 2024-09-13T05:19:44.735 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 1/13 2024-09-13T05:19:44.735 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-13T05:19:44.735 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-13T05:19:44.735 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-13T05:19:44.736 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-13T05:19:44.736 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-13T05:19:44.736 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-13T05:19:44.736 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-13T05:19:44.736 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-13T05:19:44.736 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-13T05:19:44.736 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-13T05:19:44.736 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-13T05:19:44.821 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-13T05:19:44.864 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-13T05:19:45.051 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-13T05:19:45.082 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-13T05:19:45.083 INFO:teuthology.orchestra.run.smithi145.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-13T05:19:45.083 INFO:teuthology.orchestra.run.smithi145.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-13T05:19:45.083 INFO:teuthology.orchestra.run.smithi145.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-13T05:19:45.083 INFO:teuthology.orchestra.run.smithi145.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-13T05:19:45.083 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:45.083 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:45.092 INFO:teuthology.orchestra.run.smithi151.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 1.2 MB/s | 16 MB 00:13 2024-09-13T05:19:45.093 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:45.093 INFO:teuthology.orchestra.run.smithi151.stdout:Total 2.4 MB/s | 38 MB 00:15 2024-09-13T05:19:45.096 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-13T05:19:45.206 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-13T05:19:45.353 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-mgr-cephadm 2024-09-13T05:19:45.449 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:19:45.476 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:19:45.476 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:19:45.862 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-13T05:19:45.902 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:19:45.903 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:19:45.923 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:29 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:45.983 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-13T05:19:46.058 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:46.059 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:46.059 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:19:46.059 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-cephadm noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 154 k 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:46.060 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:46.061 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:46.061 INFO:teuthology.orchestra.run.smithi145.stdout:Install 6 Packages 2024-09-13T05:19:46.061 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:46.061 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 7.0 M 2024-09-13T05:19:46.061 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 33 M 2024-09-13T05:19:46.061 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:46.657 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:19:46.727 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-13T05:19:46.770 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-13T05:19:46.867 INFO:teuthology.orchestra.run.smithi145.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 479 kB/s | 248 kB 00:00 2024-09-13T05:19:46.876 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-13T05:19:46.916 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-13T05:19:46.925 INFO:teuthology.orchestra.run.smithi145.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 9.2 MB/s | 548 kB 00:00 2024-09-13T05:19:46.950 INFO:teuthology.orchestra.run.smithi145.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 2.3 MB/s | 58 kB 00:00 2024-09-13T05:19:46.976 INFO:teuthology.orchestra.run.smithi145.stdout:(4/6): ceph-mgr-cephadm-19.3.0-4911.g9d608eb1.e 246 kB/s | 154 kB 00:00 2024-09-13T05:19:47.009 INFO:teuthology.orchestra.run.smithi145.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.2 MB/s | 74 kB 00:00 2024-09-13T05:19:47.101 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-13T05:19:47.149 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-13T05:19:47.229 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T05:19:47.277 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-13T05:19:47.343 INFO:teuthology.orchestra.run.smithi145.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 6.0 MB/s | 6.0 MB 00:00 2024-09-13T05:19:47.345 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:47.345 INFO:teuthology.orchestra.run.smithi145.stdout:Total 5.5 MB/s | 7.0 MB 00:01 2024-09-13T05:19:47.418 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:47.429 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:47.429 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:47.531 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:47.531 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:47.843 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:47.996 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-13T05:19:48.025 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-13T05:19:48.086 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-13T05:19:48.105 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-13T05:19:48.257 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-13T05:19:48.286 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608 12/12 2024-09-13T05:19:48.610 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-13T05:19:48.697 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-13T05:19:48.765 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-13T05:19:48.790 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 6/6 2024-09-13T05:19:49.357 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T05:19:49.601 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 6/6 2024-09-13T05:19:49.601 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/6 2024-09-13T05:19:49.601 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-13T05:19:49.601 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-13T05:19:49.601 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-13T05:19:49.602 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-13T05:19:49.869 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-13T05:19:49.869 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:49.869 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:49.870 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:49.870 INFO:teuthology.orchestra.run.smithi145.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-13T05:19:49.870 INFO:teuthology.orchestra.run.smithi145.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-13T05:19:49.870 INFO:teuthology.orchestra.run.smithi145.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-13T05:19:49.870 INFO:teuthology.orchestra.run.smithi145.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-13T05:19:49.870 INFO:teuthology.orchestra.run.smithi145.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-13T05:19:49.870 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:49.870 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:50.131 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-fuse 2024-09-13T05:19:50.412 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-13T05:19:50.430 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608 12/12 2024-09-13T05:19:50.714 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:34 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:50.848 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:50.849 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:50.849 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:19:50.849 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-fuse x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 900 k 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout:Install 2 Packages 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 980 k 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 2.9 M 2024-09-13T05:19:50.850 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608 12/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608 1/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T05:19:50.974 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-13T05:19:51.103 INFO:teuthology.orchestra.run.smithi145.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 531 kB/s | 80 kB 00:00 2024-09-13T05:19:51.228 INFO:teuthology.orchestra.run.smithi145.stdout:(2/2): ceph-fuse-19.3.0-4911.g9d608eb1.el9.x86_ 3.2 MB/s | 900 kB 00:00 2024-09-13T05:19:51.229 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:51.229 INFO:teuthology.orchestra.run.smithi145.stdout:Total 2.5 MB/s | 980 kB 00:00 2024-09-13T05:19:51.241 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:51.262 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:51.262 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:51.344 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:51.344 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:51.401 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-13T05:19:51.401 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:51.401 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:19:51.401 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:51.401 INFO:teuthology.orchestra.run.smithi153.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-13T05:19:51.401 INFO:teuthology.orchestra.run.smithi153.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:51.402 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:19:51.535 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:51.672 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-13T05:19:51.744 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/2 2024-09-13T05:19:51.807 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-mgr-rook 2024-09-13T05:19:52.390 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:21 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:19:52.456 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/2 2024-09-13T05:19:52.456 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/2 2024-09-13T05:19:52.527 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-rook noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 49 k 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-13T05:19:52.528 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout:Install 13 Packages 2024-09-13T05:19:52.529 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:52.530 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 2.2 M 2024-09-13T05:19:52.530 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 26 M 2024-09-13T05:19:52.530 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:19:52.732 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-13T05:19:52.732 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:52.732 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:52.732 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-13T05:19:52.732 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:52.732 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:52.744 INFO:teuthology.orchestra.run.smithi153.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 292 kB/s | 26 kB 00:00 2024-09-13T05:19:52.761 INFO:teuthology.orchestra.run.smithi153.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 183 kB/s | 19 kB 00:00 2024-09-13T05:19:52.836 INFO:teuthology.orchestra.run.smithi153.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.9 MB/s | 222 kB 00:00 2024-09-13T05:19:52.861 INFO:teuthology.orchestra.run.smithi153.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.6 MB/s | 159 kB 00:00 2024-09-13T05:19:52.886 INFO:teuthology.orchestra.run.smithi153.stdout:(5/13): ceph-mgr-rook-19.3.0-4911.g9d608eb1.el9 214 kB/s | 49 kB 00:00 2024-09-13T05:19:52.912 INFO:teuthology.orchestra.run.smithi153.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-09-13T05:19:52.937 INFO:teuthology.orchestra.run.smithi153.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 2.7 MB/s | 279 kB 00:00 2024-09-13T05:19:52.988 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608 12/12 2024-09-13T05:19:52.988 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608 1/12 2024-09-13T05:19:52.988 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-13T05:19:52.988 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-13T05:19:52.989 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-13T05:19:52.989 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-13T05:19:52.989 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-13T05:19:52.989 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-13T05:19:52.989 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-13T05:19:52.989 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-13T05:19:52.989 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T05:19:52.989 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-13T05:19:52.990 INFO:teuthology.orchestra.run.smithi153.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 320 kB/s | 32 kB 00:00 2024-09-13T05:19:52.990 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install ceph-volume 2024-09-13T05:19:53.013 INFO:teuthology.orchestra.run.smithi153.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 140 kB/s | 14 kB 00:00 2024-09-13T05:19:53.046 INFO:teuthology.orchestra.run.smithi153.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 1.7 MB/s | 59 kB 00:00 2024-09-13T05:19:53.072 INFO:teuthology.orchestra.run.smithi153.stdout:(11/13): python3-google-auth-2.34.0-1.el9.noarc 1.8 MB/s | 220 kB 00:00 2024-09-13T05:19:53.105 INFO:teuthology.orchestra.run.smithi153.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.5 MB/s | 90 kB 00:00 2024-09-13T05:19:53.147 INFO:teuthology.orchestra.run.smithi153.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.5 MB/s | 1.0 MB 00:00 2024-09-13T05:19:53.150 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:53.150 INFO:teuthology.orchestra.run.smithi153.stdout:Total 3.6 MB/s | 2.2 MB 00:00 2024-09-13T05:19:53.214 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:19:53.229 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:19:53.229 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:19:53.319 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:19:53.320 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:19:53.424 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-13T05:19:53.424 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:53.424 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:19:53.424 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-diskprediction-local-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:53.424 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-13T05:19:53.424 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-13T05:19:53.424 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-13T05:19:53.424 INFO:teuthology.orchestra.run.smithi151.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-13T05:19:53.425 INFO:teuthology.orchestra.run.smithi151.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-13T05:19:53.425 INFO:teuthology.orchestra.run.smithi151.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-13T05:19:53.425 INFO:teuthology.orchestra.run.smithi151.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-13T05:19:53.425 INFO:teuthology.orchestra.run.smithi151.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-13T05:19:53.425 INFO:teuthology.orchestra.run.smithi151.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-13T05:19:53.425 INFO:teuthology.orchestra.run.smithi151.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-13T05:19:53.425 INFO:teuthology.orchestra.run.smithi151.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-13T05:19:53.425 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:53.425 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:19:53.576 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:37 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:53.714 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:53.715 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:53.715 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repository Size 2024-09-13T05:19:53.715 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:53.715 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:53.715 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-volume noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 285 k 2024-09-13T05:19:53.715 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:53.716 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:53.716 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:53.716 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-13T05:19:53.716 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:53.716 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 285 k 2024-09-13T05:19:53.716 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 1.3 M 2024-09-13T05:19:53.716 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:53.776 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr-rook 2024-09-13T05:19:53.828 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:19:54.011 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-13T05:19:54.073 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-13T05:19:54.116 INFO:teuthology.orchestra.run.smithi145.stdout:ceph-volume-19.3.0-4911.g9d608eb1.el9.noarch.rp 714 kB/s | 285 kB 00:00 2024-09-13T05:19:54.116 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:54.116 INFO:teuthology.orchestra.run.smithi145.stdout:Total 712 kB/s | 285 kB 00:00 2024-09-13T05:19:54.117 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:54.125 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:54.125 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:54.128 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-13T05:19:54.151 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:54.151 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:54.157 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-13T05:19:54.229 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-13T05:19:54.325 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-13T05:19:54.348 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:36 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:19:54.367 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:54.434 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:54.435 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-13T05:19:54.450 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:54.450 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:19:54.450 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-13T05:19:54.450 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:54.481 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:19:54.482 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-rook noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 49 k 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-13T05:19:54.483 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-13T05:19:54.484 INFO:teuthology.orchestra.run.smithi151.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-13T05:19:54.484 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-13T05:19:54.484 INFO:teuthology.orchestra.run.smithi151.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-13T05:19:54.484 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:54.484 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:19:54.484 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:54.484 INFO:teuthology.orchestra.run.smithi151.stdout:Install 13 Packages 2024-09-13T05:19:54.484 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:54.485 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-13T05:19:54.485 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 2.2 M 2024-09-13T05:19:54.485 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 26 M 2024-09-13T05:19:54.485 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:19:54.743 INFO:teuthology.orchestra.run.smithi151.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 184 kB/s | 19 kB 00:00 2024-09-13T05:19:54.760 INFO:teuthology.orchestra.run.smithi151.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 212 kB/s | 26 kB 00:00 2024-09-13T05:19:54.794 INFO:teuthology.orchestra.run.smithi151.stdout:(3/13): ceph-mgr-rook-19.3.0-4911.g9d608eb1.el9 318 kB/s | 49 kB 00:00 2024-09-13T05:19:54.869 INFO:teuthology.orchestra.run.smithi151.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.4 MB/s | 159 kB 00:00 2024-09-13T05:19:54.894 INFO:teuthology.orchestra.run.smithi151.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.4 MB/s | 222 kB 00:00 2024-09-13T05:19:54.912 INFO:teuthology.orchestra.run.smithi151.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.2 MB/s | 54 kB 00:00 2024-09-13T05:19:54.946 INFO:teuthology.orchestra.run.smithi151.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 638 kB/s | 32 kB 00:00 2024-09-13T05:19:54.972 INFO:teuthology.orchestra.run.smithi151.stdout:(8/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.5 MB/s | 279 kB 00:00 2024-09-13T05:19:54.988 INFO:teuthology.orchestra.run.smithi151.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 186 kB/s | 14 kB 00:00 2024-09-13T05:19:55.021 INFO:teuthology.orchestra.run.smithi151.stdout:(10/13): python3-google-auth-2.34.0-1.el9.noarc 2.9 MB/s | 220 kB 00:00 2024-09-13T05:19:55.038 INFO:teuthology.orchestra.run.smithi151.stdout:(11/13): python3-rsa-4.9-2.el9.noarch.rpm 1.3 MB/s | 59 kB 00:00 2024-09-13T05:19:55.064 INFO:teuthology.orchestra.run.smithi151.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 2.2 MB/s | 90 kB 00:00 2024-09-13T05:19:55.106 INFO:teuthology.orchestra.run.smithi151.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.6 MB/s | 1.0 MB 00:00 2024-09-13T05:19:55.108 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:55.109 INFO:teuthology.orchestra.run.smithi151.stdout:Total 3.5 MB/s | 2.2 MB 00:00 2024-09-13T05:19:55.172 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:19:55.187 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:19:55.187 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:19:55.205 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-13T05:19:55.248 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-13T05:19:55.278 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:19:55.279 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:19:55.281 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-13T05:19:55.330 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-13T05:19:55.351 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 13/13 2024-09-13T05:19:55.474 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:19:55.474 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:55.474 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:55.474 INFO:teuthology.orchestra.run.smithi145.stdout: ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:55.474 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:55.474 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:55.765 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install librados-devel 2024-09-13T05:19:55.779 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:19:55.943 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-13T05:19:55.999 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-13T05:19:56.054 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-13T05:19:56.092 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-13T05:19:56.117 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 13/13 2024-09-13T05:19:56.117 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 1/13 2024-09-13T05:19:56.117 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-13T05:19:56.118 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-13T05:19:56.133 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-13T05:19:56.235 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-13T05:19:56.346 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-13T05:19:56.352 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:40 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:56.402 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-13T05:19:56.461 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-13T05:19:56.461 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-13T05:19:56.462 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:56.463 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:19:56.491 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:56.491 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:56.491 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repo Size 2024-09-13T05:19:56.491 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:56.491 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:56.491 INFO:teuthology.orchestra.run.smithi145.stdout: librados-devel x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 126 k 2024-09-13T05:19:56.491 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:56.492 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:56.492 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:56.492 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-13T05:19:56.492 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:56.492 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 126 k 2024-09-13T05:19:56.492 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 456 k 2024-09-13T05:19:56.493 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:56.687 INFO:teuthology.orchestra.run.smithi145.stdout:librados-devel-19.3.0-4911.g9d608eb1.el9.x86_64 651 kB/s | 126 kB 00:00 2024-09-13T05:19:56.688 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:56.688 INFO:teuthology.orchestra.run.smithi145.stdout:Total 646 kB/s | 126 kB 00:00 2024-09-13T05:19:56.688 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:56.693 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:56.693 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:56.702 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-mgr-cephadm 2024-09-13T05:19:56.758 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:56.758 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:56.923 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:57.034 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:19:57.117 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-13T05:19:57.177 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-13T05:19:57.211 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-13T05:19:57.259 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-13T05:19:57.266 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:26 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:19:57.281 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 13/13 2024-09-13T05:19:57.401 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:19:57.401 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:57.401 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-cephadm noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 154 k 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout:Install 6 Packages 2024-09-13T05:19:57.402 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:19:57.403 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 7.0 M 2024-09-13T05:19:57.403 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 33 M 2024-09-13T05:19:57.403 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:19:57.439 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:19:57.702 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:19:57.702 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:57.702 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:19:57.702 INFO:teuthology.orchestra.run.smithi145.stdout: librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:19:57.702 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:57.702 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:57.715 INFO:teuthology.orchestra.run.smithi153.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.6 MB/s | 248 kB 00:00 2024-09-13T05:19:57.765 INFO:teuthology.orchestra.run.smithi153.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 11 MB/s | 548 kB 00:00 2024-09-13T05:19:57.790 INFO:teuthology.orchestra.run.smithi153.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 2.3 MB/s | 58 kB 00:00 2024-09-13T05:19:57.816 INFO:teuthology.orchestra.run.smithi153.stdout:(4/6): ceph-mgr-cephadm-19.3.0-4911.g9d608eb1.e 619 kB/s | 154 kB 00:00 2024-09-13T05:19:57.841 INFO:teuthology.orchestra.run.smithi153.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.4 MB/s | 74 kB 00:00 2024-09-13T05:19:57.980 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install libcephfs2 2024-09-13T05:19:58.090 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 13/13 2024-09-13T05:19:58.090 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 1/13 2024-09-13T05:19:58.090 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-13T05:19:58.090 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-13T05:19:58.091 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-13T05:19:58.091 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-13T05:19:58.091 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-13T05:19:58.091 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-13T05:19:58.091 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-13T05:19:58.091 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-13T05:19:58.091 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-13T05:19:58.091 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-13T05:19:58.091 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-13T05:19:58.133 INFO:teuthology.orchestra.run.smithi153.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 11 MB/s | 6.0 MB 00:00 2024-09-13T05:19:58.135 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:58.135 INFO:teuthology.orchestra.run.smithi153.stdout:Total 9.6 MB/s | 7.0 MB 00:00 2024-09-13T05:19:58.206 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:19:58.217 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:19:58.217 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:19:58.318 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:19:58.319 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:19:58.442 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-rook-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-13T05:19:58.443 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-13T05:19:58.444 INFO:teuthology.orchestra.run.smithi151.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-13T05:19:58.444 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-13T05:19:58.444 INFO:teuthology.orchestra.run.smithi151.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-13T05:19:58.444 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:58.444 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:19:58.562 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:42 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:58.633 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:19:58.656 INFO:teuthology.orchestra.run.smithi145.stdout:Package libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:19:58.690 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr-cephadm 2024-09-13T05:19:58.700 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:58.701 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-13T05:19:58.701 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:19:58.767 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install libcephfs-devel 2024-09-13T05:19:58.798 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-13T05:19:58.852 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-13T05:19:59.274 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:41 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:19:59.332 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:43 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:19:59.379 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-13T05:19:59.418 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:19:59.419 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:59.419 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:19:59.419 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:59.419 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-cephadm noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 154 k 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout:Install 6 Packages 2024-09-13T05:19:59.420 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:19:59.421 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 7.0 M 2024-09-13T05:19:59.421 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 33 M 2024-09-13T05:19:59.421 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:19:59.465 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:19:59.466 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:59.466 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repo Size 2024-09-13T05:19:59.466 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:59.466 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:19:59.467 INFO:teuthology.orchestra.run.smithi145.stdout: libcephfs-devel x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 32 k 2024-09-13T05:19:59.467 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:59.467 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:19:59.467 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:19:59.467 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-13T05:19:59.467 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:19:59.467 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 32 k 2024-09-13T05:19:59.467 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 142 k 2024-09-13T05:19:59.467 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:19:59.471 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-13T05:19:59.538 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-13T05:19:59.572 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 6/6 2024-09-13T05:19:59.616 INFO:teuthology.orchestra.run.smithi145.stdout:libcephfs-devel-19.3.0-4911.g9d608eb1.el9.x86_6 213 kB/s | 32 kB 00:00 2024-09-13T05:19:59.617 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:19:59.617 INFO:teuthology.orchestra.run.smithi145.stdout:Total 211 kB/s | 32 kB 00:00 2024-09-13T05:19:59.617 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:19:59.620 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:19:59.620 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:19:59.640 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:19:59.640 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:19:59.678 INFO:teuthology.orchestra.run.smithi151.stdout:(1/6): ceph-mgr-cephadm-19.3.0-4911.g9d608eb1.e 833 kB/s | 154 kB 00:00 2024-09-13T05:19:59.703 INFO:teuthology.orchestra.run.smithi151.stdout:(2/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.2 MB/s | 248 kB 00:00 2024-09-13T05:19:59.729 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:19:59.754 INFO:teuthology.orchestra.run.smithi151.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 7.1 MB/s | 548 kB 00:00 2024-09-13T05:19:59.771 INFO:teuthology.orchestra.run.smithi151.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 862 kB/s | 58 kB 00:00 2024-09-13T05:19:59.796 INFO:teuthology.orchestra.run.smithi151.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.7 MB/s | 74 kB 00:00 2024-09-13T05:19:59.847 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:00.257 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:00.355 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 6/6 2024-09-13T05:20:00.356 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/6 2024-09-13T05:20:00.356 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-13T05:20:00.356 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-13T05:20:00.356 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-13T05:20:00.356 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-13T05:20:00.501 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:00.501 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:00.502 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:20:00.502 INFO:teuthology.orchestra.run.smithi145.stdout: libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:00.502 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:00.502 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:00.635 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-13T05:20:00.635 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:00.635 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:20:00.636 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:20:00.636 INFO:teuthology.orchestra.run.smithi153.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-13T05:20:00.636 INFO:teuthology.orchestra.run.smithi153.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-13T05:20:00.636 INFO:teuthology.orchestra.run.smithi153.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-13T05:20:00.636 INFO:teuthology.orchestra.run.smithi153.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-13T05:20:00.636 INFO:teuthology.orchestra.run.smithi153.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-13T05:20:00.636 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:00.636 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:00.691 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install librados2 2024-09-13T05:20:00.897 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-fuse 2024-09-13T05:20:00.988 INFO:teuthology.orchestra.run.smithi151.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 4.0 MB/s | 6.0 MB 00:01 2024-09-13T05:20:00.990 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:00.990 INFO:teuthology.orchestra.run.smithi151.stdout:Total 4.5 MB/s | 7.0 MB 00:01 2024-09-13T05:20:01.060 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:20:01.072 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:20:01.072 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:20:01.172 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:20:01.173 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:20:01.262 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:45 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:20:01.352 INFO:teuthology.orchestra.run.smithi145.stdout:Package librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:01.395 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:20:01.396 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-13T05:20:01.396 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:01.464 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install librbd1 2024-09-13T05:20:01.471 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:30 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:01.497 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:20:01.606 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:01.606 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:01.606 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:20:01.606 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:01.607 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:20:01.607 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-fuse x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 900 k 2024-09-13T05:20:01.607 INFO:teuthology.orchestra.run.smithi153.stdout:Installing dependencies: 2024-09-13T05:20:01.607 INFO:teuthology.orchestra.run.smithi153.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-13T05:20:01.607 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:01.607 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:20:01.607 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:01.607 INFO:teuthology.orchestra.run.smithi153.stdout:Install 2 Packages 2024-09-13T05:20:01.607 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:01.608 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 980 k 2024-09-13T05:20:01.608 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 2.9 M 2024-09-13T05:20:01.608 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:20:01.664 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-13T05:20:01.714 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-13T05:20:01.786 INFO:teuthology.orchestra.run.smithi153.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 508 kB/s | 80 kB 00:00 2024-09-13T05:20:01.919 INFO:teuthology.orchestra.run.smithi153.stdout:(2/2): ceph-fuse-19.3.0-4911.g9d608eb1.el9.x86_ 3.0 MB/s | 900 kB 00:00 2024-09-13T05:20:01.920 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:01.920 INFO:teuthology.orchestra.run.smithi153.stdout:Total 3.1 MB/s | 980 kB 00:00 2024-09-13T05:20:01.931 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:20:01.953 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:20:01.953 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:20:02.026 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:46 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:20:02.035 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:20:02.035 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:20:02.116 INFO:teuthology.orchestra.run.smithi145.stdout:Package librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:02.159 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:20:02.160 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-13T05:20:02.160 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:02.221 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install python3-rados 2024-09-13T05:20:02.234 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:20:02.236 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-13T05:20:02.317 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-13T05:20:02.371 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-13T05:20:02.394 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-13T05:20:02.418 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 6/6 2024-09-13T05:20:02.442 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/2 2024-09-13T05:20:02.799 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:46 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:20:02.891 INFO:teuthology.orchestra.run.smithi145.stdout:Package python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:02.937 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:20:02.938 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-13T05:20:02.938 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:03.007 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install python3-rgw 2024-09-13T05:20:03.113 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/2 2024-09-13T05:20:03.113 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/2 2024-09-13T05:20:03.289 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 6/6 2024-09-13T05:20:03.289 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 1/6 2024-09-13T05:20:03.289 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-13T05:20:03.289 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-13T05:20:03.289 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-13T05:20:03.289 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-13T05:20:03.387 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-13T05:20:03.388 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:03.388 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:20:03.388 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-13T05:20:03.388 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:03.388 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-cephadm-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:03.566 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:03.599 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:47 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:20:03.664 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install ceph-volume 2024-09-13T05:20:03.693 INFO:teuthology.orchestra.run.smithi145.stdout:Package python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:03.738 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:20:03.740 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-13T05:20:03.740 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:03.805 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install python3-cephfs 2024-09-13T05:20:03.819 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-fuse 2024-09-13T05:20:04.237 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:33 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:04.376 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repository Size 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-volume noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 285 k 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout:Install 1 Package 2024-09-13T05:20:04.377 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:04.378 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 285 k 2024-09-13T05:20:04.378 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 1.3 M 2024-09-13T05:20:04.378 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:20:04.378 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:48 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:20:04.392 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:46 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:04.472 INFO:teuthology.orchestra.run.smithi145.stdout:Package python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:04.514 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:20:04.515 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-13T05:20:04.516 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:04.528 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:04.528 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:04.528 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:20:04.528 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:04.528 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:20:04.529 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-fuse x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 900 k 2024-09-13T05:20:04.529 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-09-13T05:20:04.529 INFO:teuthology.orchestra.run.smithi151.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-13T05:20:04.529 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:04.529 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:20:04.529 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:04.529 INFO:teuthology.orchestra.run.smithi151.stdout:Install 2 Packages 2024-09-13T05:20:04.529 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:04.530 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 980 k 2024-09-13T05:20:04.530 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 2.9 M 2024-09-13T05:20:04.530 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:20:04.588 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install python3-rbd 2024-09-13T05:20:04.623 INFO:teuthology.orchestra.run.smithi153.stdout:ceph-volume-19.3.0-4911.g9d608eb1.el9.noarch.rp 1.1 MB/s | 285 kB 00:00 2024-09-13T05:20:04.623 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:04.624 INFO:teuthology.orchestra.run.smithi153.stdout:Total 1.1 MB/s | 285 kB 00:00 2024-09-13T05:20:04.624 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:20:04.632 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:20:04.632 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:20:04.663 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:20:04.663 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:20:04.798 INFO:teuthology.orchestra.run.smithi151.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 547 kB/s | 80 kB 00:00 2024-09-13T05:20:04.884 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:20:04.931 INFO:teuthology.orchestra.run.smithi151.stdout:(2/2): ceph-fuse-19.3.0-4911.g9d608eb1.el9.x86_ 3.1 MB/s | 900 kB 00:00 2024-09-13T05:20:04.931 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:04.932 INFO:teuthology.orchestra.run.smithi151.stdout:Total 2.4 MB/s | 980 kB 00:00 2024-09-13T05:20:04.943 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:20:04.950 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:20:04.966 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:20:04.966 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:20:04.966 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:20:04.967 INFO:teuthology.orchestra.run.smithi153.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:20:04.967 INFO:teuthology.orchestra.run.smithi153.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-13T05:20:04.967 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:05.048 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:20:05.048 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:20:05.158 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:49 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:20:05.235 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:20:05.250 INFO:teuthology.orchestra.run.smithi145.stdout:Package python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:05.294 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:20:05.295 INFO:teuthology.orchestra.run.smithi145.stdout:Nothing to do. 2024-09-13T05:20:05.295 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:05.368 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install rbd-fuse 2024-09-13T05:20:05.377 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-13T05:20:05.447 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/2 2024-09-13T05:20:05.933 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:49 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:20:05.969 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:20:05.969 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:05.969 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:20:05.969 INFO:teuthology.orchestra.run.smithi153.stdout: ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:20:05.969 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:05.969 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:06.067 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:20:06.067 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:20:06.068 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-13T05:20:06.068 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:20:06.068 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:20:06.068 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-fuse x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 85 k 2024-09-13T05:20:06.068 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:06.068 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:20:06.068 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:20:06.068 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-13T05:20:06.068 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:06.069 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 85 k 2024-09-13T05:20:06.069 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 231 k 2024-09-13T05:20:06.069 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:20:06.182 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2/2 2024-09-13T05:20:06.182 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/2 2024-09-13T05:20:06.264 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install librados-devel 2024-09-13T05:20:06.269 INFO:teuthology.orchestra.run.smithi145.stdout:rbd-fuse-19.3.0-4911.g9d608eb1.el9.x86_64.rpm 425 kB/s | 85 kB 00:00 2024-09-13T05:20:06.270 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:06.270 INFO:teuthology.orchestra.run.smithi145.stdout:Total 422 kB/s | 85 kB 00:00 2024-09-13T05:20:06.270 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:20:06.277 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:20:06.277 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:20:06.342 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:20:06.343 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:20:06.448 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-13T05:20:06.448 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:06.448 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:20:06.449 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-13T05:20:06.449 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:06.449 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:06.494 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:20:06.609 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:06.717 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-volume 2024-09-13T05:20:06.848 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:35 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:06.982 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:06.983 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:06.984 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repo Size 2024-09-13T05:20:06.984 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:06.984 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:20:06.984 INFO:teuthology.orchestra.run.smithi153.stdout: librados-devel x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 126 k 2024-09-13T05:20:06.984 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:06.984 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:20:06.984 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:06.984 INFO:teuthology.orchestra.run.smithi153.stdout:Install 1 Package 2024-09-13T05:20:06.985 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:06.985 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 126 k 2024-09-13T05:20:06.985 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 456 k 2024-09-13T05:20:06.985 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:20:07.011 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:07.178 INFO:teuthology.orchestra.run.smithi153.stdout:librados-devel-19.3.0-4911.g9d608eb1.el9.x86_64 653 kB/s | 126 kB 00:00 2024-09-13T05:20:07.179 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:07.179 INFO:teuthology.orchestra.run.smithi153.stdout:Total 648 kB/s | 126 kB 00:00 2024-09-13T05:20:07.179 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:20:07.184 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:20:07.184 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:20:07.250 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:20:07.250 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:20:07.273 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:07.273 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:07.273 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:20:07.273 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:07.273 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:07.273 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:07.302 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:49 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:07.399 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:20:07.437 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:07.438 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:07.438 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-09-13T05:20:07.438 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:07.438 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:20:07.438 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-volume noarch 2:19.3.0-4911.g9d608eb1.el9 ceph-noarch 285 k 2024-09-13T05:20:07.438 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:07.438 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:20:07.439 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:07.439 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-09-13T05:20:07.439 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:07.439 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 285 k 2024-09-13T05:20:07.439 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 1.3 M 2024-09-13T05:20:07.439 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:20:07.510 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:07.511 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install rbd-mirror 2024-09-13T05:20:07.669 INFO:teuthology.orchestra.run.smithi151.stdout:ceph-volume-19.3.0-4911.g9d608eb1.el9.noarch.rp 1.2 MB/s | 285 kB 00:00 2024-09-13T05:20:07.670 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:07.670 INFO:teuthology.orchestra.run.smithi151.stdout:Total 1.2 MB/s | 285 kB 00:00 2024-09-13T05:20:07.670 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:20:07.678 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:20:07.678 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:20:07.707 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:20:07.707 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:20:07.926 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:20:07.988 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:07.995 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:20:08.012 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:20:08.012 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:20:08.012 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-13T05:20:08.012 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:08.082 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:52 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:20:08.223 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:20:08.225 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:20:08.225 INFO:teuthology.orchestra.run.smithi145.stdout: Package Arch Version Repo Size 2024-09-13T05:20:08.225 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:20:08.226 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:20:08.226 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-mirror x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 3.2 M 2024-09-13T05:20:08.226 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:08.226 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:20:08.227 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:20:08.227 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-13T05:20:08.227 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:08.227 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 3.2 M 2024-09-13T05:20:08.228 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 14 M 2024-09-13T05:20:08.228 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:20:08.270 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:08.270 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:08.270 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:20:08.271 INFO:teuthology.orchestra.run.smithi153.stdout: librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:08.271 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:08.271 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:08.565 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install libcephfs2 2024-09-13T05:20:08.573 INFO:teuthology.orchestra.run.smithi145.stdout:rbd-mirror-19.3.0-4911.g9d608eb1.el9.x86_64.rpm 9.2 MB/s | 3.2 MB 00:00 2024-09-13T05:20:08.574 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:08.575 INFO:teuthology.orchestra.run.smithi145.stdout:Total 9.1 MB/s | 3.2 MB 00:00 2024-09-13T05:20:08.575 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:20:08.583 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:20:08.584 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:20:08.665 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:20:08.666 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:20:08.997 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 1/1 2024-09-13T05:20:08.998 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:08.998 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:20:08.998 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-volume-2:19.3.0-4911.g9d608eb1.el9.noarch 2024-09-13T05:20:08.998 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:08.998 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:09.146 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:20:09.150 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:38 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:09.224 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:09.245 INFO:teuthology.orchestra.run.smithi153.stdout:Package libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:09.249 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:09.249 INFO:teuthology.orchestra.run.smithi145.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:20:09.249 INFO:teuthology.orchestra.run.smithi145.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-13T05:20:09.250 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T05:20:09.250 INFO:teuthology.orchestra.run.smithi145.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T05:20:09.250 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:09.292 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:09.292 INFO:teuthology.orchestra.run.smithi153.stdout:Nothing to do. 2024-09-13T05:20:09.292 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:09.323 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install librados-devel 2024-09-13T05:20:09.358 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install libcephfs-devel 2024-09-13T05:20:09.911 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:51 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:09.924 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:38 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:10.049 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repo Size 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout: librados-devel x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 126 k 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 126 k 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 456 k 2024-09-13T05:20:10.050 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:20:10.057 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:10.058 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:10.058 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repo Size 2024-09-13T05:20:10.058 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:10.058 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:20:10.058 INFO:teuthology.orchestra.run.smithi153.stdout: libcephfs-devel x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 32 k 2024-09-13T05:20:10.058 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:10.059 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:20:10.059 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:10.059 INFO:teuthology.orchestra.run.smithi153.stdout:Install 1 Package 2024-09-13T05:20:10.059 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:10.059 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 32 k 2024-09-13T05:20:10.059 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 142 k 2024-09-13T05:20:10.059 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:20:10.215 INFO:teuthology.orchestra.run.smithi153.stdout:libcephfs-devel-19.3.0-4911.g9d608eb1.el9.x86_6 204 kB/s | 32 kB 00:00 2024-09-13T05:20:10.216 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:10.216 INFO:teuthology.orchestra.run.smithi153.stdout:Total 202 kB/s | 32 kB 00:00 2024-09-13T05:20:10.216 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:20:10.219 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:20:10.219 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:20:10.239 INFO:teuthology.orchestra.run.smithi151.stdout:librados-devel-19.3.0-4911.g9d608eb1.el9.x86_64 671 kB/s | 126 kB 00:00 2024-09-13T05:20:10.240 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:10.241 INFO:teuthology.orchestra.run.smithi151.stdout:Total 665 kB/s | 126 kB 00:00 2024-09-13T05:20:10.241 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:20:10.246 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:20:10.246 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:20:10.248 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:20:10.248 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:20:10.312 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:20:10.313 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:20:10.331 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:20:10.349 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:10.349 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:10.349 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:20:10.349 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:10.349 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:10.349 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:10.453 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:10.486 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:20:10.566 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum -y install rbd-nbd 2024-09-13T05:20:10.579 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:10.845 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:11.040 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:11.093 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:11.093 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:11.093 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:20:11.093 INFO:teuthology.orchestra.run.smithi153.stdout: libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:11.094 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:11.094 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:11.150 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:01:55 ago on Fri 13 Sep 2024 05:18:16 AM UTC. 2024-09-13T05:20:11.278 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install librados2 2024-09-13T05:20:11.280 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:11.280 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:11.280 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:20:11.280 INFO:teuthology.orchestra.run.smithi151.stdout: librados-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:11.280 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:11.280 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:11.284 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-13T05:20:11.284 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:20:11.284 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-13T05:20:11.285 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:20:11.285 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-13T05:20:11.285 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-nbd x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 170 k 2024-09-13T05:20:11.285 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:11.285 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-13T05:20:11.285 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-13T05:20:11.285 INFO:teuthology.orchestra.run.smithi145.stdout:Install 1 Package 2024-09-13T05:20:11.285 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:11.286 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 170 k 2024-09-13T05:20:11.286 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 490 k 2024-09-13T05:20:11.286 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-13T05:20:11.493 INFO:teuthology.orchestra.run.smithi145.stdout:rbd-nbd-19.3.0-4911.g9d608eb1.el9.x86_64.rpm 823 kB/s | 170 kB 00:00 2024-09-13T05:20:11.493 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:11.494 INFO:teuthology.orchestra.run.smithi145.stdout:Total 818 kB/s | 170 kB 00:00 2024-09-13T05:20:11.494 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-13T05:20:11.501 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-13T05:20:11.501 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-13T05:20:11.553 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install libcephfs2 2024-09-13T05:20:11.566 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-13T05:20:11.567 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-13T05:20:11.729 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-13T05:20:11.848 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:11.865 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:40 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:11.961 INFO:teuthology.orchestra.run.smithi153.stdout:Package librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:12.008 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:12.009 INFO:teuthology.orchestra.run.smithi153.stdout:Nothing to do. 2024-09-13T05:20:12.009 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:12.089 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install librbd1 2024-09-13T05:20:12.138 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:54 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:12.230 INFO:teuthology.orchestra.run.smithi151.stdout:Package libcephfs2-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:12.260 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:12.276 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:12.277 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-09-13T05:20:12.277 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:12.341 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install libcephfs-devel 2024-09-13T05:20:12.549 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:12.549 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:12.550 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-13T05:20:12.550 INFO:teuthology.orchestra.run.smithi145.stdout: rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:12.550 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:20:12.550 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-13T05:20:12.696 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:41 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:12.773 DEBUG:teuthology.parallel:result is None 2024-09-13T05:20:12.786 INFO:teuthology.orchestra.run.smithi153.stdout:Package librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:12.830 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:12.831 INFO:teuthology.orchestra.run.smithi153.stdout:Nothing to do. 2024-09-13T05:20:12.831 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:12.905 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:54 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:12.907 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install python3-rados 2024-09-13T05:20:13.040 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:13.040 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repo Size 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout: libcephfs-devel x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 32 k 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 32 k 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 142 k 2024-09-13T05:20:13.041 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:20:13.193 INFO:teuthology.orchestra.run.smithi151.stdout:libcephfs-devel-19.3.0-4911.g9d608eb1.el9.x86_6 209 kB/s | 32 kB 00:00 2024-09-13T05:20:13.194 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:13.194 INFO:teuthology.orchestra.run.smithi151.stdout:Total 207 kB/s | 32 kB 00:00 2024-09-13T05:20:13.195 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:20:13.198 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:20:13.198 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:20:13.214 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:20:13.214 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:20:13.320 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:20:13.432 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:13.472 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:42 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:13.562 INFO:teuthology.orchestra.run.smithi153.stdout:Package python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:13.605 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:13.606 INFO:teuthology.orchestra.run.smithi153.stdout:Nothing to do. 2024-09-13T05:20:13.606 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:13.676 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install python3-rgw 2024-09-13T05:20:13.814 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:14.037 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:14.037 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:14.037 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:20:14.037 INFO:teuthology.orchestra.run.smithi151.stdout: libcephfs-devel-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:14.037 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:14.037 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:14.232 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install librados2 2024-09-13T05:20:14.245 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:43 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:14.337 INFO:teuthology.orchestra.run.smithi153.stdout:Package python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:14.380 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:14.381 INFO:teuthology.orchestra.run.smithi153.stdout:Nothing to do. 2024-09-13T05:20:14.381 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:14.448 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install python3-cephfs 2024-09-13T05:20:14.799 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:56 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:14.890 INFO:teuthology.orchestra.run.smithi151.stdout:Package librados2-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:14.935 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:14.936 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-09-13T05:20:14.937 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:14.996 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install librbd1 2024-09-13T05:20:15.020 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:44 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:15.108 INFO:teuthology.orchestra.run.smithi153.stdout:Package python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:15.153 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:15.153 INFO:teuthology.orchestra.run.smithi153.stdout:Nothing to do. 2024-09-13T05:20:15.153 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:15.226 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install python3-rbd 2024-09-13T05:20:15.563 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:57 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:15.653 INFO:teuthology.orchestra.run.smithi151.stdout:Package librbd1-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:15.696 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:15.697 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-09-13T05:20:15.698 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:15.758 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install python3-rados 2024-09-13T05:20:15.799 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:44 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:15.891 INFO:teuthology.orchestra.run.smithi153.stdout:Package python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:15.934 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:15.935 INFO:teuthology.orchestra.run.smithi153.stdout:Nothing to do. 2024-09-13T05:20:15.935 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:16.018 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install rbd-fuse 2024-09-13T05:20:16.327 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:58 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:16.419 INFO:teuthology.orchestra.run.smithi151.stdout:Package python3-rados-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:16.463 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:16.464 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-09-13T05:20:16.464 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:16.528 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install python3-rgw 2024-09-13T05:20:16.600 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:45 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:16.733 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:16.733 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:16.733 INFO:teuthology.orchestra.run.smithi153.stdout: Package Architecture Version Repository Size 2024-09-13T05:20:16.733 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:16.734 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:20:16.734 INFO:teuthology.orchestra.run.smithi153.stdout: rbd-fuse x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 85 k 2024-09-13T05:20:16.734 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:16.734 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:20:16.734 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:16.734 INFO:teuthology.orchestra.run.smithi153.stdout:Install 1 Package 2024-09-13T05:20:16.734 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:16.735 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 85 k 2024-09-13T05:20:16.735 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 231 k 2024-09-13T05:20:16.735 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:20:16.952 INFO:teuthology.orchestra.run.smithi153.stdout:rbd-fuse-19.3.0-4911.g9d608eb1.el9.x86_64.rpm 392 kB/s | 85 kB 00:00 2024-09-13T05:20:16.952 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:16.953 INFO:teuthology.orchestra.run.smithi153.stdout:Total 390 kB/s | 85 kB 00:00 2024-09-13T05:20:16.953 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:20:16.959 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:20:16.959 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:20:17.023 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:20:17.023 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:20:17.091 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:59 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:17.168 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:20:17.181 INFO:teuthology.orchestra.run.smithi151.stdout:Package python3-rgw-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:17.226 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:17.227 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-09-13T05:20:17.227 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:17.283 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:17.290 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install python3-cephfs 2024-09-13T05:20:17.710 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:17.857 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:59 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:17.948 INFO:teuthology.orchestra.run.smithi151.stdout:Package python3-cephfs-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:17.984 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:17.984 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:17.984 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:20:17.984 INFO:teuthology.orchestra.run.smithi153.stdout: rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:17.984 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:17.984 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:17.992 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:17.993 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-09-13T05:20:17.993 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:18.067 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install python3-rbd 2024-09-13T05:20:18.279 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install rbd-mirror 2024-09-13T05:20:18.640 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:02:00 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:18.732 INFO:teuthology.orchestra.run.smithi151.stdout:Package python3-rbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 is already installed. 2024-09-13T05:20:18.776 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:18.777 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-09-13T05:20:18.778 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:18.840 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install rbd-fuse 2024-09-13T05:20:18.868 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:47 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:19.009 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:19.010 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:19.010 INFO:teuthology.orchestra.run.smithi153.stdout: Package Arch Version Repo Size 2024-09-13T05:20:19.010 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:19.010 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:20:19.010 INFO:teuthology.orchestra.run.smithi153.stdout: rbd-mirror x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 3.2 M 2024-09-13T05:20:19.010 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:19.010 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:20:19.011 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:19.011 INFO:teuthology.orchestra.run.smithi153.stdout:Install 1 Package 2024-09-13T05:20:19.011 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:19.011 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 3.2 M 2024-09-13T05:20:19.011 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 14 M 2024-09-13T05:20:19.011 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:20:19.406 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:02:01 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:19.540 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout: Package Architecture Version Repository Size 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-fuse x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 85 k 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-09-13T05:20:19.541 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:19.542 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 85 k 2024-09-13T05:20:19.542 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 231 k 2024-09-13T05:20:19.542 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:20:19.671 INFO:teuthology.orchestra.run.smithi153.stdout:rbd-mirror-19.3.0-4911.g9d608eb1.el9.x86_64.rpm 4.8 MB/s | 3.2 MB 00:00 2024-09-13T05:20:19.672 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:19.672 INFO:teuthology.orchestra.run.smithi153.stdout:Total 4.8 MB/s | 3.2 MB 00:00 2024-09-13T05:20:19.673 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:20:19.682 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:20:19.682 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:20:19.765 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:20:19.765 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:20:19.913 INFO:teuthology.orchestra.run.smithi151.stdout:rbd-fuse-19.3.0-4911.g9d608eb1.el9.x86_64.rpm 229 kB/s | 85 kB 00:00 2024-09-13T05:20:19.913 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:19.914 INFO:teuthology.orchestra.run.smithi151.stdout:Total 228 kB/s | 85 kB 00:00 2024-09-13T05:20:19.914 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:20:19.920 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:20:19.921 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:20:19.984 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:20:19.985 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:20:20.133 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:20:20.227 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:20.258 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:20:20.331 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:20.357 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:20.357 INFO:teuthology.orchestra.run.smithi153.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:20:20.357 INFO:teuthology.orchestra.run.smithi153.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-13T05:20:20.357 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T05:20:20.357 INFO:teuthology.orchestra.run.smithi153.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T05:20:20.357 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:20.597 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:20.863 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:20.863 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:20.863 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:20:20.863 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-fuse-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:20.863 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:20.863 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:21.130 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install rbd-mirror 2024-09-13T05:20:21.508 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:21.508 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:21.508 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:20:21.508 INFO:teuthology.orchestra.run.smithi153.stdout: rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:21.508 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:21.508 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:21.719 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:02:03 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:21.764 DEBUG:teuthology.orchestra.run.smithi153:> sudo yum -y install rbd-nbd 2024-09-13T05:20:21.857 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:21.858 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:21.858 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repo Size 2024-09-13T05:20:21.858 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:21.858 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:20:21.858 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-mirror x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 3.2 M 2024-09-13T05:20:21.858 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:21.858 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:20:21.859 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:21.859 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-09-13T05:20:21.859 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:21.859 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 3.2 M 2024-09-13T05:20:21.859 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 14 M 2024-09-13T05:20:21.859 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:20:22.191 INFO:teuthology.orchestra.run.smithi151.stdout:rbd-mirror-19.3.0-4911.g9d608eb1.el9.x86_64.rpm 9.6 MB/s | 3.2 MB 00:00 2024-09-13T05:20:22.191 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:22.192 INFO:teuthology.orchestra.run.smithi151.stdout:Total 9.6 MB/s | 3.2 MB 00:00 2024-09-13T05:20:22.192 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:20:22.201 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:20:22.201 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:20:22.283 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:20:22.284 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:20:22.360 INFO:teuthology.orchestra.run.smithi153.stdout:Last metadata expiration check: 0:01:51 ago on Fri 13 Sep 2024 05:18:31 AM UTC. 2024-09-13T05:20:22.498 INFO:teuthology.orchestra.run.smithi153.stdout:Dependencies resolved. 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout: Package Architecture Version Repository Size 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout:Installing: 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout: rbd-nbd x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 170 k 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction Summary 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout:================================================================================ 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout:Install 1 Package 2024-09-13T05:20:22.499 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:22.500 INFO:teuthology.orchestra.run.smithi153.stdout:Total download size: 170 k 2024-09-13T05:20:22.500 INFO:teuthology.orchestra.run.smithi153.stdout:Installed size: 490 k 2024-09-13T05:20:22.500 INFO:teuthology.orchestra.run.smithi153.stdout:Downloading Packages: 2024-09-13T05:20:22.711 INFO:teuthology.orchestra.run.smithi153.stdout:rbd-nbd-19.3.0-4911.g9d608eb1.el9.x86_64.rpm 812 kB/s | 170 kB 00:00 2024-09-13T05:20:22.712 INFO:teuthology.orchestra.run.smithi153.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:22.712 INFO:teuthology.orchestra.run.smithi153.stdout:Total 802 kB/s | 170 kB 00:00 2024-09-13T05:20:22.713 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction check 2024-09-13T05:20:22.725 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction check succeeded. 2024-09-13T05:20:22.725 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction test 2024-09-13T05:20:22.760 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:20:22.801 INFO:teuthology.orchestra.run.smithi153.stdout:Transaction test succeeded. 2024-09-13T05:20:22.802 INFO:teuthology.orchestra.run.smithi153.stdout:Running transaction 2024-09-13T05:20:22.825 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:22.850 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:22.850 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T05:20:22.850 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-13T05:20:22.850 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T05:20:22.850 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T05:20:22.850 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:22.971 INFO:teuthology.orchestra.run.smithi153.stdout: Preparing : 1/1 2024-09-13T05:20:23.083 INFO:teuthology.orchestra.run.smithi153.stdout: Installing : rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:23.494 INFO:teuthology.orchestra.run.smithi153.stdout: Running scriptlet: rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:23.775 INFO:teuthology.orchestra.run.smithi153.stdout: Verifying : rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:23.775 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:23.775 INFO:teuthology.orchestra.run.smithi153.stdout:Installed: 2024-09-13T05:20:23.775 INFO:teuthology.orchestra.run.smithi153.stdout: rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:23.775 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:20:23.775 INFO:teuthology.orchestra.run.smithi153.stdout:Complete! 2024-09-13T05:20:23.938 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:23.938 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:23.939 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:20:23.939 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-mirror-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:23.939 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:23.939 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:24.032 DEBUG:teuthology.parallel:result is None 2024-09-13T05:20:24.169 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install rbd-nbd 2024-09-13T05:20:24.759 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:02:06 ago on Fri 13 Sep 2024 05:18:18 AM UTC. 2024-09-13T05:20:24.894 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-09-13T05:20:24.895 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:24.895 INFO:teuthology.orchestra.run.smithi151.stdout: Package Architecture Version Repository Size 2024-09-13T05:20:24.895 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:24.895 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-09-13T05:20:24.895 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-nbd x86_64 2:19.3.0-4911.g9d608eb1.el9 ceph 170 k 2024-09-13T05:20:24.895 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:24.896 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-09-13T05:20:24.896 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-09-13T05:20:24.896 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-09-13T05:20:24.896 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:24.896 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 170 k 2024-09-13T05:20:24.896 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 490 k 2024-09-13T05:20:24.896 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-09-13T05:20:25.110 INFO:teuthology.orchestra.run.smithi151.stdout:rbd-nbd-19.3.0-4911.g9d608eb1.el9.x86_64.rpm 796 kB/s | 170 kB 00:00 2024-09-13T05:20:25.111 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:20:25.111 INFO:teuthology.orchestra.run.smithi151.stdout:Total 790 kB/s | 170 kB 00:00 2024-09-13T05:20:25.111 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-09-13T05:20:25.119 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-09-13T05:20:25.119 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-09-13T05:20:25.184 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-09-13T05:20:25.184 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-09-13T05:20:25.354 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-09-13T05:20:25.458 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:25.865 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:26.078 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 1/1 2024-09-13T05:20:26.078 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:26.078 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-09-13T05:20:26.078 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-nbd-2:19.3.0-4911.g9d608eb1.el9.x86_64 2024-09-13T05:20:26.078 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-13T05:20:26.078 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-09-13T05:20:26.357 DEBUG:teuthology.parallel:result is None 2024-09-13T05:20:26.358 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:20:26.514 DEBUG:teuthology.orchestra.run.smithi145:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-13T05:20:26.540 INFO:teuthology.orchestra.run.smithi145.stdout:19.3.0-4911.g9d608eb1.el9 2024-09-13T05:20:26.541 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4911.g9d608eb1.el9 2024-09-13T05:20:26.541 INFO:teuthology.task.install:The correct ceph version 19.3.0-4911.g9d608eb1 is installed. 2024-09-13T05:20:26.544 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:20:26.697 DEBUG:teuthology.orchestra.run.smithi151:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-13T05:20:26.719 INFO:teuthology.orchestra.run.smithi151.stdout:19.3.0-4911.g9d608eb1.el9 2024-09-13T05:20:26.719 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4911.g9d608eb1.el9 2024-09-13T05:20:26.719 INFO:teuthology.task.install:The correct ceph version 19.3.0-4911.g9d608eb1 is installed. 2024-09-13T05:20:26.721 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:20:26.870 DEBUG:teuthology.orchestra.run.smithi153:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-13T05:20:26.896 INFO:teuthology.orchestra.run.smithi153.stdout:19.3.0-4911.g9d608eb1.el9 2024-09-13T05:20:26.896 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4911.g9d608eb1.el9 2024-09-13T05:20:26.896 INFO:teuthology.task.install:The correct ceph version 19.3.0-4911.g9d608eb1 is installed. 2024-09-13T05:20:26.898 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-13T05:20:26.898 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:20:26.898 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-13T05:20:26.929 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:20:26.929 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-13T05:20:26.954 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:20:26.955 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-13T05:20:26.985 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-13T05:20:26.985 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:20:26.985 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/usr/bin/daemon-helper 2024-09-13T05:20:27.014 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-13T05:20:27.081 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:20:27.081 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/usr/bin/daemon-helper 2024-09-13T05:20:27.110 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-13T05:20:27.174 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:20:27.174 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd of=/usr/bin/daemon-helper 2024-09-13T05:20:27.204 DEBUG:teuthology.orchestra.run.smithi153:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-13T05:20:27.273 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-13T05:20:27.274 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:20:27.274 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-13T05:20:27.302 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-13T05:20:27.368 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:20:27.368 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-13T05:20:27.393 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-13T05:20:27.458 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:20:27.458 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-13T05:20:27.487 DEBUG:teuthology.orchestra.run.smithi153:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-13T05:20:27.556 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-13T05:20:27.556 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:20:27.556 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/usr/bin/stdin-killer 2024-09-13T05:20:27.583 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-13T05:20:27.649 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:20:27.649 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/usr/bin/stdin-killer 2024-09-13T05:20:27.674 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-13T05:20:27.738 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:20:27.738 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd of=/usr/bin/stdin-killer 2024-09-13T05:20:27.767 DEBUG:teuthology.orchestra.run.smithi153:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-13T05:20:27.836 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-13T05:20:27.934 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': True}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3'} 2024-09-13T05:20:27.934 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:20:27.934 INFO:tasks.cephadm:Cluster fsid is e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:20:27.934 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-13T05:20:27.935 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.145', 'mon.b': '172.21.15.151', 'mon.c': '172.21.15.153'} 2024-09-13T05:20:27.935 INFO:tasks.cephadm:First mon is mon.a on smithi145 2024-09-13T05:20:27.935 INFO:tasks.cephadm:First mgr is a 2024-09-13T05:20:27.935 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-13T05:20:27.935 DEBUG:teuthology.orchestra.run.smithi145:> sudo hostname $(hostname -s) 2024-09-13T05:20:27.962 DEBUG:teuthology.orchestra.run.smithi151:> sudo hostname $(hostname -s) 2024-09-13T05:20:27.987 DEBUG:teuthology.orchestra.run.smithi153:> sudo hostname $(hostname -s) 2024-09-13T05:20:28.017 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-13T05:20:28.017 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:20:28.167 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/83020/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-4911-g9d608eb1', 'node_name': '172.21.2.6+braggi06', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-4911.g9d608eb1'}, 'url': 'https://1.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-12 18:36:28.367049', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-guits-main-2024-09-12-1245', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}] 2024-09-13T05:20:28.316 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref wip-guits-main-2024-09-12-1245, sha1 9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:20:28.318 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/x86_64/flavors/default/cephadm 2024-09-13T05:20:28.318 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/x86_64/flavors/default/cephadm 2024-09-13T05:20:28.318 DEBUG:teuthology.orchestra.run.smithi145:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-13T05:20:28.716 INFO:teuthology.orchestra.run.smithi145.stdout:-rw-r--r--. 1 ubuntu ubuntu 804133 Sep 13 05:20 /home/ubuntu/cephtest/cephadm 2024-09-13T05:20:28.716 DEBUG:teuthology.orchestra.run.smithi151:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-13T05:20:29.106 INFO:teuthology.orchestra.run.smithi151.stdout:-rw-r--r--. 1 ubuntu ubuntu 804133 Sep 13 05:20 /home/ubuntu/cephtest/cephadm 2024-09-13T05:20:29.106 DEBUG:teuthology.orchestra.run.smithi153:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-12-1245/9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-13T05:20:29.510 INFO:teuthology.orchestra.run.smithi153.stdout:-rw-r--r--. 1 ubuntu ubuntu 804133 Sep 13 05:20 /home/ubuntu/cephtest/cephadm 2024-09-13T05:20:29.511 DEBUG:teuthology.orchestra.run.smithi145:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-13T05:20:29.531 DEBUG:teuthology.orchestra.run.smithi151:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-13T05:20:29.550 DEBUG:teuthology.orchestra.run.smithi153:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-13T05:20:29.581 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 on all hosts... 2024-09-13T05:20:29.581 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 pull 2024-09-13T05:20:29.584 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 pull 2024-09-13T05:20:29.593 DEBUG:teuthology.orchestra.run.smithi153:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 pull 2024-09-13T05:20:31.122 INFO:teuthology.orchestra.run.smithi145.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3... 2024-09-13T05:20:31.176 INFO:teuthology.orchestra.run.smithi151.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3... 2024-09-13T05:20:31.267 INFO:teuthology.orchestra.run.smithi153.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3... 2024-09-13T05:21:03.652 INFO:teuthology.orchestra.run.smithi153.stdout:{ 2024-09-13T05:21:03.653 INFO:teuthology.orchestra.run.smithi153.stdout: "ceph_version": "ceph version 19.3.0-4911-g9d608eb1 (9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3) squid (dev)", 2024-09-13T05:21:03.653 INFO:teuthology.orchestra.run.smithi153.stdout: "image_id": "0ce38589d192f00a67c8f9b0cb5ac7ff2f64a4d81462c062375b6ecefcaf776f", 2024-09-13T05:21:03.653 INFO:teuthology.orchestra.run.smithi153.stdout: "repo_digests": [ 2024-09-13T05:21:03.653 INFO:teuthology.orchestra.run.smithi153.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff" 2024-09-13T05:21:03.653 INFO:teuthology.orchestra.run.smithi153.stdout: ] 2024-09-13T05:21:03.653 INFO:teuthology.orchestra.run.smithi153.stdout:} 2024-09-13T05:21:21.214 INFO:teuthology.orchestra.run.smithi151.stdout:{ 2024-09-13T05:21:21.215 INFO:teuthology.orchestra.run.smithi151.stdout: "ceph_version": "ceph version 19.3.0-4911-g9d608eb1 (9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3) squid (dev)", 2024-09-13T05:21:21.215 INFO:teuthology.orchestra.run.smithi151.stdout: "image_id": "0ce38589d192f00a67c8f9b0cb5ac7ff2f64a4d81462c062375b6ecefcaf776f", 2024-09-13T05:21:21.215 INFO:teuthology.orchestra.run.smithi151.stdout: "repo_digests": [ 2024-09-13T05:21:21.215 INFO:teuthology.orchestra.run.smithi151.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff" 2024-09-13T05:21:21.215 INFO:teuthology.orchestra.run.smithi151.stdout: ] 2024-09-13T05:21:21.215 INFO:teuthology.orchestra.run.smithi151.stdout:} 2024-09-13T05:21:21.342 INFO:teuthology.orchestra.run.smithi145.stdout:{ 2024-09-13T05:21:21.342 INFO:teuthology.orchestra.run.smithi145.stdout: "ceph_version": "ceph version 19.3.0-4911-g9d608eb1 (9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3) squid (dev)", 2024-09-13T05:21:21.342 INFO:teuthology.orchestra.run.smithi145.stdout: "image_id": "0ce38589d192f00a67c8f9b0cb5ac7ff2f64a4d81462c062375b6ecefcaf776f", 2024-09-13T05:21:21.342 INFO:teuthology.orchestra.run.smithi145.stdout: "repo_digests": [ 2024-09-13T05:21:21.343 INFO:teuthology.orchestra.run.smithi145.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff" 2024-09-13T05:21:21.343 INFO:teuthology.orchestra.run.smithi145.stdout: ] 2024-09-13T05:21:21.343 INFO:teuthology.orchestra.run.smithi145.stdout:} 2024-09-13T05:21:21.375 DEBUG:teuthology.orchestra.run.smithi145:> sudo mkdir -p /etc/ceph 2024-09-13T05:21:21.406 DEBUG:teuthology.orchestra.run.smithi151:> sudo mkdir -p /etc/ceph 2024-09-13T05:21:21.434 DEBUG:teuthology.orchestra.run.smithi153:> sudo mkdir -p /etc/ceph 2024-09-13T05:21:21.469 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod 777 /etc/ceph 2024-09-13T05:21:21.494 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod 777 /etc/ceph 2024-09-13T05:21:21.519 DEBUG:teuthology.orchestra.run.smithi153:> sudo chmod 777 /etc/ceph 2024-09-13T05:21:21.549 INFO:tasks.cephadm:Writing seed config... 2024-09-13T05:21:21.550 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2024-09-13T05:21:21.550 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-13T05:21:21.550 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-13T05:21:21.550 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-09-13T05:21:21.550 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-13T05:21:21.551 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-13T05:21:21.551 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-13T05:21:21.551 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-13T05:21:21.551 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-13T05:21:21.551 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:21:21.552 DEBUG:teuthology.orchestra.run.smithi145:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-13T05:21:21.567 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 = e34a8208-718f-11ef-bceb-c7b262605968 mon election default strategy = 3 [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 mgr/cephadm/use_agent = True [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-09-13T05:21:21.567 DEBUG:teuthology.orchestra.run.smithi145:mon.a> sudo journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.a.service 2024-09-13T05:21:21.609 DEBUG:teuthology.orchestra.run.smithi145:mgr.a> sudo journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.a.service 2024-09-13T05:21:21.652 INFO:tasks.cephadm:Bootstrapping... 2024-09-13T05:21:21.653 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 -v bootstrap --fsid e34a8208-718f-11ef-bceb-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.145 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-13T05:21:21.854 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-13T05:21:21.855 INFO:teuthology.orchestra.run.smithi145.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3', '-v', 'bootstrap', '--fsid', 'e34a8208-718f-11ef-bceb-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.145', '--skip-admin-label'] 2024-09-13T05:21:21.855 INFO:teuthology.orchestra.run.smithi145.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-13T05:21:21.855 INFO:teuthology.orchestra.run.smithi145.stdout:Verifying podman|docker is present... 2024-09-13T05:21:21.879 INFO:teuthology.orchestra.run.smithi145.stdout:/bin/podman: stdout 5.2.2 2024-09-13T05:21:21.879 INFO:teuthology.orchestra.run.smithi145.stdout:Verifying lvm2 is present... 2024-09-13T05:21:21.879 INFO:teuthology.orchestra.run.smithi145.stdout:Verifying time synchronization is in place... 2024-09-13T05:21:21.887 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-13T05:21:21.887 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-13T05:21:21.893 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-13T05:21:21.893 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout inactive 2024-09-13T05:21:21.899 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout enabled 2024-09-13T05:21:21.906 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout active 2024-09-13T05:21:21.906 INFO:teuthology.orchestra.run.smithi145.stdout:Unit chronyd.service is enabled and running 2024-09-13T05:21:21.906 INFO:teuthology.orchestra.run.smithi145.stdout:Repeating the final host check... 2024-09-13T05:21:21.928 INFO:teuthology.orchestra.run.smithi145.stdout:/bin/podman: stdout 5.2.2 2024-09-13T05:21:21.928 INFO:teuthology.orchestra.run.smithi145.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-13T05:21:21.928 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl is present 2024-09-13T05:21:21.928 INFO:teuthology.orchestra.run.smithi145.stdout:lvcreate is present 2024-09-13T05:21:21.934 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-13T05:21:21.935 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-13T05:21:21.940 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-13T05:21:21.940 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout inactive 2024-09-13T05:21:21.947 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout enabled 2024-09-13T05:21:21.954 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout active 2024-09-13T05:21:21.954 INFO:teuthology.orchestra.run.smithi145.stdout:Unit chronyd.service is enabled and running 2024-09-13T05:21:21.954 INFO:teuthology.orchestra.run.smithi145.stdout:Host looks OK 2024-09-13T05:21:21.954 INFO:teuthology.orchestra.run.smithi145.stdout:Cluster fsid: e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:21.954 INFO:teuthology.orchestra.run.smithi145.stdout:Acquiring lock 140400370125168 on /run/cephadm/e34a8208-718f-11ef-bceb-c7b262605968.lock 2024-09-13T05:21:21.954 INFO:teuthology.orchestra.run.smithi145.stdout:Lock 140400370125168 acquired on /run/cephadm/e34a8208-718f-11ef-bceb-c7b262605968.lock 2024-09-13T05:21:21.954 INFO:teuthology.orchestra.run.smithi145.stdout:Verifying IP 172.21.15.145 port 3300 ... 2024-09-13T05:21:21.955 INFO:teuthology.orchestra.run.smithi145.stdout:Verifying IP 172.21.15.145 port 6789 ... 2024-09-13T05:21:21.955 INFO:teuthology.orchestra.run.smithi145.stdout:Base mon IP(s) is [172.21.15.145:3300, 172.21.15.145:6789], mon addrv is [v2:172.21.15.145:3300,v1:172.21.15.145:6789] 2024-09-13T05:21:21.958 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.145 metric 100 2024-09-13T05:21:21.958 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.145 metric 100 2024-09-13T05:21:21.960 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-13T05:21:21.960 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 1024 pref medium 2024-09-13T05:21:21.960 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 pref medium 2024-09-13T05:21:21.963 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-13T05:21:21.963 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-13T05:21:21.963 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-13T05:21:21.963 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-13T05:21:21.963 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:fe88:7791/64 scope link noprefixroute 2024-09-13T05:21:21.963 INFO:teuthology.orchestra.run.smithi145.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-13T05:21:21.964 INFO:teuthology.orchestra.run.smithi145.stdout:Mon IP `172.21.15.145` is in CIDR network `172.21.0.0/20` 2024-09-13T05:21:21.964 INFO:teuthology.orchestra.run.smithi145.stdout:Mon IP `172.21.15.145` is in CIDR network `172.21.0.0/20` 2024-09-13T05:21:21.964 INFO:teuthology.orchestra.run.smithi145.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-13T05:21:21.964 INFO:teuthology.orchestra.run.smithi145.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-13T05:21:21.964 INFO:teuthology.orchestra.run.smithi145.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3... 2024-09-13T05:21:22.454 INFO:teuthology.orchestra.run.smithi145.stdout:/bin/podman: stdout 0ce38589d192f00a67c8f9b0cb5ac7ff2f64a4d81462c062375b6ecefcaf776f 2024-09-13T05:21:22.454 INFO:teuthology.orchestra.run.smithi145.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3... 2024-09-13T05:21:22.454 INFO:teuthology.orchestra.run.smithi145.stdout:/bin/podman: stderr Getting image source signatures 2024-09-13T05:21:22.454 INFO:teuthology.orchestra.run.smithi145.stdout:/bin/podman: stderr Copying blob sha256:bc7b3194bffc4a43291bc953f168b025376bdc90932f49f19c32c1cc58e911c2 2024-09-13T05:21:22.454 INFO:teuthology.orchestra.run.smithi145.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-13T05:21:22.454 INFO:teuthology.orchestra.run.smithi145.stdout:/bin/podman: stderr Copying config sha256:0ce38589d192f00a67c8f9b0cb5ac7ff2f64a4d81462c062375b6ecefcaf776f 2024-09-13T05:21:22.454 INFO:teuthology.orchestra.run.smithi145.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-13T05:21:23.433 INFO:teuthology.orchestra.run.smithi145.stdout:ceph: stdout ceph version 19.3.0-4911-g9d608eb1 (9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3) squid (dev) 2024-09-13T05:21:23.433 INFO:teuthology.orchestra.run.smithi145.stdout:Ceph version: ceph version 19.3.0-4911-g9d608eb1 (9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3) squid (dev) 2024-09-13T05:21:23.433 INFO:teuthology.orchestra.run.smithi145.stdout:Extracting ceph user uid/gid from container image... 2024-09-13T05:21:24.339 INFO:teuthology.orchestra.run.smithi145.stdout:stat: stdout 167 167 2024-09-13T05:21:24.339 INFO:teuthology.orchestra.run.smithi145.stdout:Creating initial keys... 2024-09-13T05:21:25.227 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph-authtool: stdout AQDUy+Nm6/KaKBAADTi4tS1stcWNGYkIeuq3lA== 2024-09-13T05:21:26.183 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph-authtool: stdout AQDVy+NmbnUtIRAA02e2knNr0nP86A/rOiq8lQ== 2024-09-13T05:21:27.189 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph-authtool: stdout AQDWy+NmSK/JGxAAEHxQAHU1UBnKTpf9AhKC3A== 2024-09-13T05:21:27.190 INFO:teuthology.orchestra.run.smithi145.stdout:Creating initial monmap... 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout:monmaptool for a [v2:172.21.15.145:3300,v1:172.21.15.145:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout:setting min_mon_release = quincy 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/monmaptool: set fsid to e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:21:28.229 INFO:teuthology.orchestra.run.smithi145.stdout:Creating mon... 2024-09-13T05:21:29.185 INFO:teuthology.orchestra.run.smithi145.stdout:create mon.a on 2024-09-13T05:21:29.393 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-09-13T05:21:29.534 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-13T05:21:29.703 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-e34a8208-718f-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-e34a8208-718f-11ef-bceb-c7b262605968.target. 2024-09-13T05:21:29.703 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-e34a8208-718f-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-e34a8208-718f-11ef-bceb-c7b262605968.target. 2024-09-13T05:21:29.953 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.a 2024-09-13T05:21:29.954 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Failed to reset failed state of unit ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-13T05:21:30.119 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-e34a8208-718f-11ef-bceb-c7b262605968.target.wants/ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.a.service → /etc/systemd/system/ceph-e34a8208-718f-11ef-bceb-c7b262605968@.service. 2024-09-13T05:21:31.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:30 smithi145 ceph-mon[29073]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-13T05:21:31.738 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-13T05:21:31.739 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout disabled 2024-09-13T05:21:31.747 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-13T05:21:31.747 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout inactive 2024-09-13T05:21:31.747 INFO:teuthology.orchestra.run.smithi145.stdout:firewalld.service is not enabled 2024-09-13T05:21:31.747 INFO:teuthology.orchestra.run.smithi145.stdout:Not possible to enable service . firewalld.service is not available 2024-09-13T05:21:31.747 INFO:teuthology.orchestra.run.smithi145.stdout:Waiting for mon to start... 2024-09-13T05:21:31.747 INFO:teuthology.orchestra.run.smithi145.stdout:Waiting for mon... 2024-09-13T05:21:32.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-13T05:21:32.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: monmap epoch 1 2024-09-13T05:21:32.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:32.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: last_changed 2024-09-13T05:21:27.511396+0000 2024-09-13T05:21:32.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:21:32.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: min_mon_release 19 (squid) 2024-09-13T05:21:32.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: election_strategy: 1 2024-09-13T05:21:32.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:21:32.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: fsmap 2024-09-13T05:21:32.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: osdmap e1: 0 total, 0 up, 0 in 2024-09-13T05:21:32.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 ceph-mon[29073]: mgrmap e1: no daemons active 2024-09-13T05:21:32.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 bash[29054]: ae55391797d83bb3727e17f14f9c3d3de25bb2a9ef0c31a891fcef36e9243bb0 2024-09-13T05:21:32.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:31 smithi145 systemd[1]: Started Ceph mon.a for e34a8208-718f-11ef-bceb-c7b262605968. 2024-09-13T05:21:35.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:34 smithi145 ceph-mon[29073]: from='client.? 172.21.15.145:0/251764253' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-13T05:21:41.302 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout cluster: 2024-09-13T05:21:41.302 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout id: e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:41.302 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-13T05:21:41.303 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:41.303 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout services: 2024-09-13T05:21:41.303 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 4s) 2024-09-13T05:21:41.303 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-13T05:21:41.303 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-13T05:21:41.303 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:41.303 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout data: 2024-09-13T05:21:41.303 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-13T05:21:41.304 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-13T05:21:41.304 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-13T05:21:41.304 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout pgs: 2024-09-13T05:21:41.304 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:41.304 INFO:teuthology.orchestra.run.smithi145.stdout:mon is available 2024-09-13T05:21:41.304 INFO:teuthology.orchestra.run.smithi145.stdout:Assimilating anything we can from ceph.conf... 2024-09-13T05:21:43.760 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:43 smithi145 ceph-mon[29073]: from='client.? 172.21.15.145:0/4250509127' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-13T05:21:43.760 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:43 smithi145 ceph-mon[29073]: from='client.? 172.21.15.145:0/4250509127' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-13T05:21:44.032 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout [global] 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout fsid = e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.145:3300,v1:172.21.15.145:6789] 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-13T05:21:44.033 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:44.034 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout [osd] 2024-09-13T05:21:44.034 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-13T05:21:44.034 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-13T05:21:44.034 INFO:teuthology.orchestra.run.smithi145.stdout:Generating new minimal ceph.conf... 2024-09-13T05:21:44.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:44 smithi145 ceph-mon[29073]: from='client.? 172.21.15.145:0/1002016706' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:21:45.081 INFO:teuthology.orchestra.run.smithi145.stdout:Restarting the monitor... 2024-09-13T05:21:45.355 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:45 smithi145 systemd[1]: Stopping Ceph mon.a for e34a8208-718f-11ef-bceb-c7b262605968... 2024-09-13T05:21:45.688 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:45 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a[29069]: 2024-09-13T05:21:45.353+0000 7f95dae5a640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -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-09-13T05:21:45.688 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:45 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a[29069]: 2024-09-13T05:21:45.353+0000 7f95dae5a640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-13T05:21:45.688 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:45 smithi145 podman[29312]: 2024-09-13 05:21:45.405181323 +0000 UTC m=+0.161152523 container died ae55391797d83bb3727e17f14f9c3d3de25bb2a9ef0c31a891fcef36e9243bb0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_BRANCH=HEAD, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-13T05:21:46.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:45 smithi145 podman[29312]: 2024-09-13 05:21:45.786965991 +0000 UTC m=+0.542937180 container cleanup ae55391797d83bb3727e17f14f9c3d3de25bb2a9ef0c31a891fcef36e9243bb0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, ceph=True) 2024-09-13T05:21:46.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:45 smithi145 bash[29312]: ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a 2024-09-13T05:21:46.427 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 podman[29324]: 2024-09-13 05:21:46.096539215 +0000 UTC m=+0.686215626 container remove ae55391797d83bb3727e17f14f9c3d3de25bb2a9ef0c31a891fcef36e9243bb0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2) 2024-09-13T05:21:46.428 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 systemd[1]: ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-13T05:21:46.428 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 systemd[1]: Stopped Ceph mon.a for e34a8208-718f-11ef-bceb-c7b262605968. 2024-09-13T05:21:46.428 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 systemd[1]: Starting Ceph mon.a for e34a8208-718f-11ef-bceb-c7b262605968... 2024-09-13T05:21:46.690 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 podman[29420]: 2024-09-13 05:21:46.329975614 +0000 UTC m=+0.015363468 image pull 0ce38589d192f00a67c8f9b0cb5ac7ff2f64a4d81462c062375b6ecefcaf776f quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 2024-09-13T05:21:46.691 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 podman[29420]: 2024-09-13 05:21:46.447373884 +0000 UTC m=+0.132761791 container create b0aea69ba126441a181f2e6ac7324e459ced03896ef72720aaa099aa37197876 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.license=GPLv2, GIT_CLEAN=True, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.37.2) 2024-09-13T05:21:46.691 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 podman[29420]: 2024-09-13 05:21:46.666259938 +0000 UTC m=+0.351647780 container init b0aea69ba126441a181f2e6ac7324e459ced03896ef72720aaa099aa37197876 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, ceph=True, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=) 2024-09-13T05:21:46.691 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 podman[29420]: 2024-09-13 05:21:46.669481127 +0000 UTC m=+0.354868969 container start b0aea69ba126441a181f2e6ac7324e459ced03896ef72720aaa099aa37197876 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, ceph=True, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-13T05:21:46.779 INFO:teuthology.orchestra.run.smithi145.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-13T05:21:47.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: set uid:gid to 167:167 (ceph:ceph) 2024-09-13T05:21:47.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: ceph version 19.3.0-4911-g9d608eb1 (9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3) squid (dev), process ceph-mon, pid 2 2024-09-13T05:21:47.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: pidfile_write: ignore empty --pid-file 2024-09-13T05:21:47.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: load: jerasure load: lrc 2024-09-13T05:21:47.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: RocksDB version: 7.9.2 2024-09-13T05:21:47.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Git sha 0 2024-09-13T05:21:47.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Compile date 2024-09-12 17:11:01 2024-09-13T05:21:47.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: DB SUMMARY 2024-09-13T05:21:47.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: DB Session ID: VO1OM3GPQLLYFAXAJL3D 2024-09-13T05:21:47.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: CURRENT file: CURRENT 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: IDENTITY file: IDENTITY 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 89135 ; 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.error_if_exists: 0 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.create_if_missing: 0 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.paranoid_checks: 1 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.env: 0x556737b5e120 2024-09-13T05:21:47.014 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.fs: PosixFileSystem 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.info_log: 0x556739cb1700 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_file_opening_threads: 16 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.statistics: (nil) 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.use_fsync: 0 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_log_file_size: 0 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.keep_log_file_num: 1000 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.recycle_log_file_num: 0 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.allow_fallocate: 1 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.allow_mmap_reads: 0 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.allow_mmap_writes: 0 2024-09-13T05:21:47.015 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.use_direct_reads: 0 2024-09-13T05:21:47.016 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-13T05:21:47.016 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.create_missing_column_families: 0 2024-09-13T05:21:47.016 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.db_log_dir: 2024-09-13T05:21:47.016 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.wal_dir: 2024-09-13T05:21:47.016 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-13T05:21:47.017 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-13T05:21:47.017 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-13T05:21:47.017 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.advise_random_on_open: 1 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.db_write_buffer_size: 0 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.write_buffer_manager: 0x556739cb5b80 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.rate_limiter: (nil) 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.wal_recovery_mode: 2 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.enable_thread_tracking: 0 2024-09-13T05:21:47.018 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.enable_pipelined_write: 0 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.unordered_write: 0 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.row_cache: None 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.wal_filter: None 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.allow_ingest_behind: 0 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.two_write_queues: 0 2024-09-13T05:21:47.019 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.manual_wal_flush: 0 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.wal_compression: 0 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.atomic_flush: 0 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.log_readahead_size: 0 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.best_efforts_recovery: 0 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.allow_data_in_errors: 0 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.db_host_id: __hostname__ 2024-09-13T05:21:47.020 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_background_jobs: 2 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_background_compactions: -1 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_subcompactions: 1 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_total_wal_size: 0 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_open_files: -1 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bytes_per_sync: 0 2024-09-13T05:21:47.021 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_readahead_size: 0 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_background_flushes: -1 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Compression algorithms supported: 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: kZSTD supported: 0 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: kXpressCompression supported: 0 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: kBZip2Compression supported: 0 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: kLZ4Compression supported: 1 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: kZlibCompression supported: 1 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: kLZ4HCCompression supported: 1 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: kSnappyCompression supported: 1 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-13T05:21:47.022 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.merge_operator: 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_filter: None 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_filter_factory: None 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.sst_partitioner_factory: None 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x556739cb1320) 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout: cache_index_and_filter_blocks: 1 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-13T05:21:47.023 INFO:journalctl@ceph.mon.a.smithi145.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: pin_top_level_index_and_filter: 1 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: index_type: 0 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: data_block_index_type: 0 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: index_shortening: 1 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: checksum: 4 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: no_block_cache: 0 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: block_cache: 0x556739ca5610 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: block_cache_name: BinnedLRUCache 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: block_cache_options: 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: capacity : 536870912 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: num_shard_bits : 4 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: strict_capacity_limit : 0 2024-09-13T05:21:47.024 INFO:journalctl@ceph.mon.a.smithi145.stdout: high_pri_pool_ratio: 0.000 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: block_cache_compressed: (nil) 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: persistent_cache: (nil) 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: block_size: 4096 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: block_size_deviation: 10 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: block_restart_interval: 16 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: index_block_restart_interval: 1 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: metadata_block_size: 4096 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: partition_filters: 0 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: use_delta_encoding: 1 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: filter_policy: bloomfilter 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: whole_key_filtering: 1 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: verify_compression: 0 2024-09-13T05:21:47.025 INFO:journalctl@ceph.mon.a.smithi145.stdout: read_amp_bytes_per_bit: 0 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout: format_version: 5 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout: enable_index_compression: 1 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout: block_align: 0 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout: max_auto_readahead_size: 262144 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout: prepopulate_block_cache: 0 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout: initial_auto_readahead_size: 8192 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout: num_file_reads_for_auto_readahead: 2 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.write_buffer_size: 33554432 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_write_buffer_number: 2 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression: NoCompression 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression: Disabled 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.prefix_extractor: nullptr 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.num_levels: 7 2024-09-13T05:21:47.026 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-13T05:21:47.027 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression_opts.level: 32767 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression_opts.strategy: 0 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression_opts.enabled: false 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.target_file_size_base: 67108864 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-13T05:21:47.028 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-13T05:21:47.029 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.arena_block_size: 1048576 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.disable_auto_compactions: 0 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-13T05:21:47.030 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.inplace_update_support: 0 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.bloom_locality: 0 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.max_successive_merges: 0 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.paranoid_file_checks: 0 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.force_consistency_checks: 1 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.report_bg_io_stats: 0 2024-09-13T05:21:47.031 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.ttl: 2592000 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.enable_blob_files: false 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.min_blob_size: 0 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.blob_file_size: 268435456 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.blob_file_starting_level: 0 2024-09-13T05:21:47.032 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/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-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 26cb447a-d59b-48ca-ad21-30b2e0d9d923 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726204906695579, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726204906696431, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85769, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 265, "table_properties": {"data_size": 83898, "index_size": 255, "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": 10175, "raw_average_key_size": 46, "raw_value_size": 77993, "raw_average_value_size": 354, "num_data_blocks": 12, "num_entries": 220, "num_filter_entries": 220, "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": 1726204906, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "26cb447a-d59b-48ca-ad21-30b2e0d9d923", "db_session_id": "VO1OM3GPQLLYFAXAJL3D", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726204906696522, "job": 1, "event": "recovery_finished"} 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x556739cd4e00 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: DB pointer 0x556739dd6000 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-13T05:21:47.033 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.stdout: ** DB Stats ** 2024-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.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-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.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-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.stdout: 2024-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.stdout: ** Compaction Stats [default] ** 2024-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.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-09-13T05:21:47.034 INFO:journalctl@ceph.mon.a.smithi145.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: L0 2/0 85.62 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 151.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: Sum 2/0 85.62 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 151.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.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 151.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: ** Compaction Stats [default] ** 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.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-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.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 151.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-13T05:21:47.035 INFO:journalctl@ceph.mon.a.smithi145.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout: Cumulative compaction: 0.00 GB write, 14.66 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout: Interval compaction: 0.00 GB write, 14.66 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.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-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout: Block cache BinnedLRUCache@0x556739ca5610#2 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.44 KB,8.34465e-05%) Misc(1,0.00 KB,0%) 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout: 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: starting mon.a rank 0 at public addrs [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] at bind addrs [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mon.a@-1(???) e1 preinit fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mon.a@-1(???).mds e1 new map 2024-09-13T05:21:47.036 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mon.a@-1(???).mds e1 print_map 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout: e1 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout: btime 2024-09-13T05:21:30:670229+0000 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.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-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout: legacy client fscid: -1 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout: 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout: No filesystems configured 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-13T05:21:47.037 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: monmap epoch 1 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: last_changed 2024-09-13T05:21:27.511396+0000 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: min_mon_release 19 (squid) 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: election_strategy: 1 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: fsmap 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: osdmap e1: 0 total, 0 up, 0 in 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 ceph-mon[29439]: mgrmap e1: no daemons active 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 bash[29420]: b0aea69ba126441a181f2e6ac7324e459ced03896ef72720aaa099aa37197876 2024-09-13T05:21:47.038 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:46 smithi145 systemd[1]: Started Ceph mon.a for e34a8208-718f-11ef-bceb-c7b262605968. 2024-09-13T05:21:47.767 INFO:teuthology.orchestra.run.smithi145.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-13T05:21:47.797 INFO:teuthology.orchestra.run.smithi145.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-13T05:21:47.797 INFO:teuthology.orchestra.run.smithi145.stdout:Creating mgr... 2024-09-13T05:21:47.797 INFO:teuthology.orchestra.run.smithi145.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-13T05:21:47.798 INFO:teuthology.orchestra.run.smithi145.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-13T05:21:48.046 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.a 2024-09-13T05:21:48.046 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Failed to reset failed state of unit ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-13T05:21:48.189 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-e34a8208-718f-11ef-bceb-c7b262605968.target.wants/ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-e34a8208-718f-11ef-bceb-c7b262605968@.service. 2024-09-13T05:21:48.430 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:48 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/1155878265' entity='client.admin' 2024-09-13T05:21:48.762 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:21:48 smithi145 podman[29650]: 2024-09-13 05:21:48.432527642 +0000 UTC m=+0.117226074 container create a34ec1fe17d83afb57a66ee30d03abdd49b9e9757a94f5d30533c11bd56d0215 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb) 2024-09-13T05:21:49.856 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-13T05:21:49.856 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout disabled 2024-09-13T05:21:49.863 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-13T05:21:49.863 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout inactive 2024-09-13T05:21:49.863 INFO:teuthology.orchestra.run.smithi145.stdout:firewalld.service is not enabled 2024-09-13T05:21:49.863 INFO:teuthology.orchestra.run.smithi145.stdout:Not possible to enable service . firewalld.service is not available 2024-09-13T05:21:49.872 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-13T05:21:49.872 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout disabled 2024-09-13T05:21:49.879 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-13T05:21:49.880 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout inactive 2024-09-13T05:21:49.880 INFO:teuthology.orchestra.run.smithi145.stdout:firewalld.service is not enabled 2024-09-13T05:21:49.880 INFO:teuthology.orchestra.run.smithi145.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-13T05:21:49.880 INFO:teuthology.orchestra.run.smithi145.stdout:Waiting for mgr to start... 2024-09-13T05:21:49.880 INFO:teuthology.orchestra.run.smithi145.stdout:Waiting for mgr... 2024-09-13T05:21:50.004 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:21:49 smithi145 podman[29650]: 2024-09-13 05:21:49.731417111 +0000 UTC m=+1.416115542 container init a34ec1fe17d83afb57a66ee30d03abdd49b9e9757a94f5d30533c11bd56d0215 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, CEPH_POINT_RELEASE=) 2024-09-13T05:21:50.004 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:21:49 smithi145 podman[29650]: 2024-09-13 05:21:49.735011062 +0000 UTC m=+1.419709496 container start a34ec1fe17d83afb57a66ee30d03abdd49b9e9757a94f5d30533c11bd56d0215 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb) 2024-09-13T05:21:50.004 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:21:49 smithi145 bash[29650]: a34ec1fe17d83afb57a66ee30d03abdd49b9e9757a94f5d30533c11bd56d0215 2024-09-13T05:21:50.004 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:21:49 smithi145 systemd[1]: Started Ceph mgr.a for e34a8208-718f-11ef-bceb-c7b262605968. 2024-09-13T05:21:50.598 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:50 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/1374462891' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-13T05:21:50.962 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:50.962 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout { 2024-09-13T05:21:50.962 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "fsid": "e34a8208-718f-11ef-bceb-c7b262605968", 2024-09-13T05:21:50.962 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "health": { 2024-09-13T05:21:50.962 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-13T05:21:50.962 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-13T05:21:50.962 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 0 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ], 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "a" 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ], 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-13T05:21:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-13T05:21:50.964 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:50.964 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-13T05:21:50.964 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:50.964 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-13T05:21:50.964 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-13T05:21:50.964 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-13T05:21:50.964 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-13T05:21:50.964 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-13T05:21:50.964 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-13T05:21:50.968 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "btime": "2024-09-13T05:21:30:670229+0000", 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "restful" 2024-09-13T05:21:50.969 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ], 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "modified": "2024-09-13T05:21:30.670893+0000", 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout } 2024-09-13T05:21:50.970 INFO:teuthology.orchestra.run.smithi145.stdout:mgr not available, waiting (1/15)... 2024-09-13T05:21:53.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:53 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/939228993' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-13T05:21:54.467 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout { 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "fsid": "e34a8208-718f-11ef-bceb-c7b262605968", 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "health": { 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 0 2024-09-13T05:21:54.468 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ], 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "a" 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ], 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-13T05:21:54.469 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-13T05:21:54.470 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-13T05:21:54.470 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-13T05:21:54.470 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-13T05:21:54.473 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:54.473 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-13T05:21:54.473 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-13T05:21:54.473 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-13T05:21:54.473 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-13T05:21:54.473 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-13T05:21:54.473 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-13T05:21:54.473 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-13T05:21:54.473 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "btime": "2024-09-13T05:21:30:670229+0000", 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-13T05:21:54.474 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "restful" 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ], 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "modified": "2024-09-13T05:21:30.670893+0000", 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout } 2024-09-13T05:21:54.475 INFO:teuthology.orchestra.run.smithi145.stdout:mgr not available, waiting (2/15)... 2024-09-13T05:21:55.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: Activating manager daemon a 2024-09-13T05:21:55.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: mgrmap e2: a(active, starting, since 0.0029925s) 2024-09-13T05:21:55.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-13T05:21:55.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-13T05:21:55.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-13T05:21:55.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T05:21:55.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-13T05:21:55.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: Manager daemon a is now available 2024-09-13T05:21:55.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-13T05:21:55.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-13T05:21:55.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' 2024-09-13T05:21:55.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' 2024-09-13T05:21:55.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:54 smithi145 ceph-mon[29439]: from='mgr.14100 172.21.15.145:0/494121260' entity='mgr.a' 2024-09-13T05:21:56.873 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:56 smithi145 ceph-mon[29439]: mgrmap e3: a(active, since 1.00705s) 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout { 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "fsid": "e34a8208-718f-11ef-bceb-c7b262605968", 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "health": { 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-13T05:21:57.744 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 0 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ], 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "a" 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ], 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-13T05:21:57.745 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-13T05:21:57.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-13T05:21:57.747 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:57.747 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-13T05:21:57.747 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:57.747 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "btime": "2024-09-13T05:21:30:670229+0000", 2024-09-13T05:21:57.747 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-13T05:21:57.747 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-13T05:21:57.747 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:57.747 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "restful" 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ], 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T05:21:57.748 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "modified": "2024-09-13T05:21:30.670893+0000", 2024-09-13T05:21:57.749 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T05:21:57.749 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout }, 2024-09-13T05:21:57.749 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-13T05:21:57.749 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout } 2024-09-13T05:21:57.749 INFO:teuthology.orchestra.run.smithi145.stdout:mgr is available 2024-09-13T05:21:57.864 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:57 smithi145 ceph-mon[29439]: mgrmap e4: a(active, since 2s) 2024-09-13T05:21:57.865 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:57 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/2393680030' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-13T05:21:58.925 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:58 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/693266339' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-13T05:21:58.926 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:58 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/693266339' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-13T05:21:58.930 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:58.930 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout [global] 2024-09-13T05:21:58.930 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout fsid = e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:21:58.930 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-13T05:21:58.930 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.145:3300,v1:172.21.15.145:6789] 2024-09-13T05:21:58.930 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-13T05:21:58.930 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-13T05:21:58.930 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-13T05:21:58.930 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-13T05:21:58.931 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:58.931 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-13T05:21:58.931 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-13T05:21:58.931 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 2024-09-13T05:21:58.931 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout [osd] 2024-09-13T05:21:58.931 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-13T05:21:58.931 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-13T05:21:58.931 INFO:teuthology.orchestra.run.smithi145.stdout:Enabling cephadm module... 2024-09-13T05:22:00.198 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:21:59 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/2205533111' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-13T05:22:00.199 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:21:59 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: ignoring --setuser ceph since I am not root 2024-09-13T05:22:00.199 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:21:59 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: ignoring --setgroup ceph since I am not root 2024-09-13T05:22:01.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:00 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/2205533111' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-13T05:22:01.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:00 smithi145 ceph-mon[29439]: mgrmap e5: a(active, since 5s) 2024-09-13T05:22:01.767 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout { 2024-09-13T05:22:01.767 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-13T05:22:01.767 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-13T05:22:01.767 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-13T05:22:01.767 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-13T05:22:01.767 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout } 2024-09-13T05:22:01.767 INFO:teuthology.orchestra.run.smithi145.stdout:Waiting for the mgr to restart... 2024-09-13T05:22:01.767 INFO:teuthology.orchestra.run.smithi145.stdout:Waiting for mgr epoch 5... 2024-09-13T05:22:02.083 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:01 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/938847215' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-13T05:22:05.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: Active manager daemon a restarted 2024-09-13T05:22:05.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: Activating manager daemon a 2024-09-13T05:22:05.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: osdmap e2: 0 total, 0 up, 0 in 2024-09-13T05:22:05.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: mgrmap e6: a(active, starting, since 0.00336532s) 2024-09-13T05:22:05.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T05:22:05.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-13T05:22:05.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-13T05:22:05.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-13T05:22:05.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-13T05:22:05.263 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:04 smithi145 ceph-mon[29439]: Manager daemon a is now available 2024-09-13T05:22:06.429 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: 2024-09-13T05:22:06.337+0000 7fd2599d4640 -1 log_channel(cephadm) log [ERR] : [13/Sep/2024:05:22:06] ENGINE Error in HTTPServer.serve 2024-09-13T05:22:06.429 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: Traceback (most recent call last): 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: self._connections.run(self.expiration_interval) 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: self._run(expiration_interval) 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: s = self.context.wrap_socket( 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: return self.sslsocket_class._create( 2024-09-13T05:22:06.430 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T05:22:06.431 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: self.do_handshake() 2024-09-13T05:22:06.431 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T05:22:06.431 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: self._sslobj.do_handshake() 2024-09-13T05:22:06.431 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T05:22:06.431 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: 2024-09-13T05:22:06.432 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout { 2024-09-13T05:22:06.432 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-13T05:22:06.432 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-13T05:22:06.432 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout } 2024-09-13T05:22:06.432 INFO:teuthology.orchestra.run.smithi145.stdout:mgr epoch 5 is available 2024-09-13T05:22:06.432 INFO:teuthology.orchestra.run.smithi145.stdout:Verifying orchestrator module is enabled... 2024-09-13T05:22:06.739 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: Found migration_current of "None". Setting to last migration. 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-13T05:22:06.740 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-13T05:22:06.741 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: mgrmap e7: a(active, since 1.00809s) 2024-09-13T05:22:06.741 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-13T05:22:06.741 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:06 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:07.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:07 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:06] ENGINE Bus STARTING 2024-09-13T05:22:07.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:07 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:06] ENGINE Serving on http://172.21.15.145:8765 2024-09-13T05:22:07.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:07 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:06] ENGINE Serving on https://172.21.15.145:7150 2024-09-13T05:22:07.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:07 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:06] ENGINE Bus STARTED 2024-09-13T05:22:07.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:07 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:06] ENGINE Error in HTTPServer.serve 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: Traceback (most recent call last): 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: self._connections.run(self.expiration_interval) 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: self._run(expiration_interval) 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: s = self.context.wrap_socket( 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T05:22:07.763 INFO:journalctl@ceph.mon.a.smithi145.stdout: return self.sslsocket_class._create( 2024-09-13T05:22:07.764 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T05:22:07.764 INFO:journalctl@ceph.mon.a.smithi145.stdout: self.do_handshake() 2024-09-13T05:22:07.764 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T05:22:07.764 INFO:journalctl@ceph.mon.a.smithi145.stdout: self._sslobj.do_handshake() 2024-09-13T05:22:07.764 INFO:journalctl@ceph.mon.a.smithi145.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T05:22:07.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:07 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/3931986870' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-13T05:22:08.005 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2024-09-13T05:22:08.005 INFO:teuthology.orchestra.run.smithi145.stdout:Setting orchestrator backend to cephadm... 2024-09-13T05:22:08.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:08 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/3931986870' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-13T05:22:08.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:08 smithi145 ceph-mon[29439]: mgrmap e8: a(active, since 2s) 2024-09-13T05:22:09.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:09 smithi145 ceph-mon[29439]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:09.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:09 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:09.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:09 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:10.349 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-13T05:22:10.349 INFO:teuthology.orchestra.run.smithi145.stdout:Generating ssh key... 2024-09-13T05:22:10.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:10 smithi145 ceph-mon[29439]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:11.512 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: Generating public/private rsa key pair. 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: Your identification has been saved in /tmp/tmpf6m08lv2/key 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: Your public key has been saved in /tmp/tmpf6m08lv2/key.pub 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: The key fingerprint is: 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: SHA256:2ujY2MP0J56qXgw0o9WLcaT4d0e0BY63m3it9UcIoD0 ceph-e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: The key's randomart image is: 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: +---[RSA 3072]----+ 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: | . o.. | 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: | . + +.o | 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: | . B o .o=. | 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: | = * ..oE.. | 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: | . + o S o. . . | 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: | +.= o + . .| 2024-09-13T05:22:11.513 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: | o=.o + o . | 2024-09-13T05:22:11.514 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: | Bo oo.o . .| 2024-09-13T05:22:11.514 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: | .=.=+oo. .. | 2024-09-13T05:22:11.514 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:11 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: +----[SHA256]-----+ 2024-09-13T05:22:12.467 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:12 smithi145 ceph-mon[29439]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:12.467 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:12 smithi145 ceph-mon[29439]: Generating ssh key... 2024-09-13T05:22:12.467 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:12 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:12.467 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:12 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:12.746 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCZOdYwmX+/owQKyreslJdnFAkyNbolGmU5rB9U/aslNaBlk+dANbWOyml1haEorm9Dhrs83gmoIXnoEyAyJK758qKWfGnbVxPuFfHZKHLpR3XwR7F7wIPcwt2Fo3cTP/vPxoiGq4zBcY6dj24odAEzPzNs33oDoPXM0QyGLf0AKU7Nr7GIeiabYEDCwYB9B+4cDugLMBP8GMonR9Fzq1C8rPAbg4RcJzQPyZdnMUJVhq2clXX+9O1M2Sk+Yird55JT1ZSDCDmIsunvkEE2WBqXhy1Va+PC3nN4DuiNSZ5UH4nT0E0K4qQ4lNw8c3oSU5+iDKyWWAZuemIsaw6ddePipUVREFZlpafb9+3s7yohjf4GmYAo+a6RC1eXlnrG96D1cAFPcweUv/D079JmXcTDiLhJYr4qgLF5VJ+5W5nfmgPlIq2a/km/UpVlUYlftGnuCPs+5mHEt4x1K8QhUvcyJLFgW18C0rcdBW8edRxlZgYZivdGM6Jd/eHy6AoJx9E= ceph-e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:22:12.746 INFO:teuthology.orchestra.run.smithi145.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-13T05:22:12.746 INFO:teuthology.orchestra.run.smithi145.stdout:Adding key to root@localhost authorized_keys... 2024-09-13T05:22:12.751 INFO:teuthology.orchestra.run.smithi145.stdout:Adding host smithi145... 2024-09-13T05:22:13.447 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:13 smithi145 ceph-mon[29439]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:14.485 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:14 smithi145 ceph-mon[29439]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi145", "addr": "172.21.15.145", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:15.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:15 smithi145 ceph-mon[29439]: Deploying cephadm binary to smithi145 2024-09-13T05:22:16.996 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout Added host 'smithi145' with addr '172.21.15.145' 2024-09-13T05:22:16.997 INFO:teuthology.orchestra.run.smithi145.stdout:Deploying unmanaged mon service... 2024-09-13T05:22:17.629 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:17 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:17.630 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:17 smithi145 ceph-mon[29439]: Added host smithi145 2024-09-13T05:22:17.630 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:17 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:18.387 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-13T05:22:18.387 INFO:teuthology.orchestra.run.smithi145.stdout:Deploying unmanaged mgr service... 2024-09-13T05:22:18.687 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:18 smithi145 ceph-mon[29439]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:18.688 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:18 smithi145 ceph-mon[29439]: Saving service mon spec with placement count:5 2024-09-13T05:22:18.688 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:18 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:20.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:19 smithi145 ceph-mon[29439]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:20.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:19 smithi145 ceph-mon[29439]: Saving service mgr spec with placement count:2 2024-09-13T05:22:20.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:19 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:20.425 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-13T05:22:21.346 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:21 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:21.346 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:21 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:21.347 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:21 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/818667627' entity='client.admin' 2024-09-13T05:22:23.205 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:22 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:23.206 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:22 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:23.206 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:22 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi145", "name": "osd_memory_target"} : dispatch 2024-09-13T05:22:23.206 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:22 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' 2024-09-13T05:22:23.206 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:22 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi145", "caps": []} : dispatch 2024-09-13T05:22:23.206 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:22 smithi145 ceph-mon[29439]: from='mgr.14118 172.21.15.145:0/3309407483' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi145", "caps": []}]': finished 2024-09-13T05:22:23.206 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:22 smithi145 ceph-mon[29439]: Deploying daemon agent.smithi145 on smithi145 2024-09-13T05:22:23.206 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:22 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/631336732' entity='client.admin' 2024-09-13T05:22:23.500 INFO:teuthology.orchestra.run.smithi145.stdout:Enabling the dashboard module... 2024-09-13T05:22:24.587 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:24 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/1378694521' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-13T05:22:24.588 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:24 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: ignoring --setuser ceph since I am not root 2024-09-13T05:22:24.588 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:24 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: ignoring --setgroup ceph since I am not root 2024-09-13T05:22:25.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:25 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/1378694521' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-13T05:22:25.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:25 smithi145 ceph-mon[29439]: mgrmap e9: a(active, since 19s) 2024-09-13T05:22:26.065 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout { 2024-09-13T05:22:26.065 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-13T05:22:26.065 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-13T05:22:26.065 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-13T05:22:26.065 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-13T05:22:26.065 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout } 2024-09-13T05:22:26.065 INFO:teuthology.orchestra.run.smithi145.stdout:Waiting for the mgr to restart... 2024-09-13T05:22:26.065 INFO:teuthology.orchestra.run.smithi145.stdout:Waiting for mgr epoch 9... 2024-09-13T05:22:26.356 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:26 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/1719128157' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: Active manager daemon a restarted 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: Activating manager daemon a 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: osdmap e3: 0 total, 0 up, 0 in 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: mgrmap e10: a(active, starting, since 0.00318312s) 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-13T05:22:29.694 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:29 smithi145 ceph-mon[29439]: Manager daemon a is now available 2024-09-13T05:22:30.662 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:30.662 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:30.662 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-13T05:22:30.662 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-13T05:22:30.662 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:30] ENGINE Bus STARTING 2024-09-13T05:22:30.662 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-mon[29439]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-13T05:22:30.662 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-mon[29439]: mgrmap e11: a(active, since 1.0058s) 2024-09-13T05:22:30.662 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: 2024-09-13T05:22:30.520+0000 7f5380115640 -1 log_channel(cephadm) log [ERR] : [13/Sep/2024:05:22:30] ENGINE Error in HTTPServer.serve 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: Traceback (most recent call last): 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: self._connections.run(self.expiration_interval) 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: self._run(expiration_interval) 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: s = self.context.wrap_socket( 2024-09-13T05:22:30.663 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T05:22:30.664 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: return self.sslsocket_class._create( 2024-09-13T05:22:30.664 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T05:22:30.664 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: self.do_handshake() 2024-09-13T05:22:30.664 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T05:22:30.664 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: self._sslobj.do_handshake() 2024-09-13T05:22:30.664 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T05:22:30.664 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:22:30 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: 2024-09-13T05:22:30.931 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout { 2024-09-13T05:22:30.932 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-13T05:22:30.932 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-13T05:22:30.932 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout } 2024-09-13T05:22:30.932 INFO:teuthology.orchestra.run.smithi145.stdout:mgr epoch 9 is available 2024-09-13T05:22:30.932 INFO:teuthology.orchestra.run.smithi145.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-13T05:22:31.889 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:31 smithi145 ceph-mon[29439]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-13T05:22:31.890 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:31 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:30] ENGINE Serving on http://172.21.15.145:8765 2024-09-13T05:22:31.890 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:31 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:30] ENGINE Serving on https://172.21.15.145:7150 2024-09-13T05:22:31.890 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:31 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:30] ENGINE Bus STARTED 2024-09-13T05:22:31.890 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:31 smithi145 ceph-mon[29439]: [13/Sep/2024:05:22:30] ENGINE Error in HTTPServer.serve 2024-09-13T05:22:31.890 INFO:journalctl@ceph.mon.a.smithi145.stdout: Traceback (most recent call last): 2024-09-13T05:22:31.890 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T05:22:31.890 INFO:journalctl@ceph.mon.a.smithi145.stdout: self._connections.run(self.expiration_interval) 2024-09-13T05:22:31.890 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T05:22:31.891 INFO:journalctl@ceph.mon.a.smithi145.stdout: self._run(expiration_interval) 2024-09-13T05:22:31.891 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T05:22:31.891 INFO:journalctl@ceph.mon.a.smithi145.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T05:22:31.891 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T05:22:31.891 INFO:journalctl@ceph.mon.a.smithi145.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T05:22:31.891 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T05:22:31.891 INFO:journalctl@ceph.mon.a.smithi145.stdout: s = self.context.wrap_socket( 2024-09-13T05:22:31.891 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T05:22:31.891 INFO:journalctl@ceph.mon.a.smithi145.stdout: return self.sslsocket_class._create( 2024-09-13T05:22:31.892 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T05:22:31.892 INFO:journalctl@ceph.mon.a.smithi145.stdout: self.do_handshake() 2024-09-13T05:22:31.892 INFO:journalctl@ceph.mon.a.smithi145.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T05:22:31.892 INFO:journalctl@ceph.mon.a.smithi145.stdout: self._sslobj.do_handshake() 2024-09-13T05:22:31.892 INFO:journalctl@ceph.mon.a.smithi145.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T05:22:32.556 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE/DCCAuSgAwIBAgIUdkQRAlmzqsaENwTUtlCNz8cpzHowDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkxMzA1MjIzMVoXDTM0\nMDkxNDA1MjIzMVowGDEWMBQGA1UEAwwNMTcyLjIxLjE1LjE0NTCCAiIwDQYJKoZI\nhvcNAQEBBQADggIPADCCAgoCggIBAKVq01cqa1kf+sTpndfIWIJuz/3z/K5dpyGv\nfFqkLiimG4Iq42RyDxnxXbs7KfzGwBLb0mCLZswDQ3dM6RaOMQtE1zOSr3l7vcYy\nz3y0LNMGaLxrGa9w9+2pWi4uDeqz05IrdoZ6GidZP5BWcxf3JBUu+HNU0HqPISCE\nRoxQ+Qht9vOO+cuyP1grM0ZwmvKADjqocdyIRNeHlWNxgERwY82FhYw7FTF7nsqR\n//iImLPThH2rmIjm9a/yKd7Kh6uin7d9Otzulum2wk6V+Qf5vrUaYSiuiDAsmGD8\nvJKGrJJPURnecSmNQ06lC1Otm+HRCKWcTib6zYdnjf/trSFvcnqjzLv2RenhqPlS\nnx/9EF4G91fdQdes9pm/SWMha4HE9OhlfkahiS5eZp/QnH06dswLTUpypslBdBLU\nign8jPLcd8pGHD/IsSNpZalAlyFgRcF02aG/ryMkAZiH6Nq+YMUTiUF1CqboCVRm\n08tdWMB5vT2CL8mmpdd+IH04R9Azs7DRVmeGnomtvERFM2z7IAjREfPPlu4wF/jx\nQQvAmCHySQzTOwsz5xWe1FstvDXyNFV2BYZHpurry5mDBeB8SSFddf4dJtQLarj8\nFBwaGcNclLyCTkktVdtSw6aFiZFzhre8qslOjUflKP71qa9LjUxiZaBAFDD4Z074\ndCI1ehnRAgMBAAGjPzA9MC0GA1UdEQQmMCSCCXNtaXRoaTE0NYIRZGFzaGJvYXJk\nX3NlcnZlcnOHBKwVD5EwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEA\n0nd2bFiimQCseTaW+iUoLMPDT0PkHGlxDQHqRgEFK+0vcXwJobex/hgOLeA48Hbl\nDyAj194+iVLA27mQFGUm7UCmwdV2bh4oFcMd+noWlxA2c93LmSdNDRo/6qbNN2c/\naz+2XwWgOYrXr3i0/VCxm6EAZIsZzERgDnW5WzGahGVfKdyeq+9mb8+obAp1+06N\nmFf/fh+dwmRkxbRLnnQmFP3UHkFvLhrbmsNU8TxZP+/CO5zGNtB31ZGZDzfAvaIQ\nAqbw8V3hq8XkgNrHS59TuXspzRg/uu3XYFzJqxnV1GJDSQVlZqwbHfOaJrogkuRe\nfGA8XW2B862sSS0TkKUkcWnbZIJPpY7bTeM20XbzpJ8NexL5hCTtyY7o7Ny4vG8q\nI35YQqBghms/BkSCaZt+1MYgDRWrkgv2NvxPbxC5jHAKpF2+DHSUHu9cbFp2Bb9C\nEgw4MutMfwLkvoQLvgAa+pbAjKo0aFFBT/T6sz+RZ0VaccSW1EtcngmzJdScuQEk\n86+w0DqoaGITRpprEzK7rVSfQRWGeUqNkaJQKU7lP6niv0vdgbx9IsKI5cvqQsie\nk6pyV9u0wvrkdZy5lLxJJIOisDc1ogL7hBAN/sOeAorOJ0ZqyqyTlEgEda4XURkg\nJ9ZOcR6S8UqLQ3UC+/9JGP8srLtp2pal1q6slwk6QAQ=\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKQIBAAKCAgEApWrTVyprWR/6xOmd18hYgm7P/fP8rl2nIa98WqQuKKYbgirj\nZHIPGfFduzsp/MbAEtvSYItmzANDd0zpFo4xC0TXM5KveXu9xjLPfLQs0wZovGsZ\nr3D37alaLi4N6rPTkit2hnoaJ1k/kFZzF/ckFS74c1TQeo8hIIRGjFD5CG328475\ny7I/WCszRnCa8oAOOqhx3IhE14eVY3GARHBjzYWFjDsVMXueypH/+IiYs9OEfauY\niOb1r/Ip3sqHq6Kft3063O6W6bbCTpX5B/m+tRphKK6IMCyYYPy8koaskk9RGd5x\nKY1DTqULU62b4dEIpZxOJvrNh2eN/+2tIW9yeqPMu/ZF6eGo+VKfH/0QXgb3V91B\n16z2mb9JYyFrgcT06GV+RqGJLl5mn9CcfTp2zAtNSnKmyUF0EtSKCfyM8tx3ykYc\nP8ixI2llqUCXIWBFwXTZob+vIyQBmIfo2r5gxROJQXUKpugJVGbTy11YwHm9PYIv\nyaal134gfThH0DOzsNFWZ4aeia28REUzbPsgCNER88+W7jAX+PFBC8CYIfJJDNM7\nCzPnFZ7UWy28NfI0VXYFhkem6uvLmYMF4HxJIV11/h0m1AtquPwUHBoZw1yUvIJO\nSS1V21LDpoWJkXOGt7yqyU6NR+Uo/vWpr0uNTGJloEAUMPhnTvh0IjV6GdECAwEA\nAQKCAgAOoqDT9pd0lVcgLqy1056cHK6HkRuXOEdCHFb/5ISGeWrX5ZBEmfBS2udw\nejO07wc9q+gFPXQxAu1oS9xYD+jQLs0s/ZKLqKpx05tGtOC943RnDkFBo9i1tOz7\nBr1ZuYMTrMeB7qHrfxKYBEQO1+GAA82804FWBJ2ZVUayIbRk3ejSZAEfF/RRilHx\nLqOQ5spLf42CZeaUXKU3nQpMk9aKr6BxF6WggQfbs5buf/RlvaY8Ya8fVrLgWChC\n80+VXJAtwXVQqIXe4/n1TsDPpzWrq4uy2B1JyNpLA3VyL9rrH3wlEiiYNOzCc6kI\nxGSVMkPF9ko2WeyPCTcXsIlHuubphTFrWOBw033M2XNIMH3WrxB6fXgdg0fonXR3\n0mVuxKD9f1vr+tdzEPMitwZzkHbnC9FkhNsJimppLJkrmzlAYjPj9EVzVcHR2X8T\nKdRYR/CDocE9qPZWoMI+4t1AyX+6PQpa/GWYdrxUghxQN4NY4QTvzFjSyixKTaTq\nsWEht5Wu6gFATV874HTLOnpDpV2pqLmUFgFv+MDPBd14py1PjTV4XefSIqJESsbI\nJFQlRO0z7HIiAz4iiVOh8W6V+p1vk1D2C/jB6clVkzUyr5sdJz5gt9KOeY+tL17A\n9YjFTq0wrFzjcR3Rb/nid3aUBApheSfyB5cv7ws3rvkuc0zoGQKCAQEA0v0jYdns\nuNfLMB1Wk7hJHQHQvMVNZgJjAtsD2iqsp7OXcrCrPdwDMvBWcoIk5TsDv9Vldwd/\nV10EY3eXioBaoHJapTZURev5VeyPJThtLVXYOzJ9JZPQITvfIQjittc8YiG8iFxU\niS6+m5W41328lpKOlpTy61zwDDOytmN/CT00X0d6GUNpIfnx0dfJWappL0YCOZ6Y\nfNuKaPliY+7dZfi8O/25CYy8hCg4Zv6zybPrJNZ9tkCx1EMnr50di95Bxi/o0crI\njVfqzM3Y+mdWrVhAaBEeHlOkhZdenVL76ook8nw5XCT5Bjn+YS3kYgrQrHL6A6n9\n5ZqO4yEpyb9FSQKCAQEAyLTcebK8f7GdQAKYOLSsds7VTYazdoNILQnQK87g+hmg\nAZdvqGvskEaf5SPqi7/kAu6dxijELJf11UAci3PziKYGnYqYjHtfmvqrqHq9b5eX\nOemSJBT+6Uf45WuIRh6hTOtvA80StS1BwDwe7Pzgsca1HGWG27tSFPktR9YhJ2YX\nAH2tC4oUvm+jEAaPxhzXe0l/usHcHOLqdzGrHEIwVPhp6p1XLbI0dSCpwtCTuKi7\nK/14mAPtNdWvSSPm6EDgyGq9T7HmdZ/ScuaSNKZMoz+CwTyCZjciRmgpaJkAi/Yb\nQvPKUaOjYMmZNApwCkHaJB4S8vHW1VBXX1ev0myYSQKCAQEAqS6QW5tKZWGsLTWp\nQaRJBDh7b5LqID0Ttat3KE6FyaeJbk7Z0S2FZyguuX1AJouu0vlDdjGN27jblwLD\ngiyv/u4TX1z0MGkqssqQcfEQIoUucTFoBmTDRJLktXGRkbl/UtTof5NBugrAjrN8\n11acjUSRj496Rl5soewmhne72uW4BBqlfnJ+b98jF/fnHb42v9BsYlWYwq2sC8bF\nLYrQ/z53ecdWw6CVXYd+yp+7/KYHjK9teGHh9mmu/fOHSKt8pHWwQ+FN9YCk53q8\nXPXWHAOjCY+IThsV1oVtOcvb8tK5E7Omrwt6n5KLNtN8yV0QvOcpMRzzWVQY9WmX\nP43e+QKCAQEAkPgaHAkfIDjBdV+qZaMSw0oIRdQawmp28pkY9NucIunpadzhOMyj\ndV6d1ZuIqWJ0Ji4GZgBCGle0qFCDjbK14CjTtG1MXIQsfTu8S5hERls/TwRHm6pS\nqVtkCwoNx2AOcAnKCPvSHG1RBbInQFQzVBVL8fPfYc0+r4l/zFh9YADccm1UVXZq\nH1dxd3zV0mo4toNTMCkgfPjmFCwbBPFGCcnYby8wrf/+5e8uz1lqqcGuWErgFSUY\n7H6o+nJlMbLS6dA3Z13/MUy8bGPgjQjlaDDSmBLFuWDvb92Cs1t4Sp/79vMyWp+Q\nvbM/5pf3b2E7WEUkuLg3zaIXSfWDOMFZiQKCAQAcNiErOHeg8GVnXRmZK8Ni2AwD\n1sMSSX5IVMjrX/cYTyoghffZS+xboCiVaWWPNPz0ykiHow9yRL6nDKOaAe5OTUAc\n2qy/BwxIX4VJpJXe6RWcS404i1WHgkgJiyzW4u+80pGRD17qNDXrWqKsdL0ehbNv\ny7SF/lh5uBjySb2g3rZpgaLlsB4z1aI7z5pJRFJ/kKWEnGxTifrnt34SrHGCoJOb\nkktK+NHKk19XBctl0SQz4yjm1uqkv5+QNJMA4WdNruYpLMtD0+nerxSk0Ndt5bfW\nTjxhpMmujzqFeSoIUMzwCRZulwASzuKbo/MXDVVrWuhFAjmeME+rOdpudtRz\n-----END RSA PRIVATE KEY-----\n"} 2024-09-13T05:22:32.873 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:32 smithi145 ceph-mon[29439]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:32.873 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:32 smithi145 ceph-mon[29439]: mgrmap e12: a(active, since 2s) 2024-09-13T05:22:32.873 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:32 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:32.873 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:32 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi145", "name": "osd_memory_target"} : dispatch 2024-09-13T05:22:32.873 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:32 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:32.873 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:32 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi145", "caps": []} : dispatch 2024-09-13T05:22:33.713 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-13T05:22:34.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:34 smithi145 ceph-mon[29439]: Deploying daemon agent.smithi145 on smithi145 2024-09-13T05:22:34.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:34 smithi145 ceph-mon[29439]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:34.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:34 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:34.960 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-13T05:22:34.960 INFO:teuthology.orchestra.run.smithi145.stdout:Creating initial admin user... 2024-09-13T05:22:35.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:35 smithi145 ceph-mon[29439]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:35.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:35 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:36.339 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:36 smithi145 ceph-mon[29439]: mgrmap e13: a(active, since 6s) 2024-09-13T05:22:36.340 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:36 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:36.342 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$zmJVMMseAMFqHf2G3IL2c.oOHge.8saGobTsPC3E6rFlWW26E9rhK", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726204955, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-13T05:22:36.342 INFO:teuthology.orchestra.run.smithi145.stdout:Fetching dashboard port number... 2024-09-13T05:22:37.496 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:37 smithi145 ceph-mon[29439]: from='client.14170 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:37.496 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:37 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/2518892248' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-13T05:22:37.498 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stdout 8443 2024-09-13T05:22:37.509 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-13T05:22:37.509 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout disabled 2024-09-13T05:22:37.516 INFO:teuthology.orchestra.run.smithi145.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-13T05:22:37.516 INFO:teuthology.orchestra.run.smithi145.stdout:systemctl: stdout inactive 2024-09-13T05:22:37.516 INFO:teuthology.orchestra.run.smithi145.stdout:firewalld.service is not enabled 2024-09-13T05:22:37.516 INFO:teuthology.orchestra.run.smithi145.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-13T05:22:37.518 INFO:teuthology.orchestra.run.smithi145.stdout:Ceph Dashboard is now available at: 2024-09-13T05:22:37.518 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:37.518 INFO:teuthology.orchestra.run.smithi145.stdout: URL: https://smithi145.front.sepia.ceph.com:8443/ 2024-09-13T05:22:37.519 INFO:teuthology.orchestra.run.smithi145.stdout: User: admin 2024-09-13T05:22:37.519 INFO:teuthology.orchestra.run.smithi145.stdout: Password: occjul2u7f 2024-09-13T05:22:37.519 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:37.519 INFO:teuthology.orchestra.run.smithi145.stdout:Saving cluster configuration to /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config directory 2024-09-13T05:22:38.780 INFO:teuthology.orchestra.run.smithi145.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid e34a8208-718f-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout:Or, if you are only running a single cluster on this host: 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:38.781 INFO:teuthology.orchestra.run.smithi145.stdout: ceph telemetry on 2024-09-13T05:22:38.782 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:38.782 INFO:teuthology.orchestra.run.smithi145.stdout:For more information see: 2024-09-13T05:22:38.782 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:38.782 INFO:teuthology.orchestra.run.smithi145.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-13T05:22:38.782 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:38.782 INFO:teuthology.orchestra.run.smithi145.stdout:Bootstrap complete. 2024-09-13T05:22:38.823 INFO:tasks.cephadm:Fetching config... 2024-09-13T05:22:38.823 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:22:38.823 DEBUG:teuthology.orchestra.run.smithi145:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-13T05:22:38.839 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-13T05:22:38.839 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:22:38.839 DEBUG:teuthology.orchestra.run.smithi145:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-13T05:22:38.894 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-13T05:22:38.894 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:22:38.894 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-13T05:22:39.033 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-13T05:22:39.033 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:22:39.033 DEBUG:teuthology.orchestra.run.smithi145:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-13T05:22:39.087 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-13T05:22:39.088 DEBUG:teuthology.orchestra.run.smithi145:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCZOdYwmX+/owQKyreslJdnFAkyNbolGmU5rB9U/aslNaBlk+dANbWOyml1haEorm9Dhrs83gmoIXnoEyAyJK758qKWfGnbVxPuFfHZKHLpR3XwR7F7wIPcwt2Fo3cTP/vPxoiGq4zBcY6dj24odAEzPzNs33oDoPXM0QyGLf0AKU7Nr7GIeiabYEDCwYB9B+4cDugLMBP8GMonR9Fzq1C8rPAbg4RcJzQPyZdnMUJVhq2clXX+9O1M2Sk+Yird55JT1ZSDCDmIsunvkEE2WBqXhy1Va+PC3nN4DuiNSZ5UH4nT0E0K4qQ4lNw8c3oSU5+iDKyWWAZuemIsaw6ddePipUVREFZlpafb9+3s7yohjf4GmYAo+a6RC1eXlnrG96D1cAFPcweUv/D079JmXcTDiLhJYr4qgLF5VJ+5W5nfmgPlIq2a/km/UpVlUYlftGnuCPs+5mHEt4x1K8QhUvcyJLFgW18C0rcdBW8edRxlZgYZivdGM6Jd/eHy6AoJx9E= ceph-e34a8208-718f-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-13T05:22:39.239 INFO:teuthology.orchestra.run.smithi145.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCZOdYwmX+/owQKyreslJdnFAkyNbolGmU5rB9U/aslNaBlk+dANbWOyml1haEorm9Dhrs83gmoIXnoEyAyJK758qKWfGnbVxPuFfHZKHLpR3XwR7F7wIPcwt2Fo3cTP/vPxoiGq4zBcY6dj24odAEzPzNs33oDoPXM0QyGLf0AKU7Nr7GIeiabYEDCwYB9B+4cDugLMBP8GMonR9Fzq1C8rPAbg4RcJzQPyZdnMUJVhq2clXX+9O1M2Sk+Yird55JT1ZSDCDmIsunvkEE2WBqXhy1Va+PC3nN4DuiNSZ5UH4nT0E0K4qQ4lNw8c3oSU5+iDKyWWAZuemIsaw6ddePipUVREFZlpafb9+3s7yohjf4GmYAo+a6RC1eXlnrG96D1cAFPcweUv/D079JmXcTDiLhJYr4qgLF5VJ+5W5nfmgPlIq2a/km/UpVlUYlftGnuCPs+5mHEt4x1K8QhUvcyJLFgW18C0rcdBW8edRxlZgYZivdGM6Jd/eHy6AoJx9E= ceph-e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:22:39.252 DEBUG:teuthology.orchestra.run.smithi151:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCZOdYwmX+/owQKyreslJdnFAkyNbolGmU5rB9U/aslNaBlk+dANbWOyml1haEorm9Dhrs83gmoIXnoEyAyJK758qKWfGnbVxPuFfHZKHLpR3XwR7F7wIPcwt2Fo3cTP/vPxoiGq4zBcY6dj24odAEzPzNs33oDoPXM0QyGLf0AKU7Nr7GIeiabYEDCwYB9B+4cDugLMBP8GMonR9Fzq1C8rPAbg4RcJzQPyZdnMUJVhq2clXX+9O1M2Sk+Yird55JT1ZSDCDmIsunvkEE2WBqXhy1Va+PC3nN4DuiNSZ5UH4nT0E0K4qQ4lNw8c3oSU5+iDKyWWAZuemIsaw6ddePipUVREFZlpafb9+3s7yohjf4GmYAo+a6RC1eXlnrG96D1cAFPcweUv/D079JmXcTDiLhJYr4qgLF5VJ+5W5nfmgPlIq2a/km/UpVlUYlftGnuCPs+5mHEt4x1K8QhUvcyJLFgW18C0rcdBW8edRxlZgYZivdGM6Jd/eHy6AoJx9E= ceph-e34a8208-718f-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-13T05:22:39.335 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:39 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/936657167' entity='client.admin' 2024-09-13T05:22:39.438 INFO:teuthology.orchestra.run.smithi151.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCZOdYwmX+/owQKyreslJdnFAkyNbolGmU5rB9U/aslNaBlk+dANbWOyml1haEorm9Dhrs83gmoIXnoEyAyJK758qKWfGnbVxPuFfHZKHLpR3XwR7F7wIPcwt2Fo3cTP/vPxoiGq4zBcY6dj24odAEzPzNs33oDoPXM0QyGLf0AKU7Nr7GIeiabYEDCwYB9B+4cDugLMBP8GMonR9Fzq1C8rPAbg4RcJzQPyZdnMUJVhq2clXX+9O1M2Sk+Yird55JT1ZSDCDmIsunvkEE2WBqXhy1Va+PC3nN4DuiNSZ5UH4nT0E0K4qQ4lNw8c3oSU5+iDKyWWAZuemIsaw6ddePipUVREFZlpafb9+3s7yohjf4GmYAo+a6RC1eXlnrG96D1cAFPcweUv/D079JmXcTDiLhJYr4qgLF5VJ+5W5nfmgPlIq2a/km/UpVlUYlftGnuCPs+5mHEt4x1K8QhUvcyJLFgW18C0rcdBW8edRxlZgYZivdGM6Jd/eHy6AoJx9E= ceph-e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:22:39.451 DEBUG:teuthology.orchestra.run.smithi153:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCZOdYwmX+/owQKyreslJdnFAkyNbolGmU5rB9U/aslNaBlk+dANbWOyml1haEorm9Dhrs83gmoIXnoEyAyJK758qKWfGnbVxPuFfHZKHLpR3XwR7F7wIPcwt2Fo3cTP/vPxoiGq4zBcY6dj24odAEzPzNs33oDoPXM0QyGLf0AKU7Nr7GIeiabYEDCwYB9B+4cDugLMBP8GMonR9Fzq1C8rPAbg4RcJzQPyZdnMUJVhq2clXX+9O1M2Sk+Yird55JT1ZSDCDmIsunvkEE2WBqXhy1Va+PC3nN4DuiNSZ5UH4nT0E0K4qQ4lNw8c3oSU5+iDKyWWAZuemIsaw6ddePipUVREFZlpafb9+3s7yohjf4GmYAo+a6RC1eXlnrG96D1cAFPcweUv/D079JmXcTDiLhJYr4qgLF5VJ+5W5nfmgPlIq2a/km/UpVlUYlftGnuCPs+5mHEt4x1K8QhUvcyJLFgW18C0rcdBW8edRxlZgYZivdGM6Jd/eHy6AoJx9E= ceph-e34a8208-718f-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-13T05:22:39.561 INFO:teuthology.orchestra.run.smithi153.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCZOdYwmX+/owQKyreslJdnFAkyNbolGmU5rB9U/aslNaBlk+dANbWOyml1haEorm9Dhrs83gmoIXnoEyAyJK758qKWfGnbVxPuFfHZKHLpR3XwR7F7wIPcwt2Fo3cTP/vPxoiGq4zBcY6dj24odAEzPzNs33oDoPXM0QyGLf0AKU7Nr7GIeiabYEDCwYB9B+4cDugLMBP8GMonR9Fzq1C8rPAbg4RcJzQPyZdnMUJVhq2clXX+9O1M2Sk+Yird55JT1ZSDCDmIsunvkEE2WBqXhy1Va+PC3nN4DuiNSZ5UH4nT0E0K4qQ4lNw8c3oSU5+iDKyWWAZuemIsaw6ddePipUVREFZlpafb9+3s7yohjf4GmYAo+a6RC1eXlnrG96D1cAFPcweUv/D079JmXcTDiLhJYr4qgLF5VJ+5W5nfmgPlIq2a/km/UpVlUYlftGnuCPs+5mHEt4x1K8QhUvcyJLFgW18C0rcdBW8edRxlZgYZivdGM6Jd/eHy6AoJx9E= ceph-e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:22:39.575 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-13T05:22:39.936 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T05:22:41.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:41.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/562260374' entity='client.admin' 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:41.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:40 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:41.446 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-13T05:22:41.446 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-13T05:22:43.227 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T05:22:44.880 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi151 2024-09-13T05:22:44.880 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:22:44.880 DEBUG:teuthology.orchestra.run.smithi151:> dd of=/etc/ceph/ceph.conf 2024-09-13T05:22:44.899 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:22:44.900 DEBUG:teuthology.orchestra.run.smithi151:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T05:22:44.958 INFO:tasks.cephadm:Adding host smithi151 to orchestrator... 2024-09-13T05:22:44.958 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph orch host add smithi151 2024-09-13T05:22:45.217 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T05:22:45.337 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:45.338 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:45.338 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:45.338 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:22:45.338 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:22:45.338 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-13T05:22:45.339 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: Updating smithi145:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:22:45.339 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:45.339 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:45.339 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:45.339 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:45.339 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:45 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:46.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:46 smithi145 ceph-mon[29439]: Updating smithi145:/etc/ceph/ceph.client.admin.keyring 2024-09-13T05:22:46.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:46 smithi145 ceph-mon[29439]: Updating smithi145:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T05:22:46.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:46 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:46.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:46 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:46.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:46 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:47.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:47 smithi145 ceph-mon[29439]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi151", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:48.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:48 smithi145 ceph-mon[29439]: Deploying cephadm binary to smithi151 2024-09-13T05:22:48.850 INFO:teuthology.orchestra.run.smithi145.stdout:Added host 'smithi151' with addr '172.21.15.151' 2024-09-13T05:22:49.546 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-13T05:22:49.794 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T05:22:50.146 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:50.146 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: Added host smithi151 2024-09-13T05:22:50.146 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:50.146 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:50.146 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:22:50.146 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:50.146 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:50.146 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi151", "name": "osd_memory_target"} : dispatch 2024-09-13T05:22:50.146 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:22:50.147 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:49 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:22:50.423 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:50.423 INFO:teuthology.orchestra.run.smithi145.stdout:[{"addr": "172.21.15.145", "hostname": "smithi145", "labels": [], "status": ""}, {"addr": "172.21.15.151", "hostname": "smithi151", "labels": [], "status": ""}] 2024-09-13T05:22:51.010 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:50 smithi145 ceph-mon[29439]: Updating smithi151:/etc/ceph/ceph.conf 2024-09-13T05:22:51.010 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:50 smithi145 ceph-mon[29439]: Updating smithi151:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:22:51.010 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:50 smithi145 ceph-mon[29439]: Updating smithi151:/etc/ceph/ceph.client.admin.keyring 2024-09-13T05:22:51.010 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:50 smithi145 ceph-mon[29439]: Updating smithi151:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T05:22:51.010 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:50 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:51.010 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:50 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:51.010 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:50 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi151", "caps": []} : dispatch 2024-09-13T05:22:51.010 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:50 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi151", "caps": []}]': finished 2024-09-13T05:22:51.036 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi153 2024-09-13T05:22:51.036 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:22:51.036 DEBUG:teuthology.orchestra.run.smithi153:> dd of=/etc/ceph/ceph.conf 2024-09-13T05:22:51.055 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:22:51.056 DEBUG:teuthology.orchestra.run.smithi153:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T05:22:51.114 INFO:tasks.cephadm:Adding host smithi153 to orchestrator... 2024-09-13T05:22:51.114 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph orch host add smithi153 2024-09-13T05:22:51.358 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T05:22:52.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:51 smithi145 ceph-mon[29439]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T05:22:52.262 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:51 smithi145 ceph-mon[29439]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:22:53.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: Deploying daemon agent.smithi151 on smithi151 2024-09-13T05:22:53.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi153", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:53.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:53.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:53 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:54.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:54 smithi145 ceph-mon[29439]: Deploying cephadm binary to smithi153 2024-09-13T05:22:54.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:54 smithi145 ceph-mon[29439]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:22:55.148 INFO:teuthology.orchestra.run.smithi145.stdout:Added host 'smithi153' with addr '172.21.15.153' 2024-09-13T05:22:55.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:55 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:55.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:55 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:55.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:55 smithi145 ceph-mon[29439]: Added host smithi153 2024-09-13T05:22:55.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:55 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:55.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:55 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:55.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:55 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:55.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:55 smithi145 ceph-mon[29439]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:22:55.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:55 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:55.827 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-13T05:22:56.069 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T05:22:56.694 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-13T05:22:56.694 INFO:teuthology.orchestra.run.smithi145.stdout:[{"addr": "172.21.15.145", "hostname": "smithi145", "labels": [], "status": ""}, {"addr": "172.21.15.151", "hostname": "smithi151", "labels": [], "status": ""}, {"addr": "172.21.15.153", "hostname": "smithi153", "labels": [], "status": ""}] 2024-09-13T05:22:56.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:56.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:56.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi153", "name": "osd_memory_target"} : dispatch 2024-09-13T05:22:56.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:22:56.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:22:56.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: Updating smithi153:/etc/ceph/ceph.conf 2024-09-13T05:22:56.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: Updating smithi153:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:22:56.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: Updating smithi153:/etc/ceph/ceph.client.admin.keyring 2024-09-13T05:22:56.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: Updating smithi153:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T05:22:56.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:56.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:56.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi153", "caps": []} : dispatch 2024-09-13T05:22:56.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:56 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi153", "caps": []}]': finished 2024-09-13T05:22:57.268 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-13T05:22:57.268 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-13T05:22:57.515 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T05:22:58.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: Deploying daemon agent.smithi153 on smithi153 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:22:58.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:58.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:58.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:58.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:22:58.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:58 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/1960057886' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-13T05:22:58.799 INFO:teuthology.orchestra.run.smithi145.stderr:adjusted tunables profile to default 2024-09-13T05:22:59.395 INFO:tasks.cephadm:Adding mon.a on smithi145 2024-09-13T05:22:59.396 INFO:tasks.cephadm:Adding mon.b on smithi151 2024-09-13T05:22:59.396 INFO:tasks.cephadm:Adding mon.c on smithi153 2024-09-13T05:22:59.396 DEBUG:teuthology.orchestra.run.smithi153:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi145:172.21.15.145=a;smithi151:172.21.15.151=b;smithi153:172.21.15.153=c' 2024-09-13T05:23:00.079 INFO:teuthology.orchestra.run.smithi153.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:00.097 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:59 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/1960057886' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-13T05:23:00.097 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:59 smithi145 ceph-mon[29439]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:00.097 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:59 smithi145 ceph-mon[29439]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:00.097 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:22:59 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:00.722 INFO:teuthology.orchestra.run.smithi153.stdout:Scheduled mon update... 2024-09-13T05:23:01.265 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:01 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:01.265 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:01 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:01.265 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:01 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:01.265 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:01 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:01.265 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:01 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:01.265 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:01 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:01.265 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:01 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:01.266 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:01 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:01.266 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:01 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:01.309 DEBUG:teuthology.orchestra.run.smithi151:mon.b> sudo journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.b.service 2024-09-13T05:23:01.313 DEBUG:teuthology.orchestra.run.smithi153:mon.c> sudo journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.c.service 2024-09-13T05:23:01.315 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T05:23:01.315 DEBUG:teuthology.orchestra.run.smithi153:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T05:23:02.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:02 smithi145 ceph-mon[29439]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi145:172.21.15.145=a;smithi151:172.21.15.151=b;smithi153:172.21.15.153=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:23:02.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:02 smithi145 ceph-mon[29439]: Saving service mon spec with placement smithi145:172.21.15.145=a;smithi151:172.21.15.151=b;smithi153:172.21.15.153=c;count:3 2024-09-13T05:23:02.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:02 smithi145 ceph-mon[29439]: Deploying daemon mon.c on smithi153 2024-09-13T05:23:02.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:02 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:02.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:02 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:02.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:02 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:02.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:02 smithi145 ceph-mon[29439]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:02.803 INFO:teuthology.orchestra.run.smithi153.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:03.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:03 smithi145 ceph-mon[29439]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:04.053 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:23:04.053 INFO:teuthology.orchestra.run.smithi153.stdout:{"epoch":1,"fsid":"e34a8208-718f-11ef-bceb-c7b262605968","modified":"2024-09-13T05:21:27.511396Z","created":"2024-09-13T05:21:27.511396Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:3300","nonce":0},{"type":"v1","addr":"172.21.15.145:6789","nonce":0}]},"addr":"172.21.15.145:6789/0","public_addr":"172.21.15.145:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-13T05:23:04.053 INFO:teuthology.orchestra.run.smithi153.stderr:dumped monmap epoch 1 2024-09-13T05:23:04.345 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:04 smithi153 systemd[1]: Starting Ceph mon.c for e34a8208-718f-11ef-bceb-c7b262605968... 2024-09-13T05:23:04.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:04 smithi145 ceph-mon[29439]: from='client.? 172.21.15.153:0/3486605043' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T05:23:04.849 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:04 smithi153 podman[31064]: 2024-09-13 05:23:04.779448158 +0000 UTC m=+0.102830628 container create 48e852179bb72000a5d4bc8c0258f1b159e44e7370ab3d7f2f5b909d3aa9a20f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-c, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, GIT_BRANCH=HEAD) 2024-09-13T05:23:04.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:04 smithi153 podman[31064]: 2024-09-13 05:23:04.69228599 +0000 UTC m=+0.015668474 image pull 0ce38589d192f00a67c8f9b0cb5ac7ff2f64a4d81462c062375b6ecefcaf776f quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff 2024-09-13T05:23:05.350 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 podman[31064]: 2024-09-13 05:23:05.006539699 +0000 UTC m=+0.329922170 container init 48e852179bb72000a5d4bc8c0258f1b159e44e7370ab3d7f2f5b909d3aa9a20f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-c, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, ceph=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=) 2024-09-13T05:23:05.350 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 podman[31064]: 2024-09-13 05:23:05.009610415 +0000 UTC m=+0.332992892 container start 48e852179bb72000a5d4bc8c0258f1b159e44e7370ab3d7f2f5b909d3aa9a20f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-c, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2) 2024-09-13T05:23:05.350 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: set uid:gid to 167:167 (ceph:ceph) 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: ceph version 19.3.0-4911-g9d608eb1 (9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3) squid (dev), process ceph-mon, pid 2 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: pidfile_write: ignore empty --pid-file 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: load: jerasure load: lrc 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: RocksDB version: 7.9.2 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Git sha 0 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Compile date 2024-09-12 17:11:01 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: DB SUMMARY 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: DB Session ID: XUS5WBRAYRJLUOITCEZX 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: CURRENT file: CURRENT 2024-09-13T05:23:05.351 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: IDENTITY file: IDENTITY 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.error_if_exists: 0 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.create_if_missing: 0 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.paranoid_checks: 1 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.env: 0x55668a2f3120 2024-09-13T05:23:05.352 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.fs: PosixFileSystem 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.info_log: 0x55668c907700 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_file_opening_threads: 16 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.statistics: (nil) 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.use_fsync: 0 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_log_file_size: 0 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.keep_log_file_num: 1000 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.recycle_log_file_num: 0 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.allow_fallocate: 1 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.allow_mmap_reads: 0 2024-09-13T05:23:05.353 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.allow_mmap_writes: 0 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.use_direct_reads: 0 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.create_missing_column_families: 0 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.db_log_dir: 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.wal_dir: 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.advise_random_on_open: 1 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.db_write_buffer_size: 0 2024-09-13T05:23:05.354 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.write_buffer_manager: 0x55668c90bb80 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.rate_limiter: (nil) 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.wal_recovery_mode: 2 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.enable_thread_tracking: 0 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.enable_pipelined_write: 0 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.unordered_write: 0 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-13T05:23:05.355 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.row_cache: None 2024-09-13T05:23:05.356 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.wal_filter: None 2024-09-13T05:23:05.357 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-13T05:23:05.357 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.allow_ingest_behind: 0 2024-09-13T05:23:05.357 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.two_write_queues: 0 2024-09-13T05:23:05.357 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.manual_wal_flush: 0 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.wal_compression: 0 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.atomic_flush: 0 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.log_readahead_size: 0 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.best_efforts_recovery: 0 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.allow_data_in_errors: 0 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.db_host_id: __hostname__ 2024-09-13T05:23:05.358 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_background_jobs: 2 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_background_compactions: -1 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_subcompactions: 1 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_total_wal_size: 0 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_open_files: -1 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bytes_per_sync: 0 2024-09-13T05:23:05.359 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_readahead_size: 0 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_background_flushes: -1 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Compression algorithms supported: 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: kZSTD supported: 0 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: kXpressCompression supported: 0 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: kBZip2Compression supported: 0 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: kLZ4Compression supported: 1 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: kZlibCompression supported: 1 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: kLZ4HCCompression supported: 1 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: kSnappyCompression supported: 1 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-13T05:23:05.360 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.merge_operator: 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_filter: None 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_filter_factory: None 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.sst_partitioner_factory: None 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55668c907320) 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout: cache_index_and_filter_blocks: 1 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-13T05:23:05.361 INFO:journalctl@ceph.mon.c.smithi153.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: pin_top_level_index_and_filter: 1 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: index_type: 0 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: data_block_index_type: 0 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: index_shortening: 1 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: checksum: 4 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: no_block_cache: 0 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: block_cache: 0x55668c8fb610 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: block_cache_name: BinnedLRUCache 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: block_cache_options: 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: capacity : 536870912 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: num_shard_bits : 4 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: strict_capacity_limit : 0 2024-09-13T05:23:05.362 INFO:journalctl@ceph.mon.c.smithi153.stdout: high_pri_pool_ratio: 0.000 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: block_cache_compressed: (nil) 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: persistent_cache: (nil) 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: block_size: 4096 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: block_size_deviation: 10 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: block_restart_interval: 16 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: index_block_restart_interval: 1 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: metadata_block_size: 4096 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: partition_filters: 0 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: use_delta_encoding: 1 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: filter_policy: bloomfilter 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: whole_key_filtering: 1 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: verify_compression: 0 2024-09-13T05:23:05.363 INFO:journalctl@ceph.mon.c.smithi153.stdout: read_amp_bytes_per_bit: 0 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout: format_version: 5 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout: enable_index_compression: 1 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout: block_align: 0 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout: max_auto_readahead_size: 262144 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout: prepopulate_block_cache: 0 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout: initial_auto_readahead_size: 8192 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout: num_file_reads_for_auto_readahead: 2 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.write_buffer_size: 33554432 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_write_buffer_number: 2 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression: NoCompression 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression: Disabled 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.prefix_extractor: nullptr 2024-09-13T05:23:05.364 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.num_levels: 7 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-13T05:23:05.365 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression_opts.level: 32767 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression_opts.strategy: 0 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression_opts.enabled: false 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.target_file_size_base: 67108864 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-13T05:23:05.366 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.arena_block_size: 1048576 2024-09-13T05:23:05.367 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.disable_auto_compactions: 0 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-13T05:23:05.368 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.inplace_update_support: 0 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.bloom_locality: 0 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.max_successive_merges: 0 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.paranoid_file_checks: 0 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.force_consistency_checks: 1 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.report_bg_io_stats: 0 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.ttl: 2592000 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-13T05:23:05.369 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.enable_blob_files: false 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.min_blob_size: 0 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.blob_file_size: 268435456 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.blob_file_starting_level: 0 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-13T05:23:05.370 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 39ddd102-9d41-4b05-b2bf-55e26e179f9b 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726204985037549, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726204985038108, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "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": 1726204985, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "39ddd102-9d41-4b05-b2bf-55e26e179f9b", "db_session_id": "XUS5WBRAYRJLUOITCEZX", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726204985038264, "job": 1, "event": "recovery_finished"} 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-c/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55668c92ae00 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: DB pointer 0x55668ca2c000 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout: ** DB Stats ** 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.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-09-13T05:23:05.371 INFO:journalctl@ceph.mon.c.smithi153.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.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-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: ** Compaction Stats [default] ** 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.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-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.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 2.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: 2024-09-13T05:23:05.372 INFO:journalctl@ceph.mon.c.smithi153.stdout: ** Compaction Stats [default] ** 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.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-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.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 2.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-13T05:23:05.373 INFO:journalctl@ceph.mon.c.smithi153.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-13T05:23:05.374 INFO:journalctl@ceph.mon.c.smithi153.stdout: Cumulative compaction: 0.00 GB write, 0.42 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T05:23:05.374 INFO:journalctl@ceph.mon.c.smithi153.stdout: Interval compaction: 0.00 GB write, 0.42 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T05:23:05.374 INFO:journalctl@ceph.mon.c.smithi153.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-09-13T05:23:05.374 INFO:journalctl@ceph.mon.c.smithi153.stdout: Block cache BinnedLRUCache@0x55668c8fb610#2 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-13T05:23:05.377 INFO:journalctl@ceph.mon.c.smithi153.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-13T05:23:05.377 INFO:journalctl@ceph.mon.c.smithi153.stdout: 2024-09-13T05:23:05.377 INFO:journalctl@ceph.mon.c.smithi153.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-13T05:23:05.377 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c does not exist in monmap, will attempt to join an existing cluster 2024-09-13T05:23:05.377 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: using public_addr v2:172.21.15.153:0/0 -> [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] 2024-09-13T05:23:05.377 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: starting mon.c rank -1 at public addrs [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] at bind addrs [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:05.377 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(???) e0 preinit fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:05.377 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).mds e1 new map 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).mds e1 print_map 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout: e1 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout: btime 2024-09-13T05:21:30:670229+0000 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.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-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout: legacy client fscid: -1 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout: 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout: No filesystems configured 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-13T05:23:05.378 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Deploying daemon agent.smithi151 on smithi151 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi153", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.379 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Deploying cephadm binary to smithi153 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:05.380 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Added host smithi153 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi153", "name": "osd_memory_target"} : dispatch 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:05.381 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Updating smithi153:/etc/ceph/ceph.conf 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Updating smithi153:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Updating smithi153:/etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Updating smithi153:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "client.agent.smithi153", "caps": []} : dispatch 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi153", "caps": []}]': finished 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Deploying daemon agent.smithi153 on smithi153 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.382 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='client.? 172.21.15.145:0/1960057886' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='client.? 172.21.15.145:0/1960057886' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-13T05:23:05.383 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi145:172.21.15.145=a;smithi151:172.21.15.151=b;smithi153:172.21.15.153=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:23:05.384 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Saving service mon spec with placement smithi145:172.21.15.145=a;smithi151:172.21.15.151=b;smithi153:172.21.15.153=c;count:3 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: Deploying daemon mon.c on smithi153 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: from='client.? 172.21.15.153:0/3486605043' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 ceph-mon[31083]: mon.c@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 bash[31064]: 48e852179bb72000a5d4bc8c0258f1b159e44e7370ab3d7f2f5b909d3aa9a20f 2024-09-13T05:23:05.385 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:05 smithi153 systemd[1]: Started Ceph mon.c for e34a8208-718f-11ef-bceb-c7b262605968. 2024-09-13T05:23:05.626 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T05:23:05.627 DEBUG:teuthology.orchestra.run.smithi153:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T05:23:05.878 INFO:teuthology.orchestra.run.smithi153.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T05:23:10.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T05:23:10.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: mon.a calling monitor election 2024-09-13T05:23:10.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:10.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: mon.c calling monitor election 2024-09-13T05:23:10.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:10.513 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: monmap epoch 2 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: last_changed 2024-09-13T05:23:05.065263+0000 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: min_mon_release 19 (squid) 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: election_strategy: 1 2024-09-13T05:23:10.514 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: 1: [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] mon.c 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: fsmap 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: mgrmap e13: a(active, since 40s) 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: overall HEALTH_OK 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:10.515 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:10 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:10.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T05:23:10.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: mon.a calling monitor election 2024-09-13T05:23:10.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:10.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: mon.c calling monitor election 2024-09-13T05:23:10.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:10.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: monmap epoch 2 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: last_changed 2024-09-13T05:23:05.065263+0000 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: min_mon_release 19 (squid) 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: election_strategy: 1 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: 1: [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] mon.c 2024-09-13T05:23:10.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: fsmap 2024-09-13T05:23:10.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:10.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: mgrmap e13: a(active, since 40s) 2024-09-13T05:23:10.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: overall HEALTH_OK 2024-09-13T05:23:10.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:10.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:10.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:10.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:10.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:10 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:10.929 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:23:10.929 INFO:teuthology.orchestra.run.smithi153.stdout:{"epoch":2,"fsid":"e34a8208-718f-11ef-bceb-c7b262605968","modified":"2024-09-13T05:23:05.065263Z","created":"2024-09-13T05:21:27.511396Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:3300","nonce":0},{"type":"v1","addr":"172.21.15.145:6789","nonce":0}]},"addr":"172.21.15.145:6789/0","public_addr":"172.21.15.145:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.153:3300","nonce":0},{"type":"v1","addr":"172.21.15.153:6789","nonce":0}]},"addr":"172.21.15.153:6789/0","public_addr":"172.21.15.153:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-13T05:23:10.930 INFO:teuthology.orchestra.run.smithi153.stderr:dumped monmap epoch 2 2024-09-13T05:23:11.220 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:11 smithi153 ceph-mon[31083]: Deploying daemon mon.b on smithi151 2024-09-13T05:23:11.221 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:11 smithi153 ceph-mon[31083]: from='client.? 172.21.15.153:0/2659717834' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T05:23:11.221 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:11 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:11.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:11 smithi145 ceph-mon[29439]: Deploying daemon mon.b on smithi151 2024-09-13T05:23:11.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:11 smithi145 ceph-mon[29439]: from='client.? 172.21.15.153:0/2659717834' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T05:23:11.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:11 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:12.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:12 smithi145 ceph-mon[29439]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:12.558 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T05:23:12.559 DEBUG:teuthology.orchestra.run.smithi153:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T05:23:12.587 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:12 smithi153 ceph-mon[31083]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:12.812 INFO:teuthology.orchestra.run.smithi153.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T05:23:13.507 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:23:13.507 INFO:teuthology.orchestra.run.smithi153.stdout:{"epoch":2,"fsid":"e34a8208-718f-11ef-bceb-c7b262605968","modified":"2024-09-13T05:23:05.065263Z","created":"2024-09-13T05:21:27.511396Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:3300","nonce":0},{"type":"v1","addr":"172.21.15.145:6789","nonce":0}]},"addr":"172.21.15.145:6789/0","public_addr":"172.21.15.145:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.153:3300","nonce":0},{"type":"v1","addr":"172.21.15.153:6789","nonce":0}]},"addr":"172.21.15.153:6789/0","public_addr":"172.21.15.153:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-13T05:23:13.508 INFO:teuthology.orchestra.run.smithi153.stderr:dumped monmap epoch 2 2024-09-13T05:23:13.508 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:13 smithi153 ceph-mon[31083]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:13.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:13 smithi145 ceph-mon[29439]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:14.614 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:14 smithi151 ceph-mon[30595]: mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-13T05:23:14.614 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:14 smithi151 bash[30564]: cff76cb2520cdcd61e3c664a9c3ffaad1fcd5b33cc36cfeb43a9f91e9477fdc3 2024-09-13T05:23:14.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:14 smithi145 ceph-mon[29439]: from='client.? 172.21.15.153:0/2677443184' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T05:23:14.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:14 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:14.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:14 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:14.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:14 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:14.849 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:14 smithi153 ceph-mon[31083]: from='client.? 172.21.15.153:0/2677443184' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T05:23:14.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:14 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:14.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:14 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:14.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:14 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:14.917 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:14 smithi151 systemd[1]: Started Ceph mon.b for e34a8208-718f-11ef-bceb-c7b262605968. 2024-09-13T05:23:15.047 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T05:23:15.047 DEBUG:teuthology.orchestra.run.smithi153:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T05:23:15.302 INFO:teuthology.orchestra.run.smithi153.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T05:23:19.836 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: mon.c calling monitor election 2024-09-13T05:23:19.836 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T05:23:19.836 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: mon.a calling monitor election 2024-09-13T05:23:19.836 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.836 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:19.836 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:19.836 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.836 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: monmap epoch 3 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: last_changed 2024-09-13T05:23:14.587392+0000 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: min_mon_release 19 (squid) 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: election_strategy: 1 2024-09-13T05:23:19.837 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: 1: [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] mon.c 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: 2: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: fsmap 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: mgrmap e13: a(active, since 50s) 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: mon.b (rank 2) addr [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] is down (out of quorum) 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:19.838 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:19 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:19.843 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: mon.c calling monitor election 2024-09-13T05:23:19.843 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T05:23:19.843 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: mon.a calling monitor election 2024-09-13T05:23:19.843 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.843 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: monmap epoch 3 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: last_changed 2024-09-13T05:23:14.587392+0000 2024-09-13T05:23:19.844 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: min_mon_release 19 (squid) 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: election_strategy: 1 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: 1: [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] mon.c 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: 2: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: fsmap 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: mgrmap e13: a(active, since 50s) 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: mon.b (rank 2) addr [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] is down (out of quorum) 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:19.845 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:19.846 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:19.846 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:19 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.441 INFO:teuthology.orchestra.run.smithi153.stdout: 2024-09-13T05:23:20.441 INFO:teuthology.orchestra.run.smithi153.stdout:{"epoch":3,"fsid":"e34a8208-718f-11ef-bceb-c7b262605968","modified":"2024-09-13T05:23:14.587392Z","created":"2024-09-13T05:21:27.511396Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:3300","nonce":0},{"type":"v1","addr":"172.21.15.145:6789","nonce":0}]},"addr":"172.21.15.145:6789/0","public_addr":"172.21.15.145:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.153:3300","nonce":0},{"type":"v1","addr":"172.21.15.153:6789","nonce":0}]},"addr":"172.21.15.153:6789/0","public_addr":"172.21.15.153:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:3300","nonce":0},{"type":"v1","addr":"172.21.15.151:6789","nonce":0}]},"addr":"172.21.15.151:6789/0","public_addr":"172.21.15.151:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-13T05:23:20.441 INFO:teuthology.orchestra.run.smithi153.stderr:dumped monmap epoch 3 2024-09-13T05:23:20.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: Updating smithi151:/etc/ceph/ceph.conf 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: Updating smithi153:/etc/ceph/ceph.conf 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: Updating smithi145:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: Updating smithi153:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: Updating smithi151:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: Reconfiguring mon.a (unknown last config time)... 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:20.764 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: Reconfiguring daemon mon.a on smithi145 2024-09-13T05:23:20.765 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.768 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.768 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.768 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='client.? 172.21.15.153:0/3833556599' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T05:23:20.768 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:20 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:20.907 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:20.907 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: Updating smithi151:/etc/ceph/ceph.conf 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: Updating smithi153:/etc/ceph/ceph.conf 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: Updating smithi145:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: Updating smithi153:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: Updating smithi151:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.908 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: Reconfiguring mon.a (unknown last config time)... 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: Reconfiguring daemon mon.a on smithi145 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='client.? 172.21.15.153:0/3833556599' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T05:23:20.909 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:20 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:21.209 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-13T05:23:21.210 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-13T05:23:21.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: mon.c calling monitor election 2024-09-13T05:23:21.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T05:23:21.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: mon.a calling monitor election 2024-09-13T05:23:21.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:21.839 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T05:23:21.839 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:21.839 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:21.839 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:21.839 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:21.839 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:21.839 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:21.839 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:21.839 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: monmap epoch 3 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: last_changed 2024-09-13T05:23:14.587392+0000 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: min_mon_release 19 (squid) 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: election_strategy: 1 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: 1: [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] mon.c 2024-09-13T05:23:21.840 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: 2: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: fsmap 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: mgrmap e13: a(active, since 50s) 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: mon.b (rank 2) addr [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] is down (out of quorum) 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:21.841 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Updating smithi151:/etc/ceph/ceph.conf 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Updating smithi153:/etc/ceph/ceph.conf 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Updating smithi145:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Updating smithi153:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Updating smithi151:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.842 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Reconfiguring mon.a (unknown last config time)... 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: Reconfiguring daemon mon.a on smithi145 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='client.? 172.21.15.153:0/3833556599' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T05:23:21.843 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:21 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:21.921 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T05:23:22.419 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: mon.b calling monitor election 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: mon.b calling monitor election 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: mon.c calling monitor election 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: mon.a calling monitor election 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: monmap epoch 3 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: last_changed 2024-09-13T05:23:14.587392+0000 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: min_mon_release 19 (squid) 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: election_strategy: 1 2024-09-13T05:23:22.420 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: 1: [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] mon.c 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: 2: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: fsmap 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: mgrmap e13: a(active, since 52s) 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: Cluster is now healthy 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: overall HEALTH_OK 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:22.421 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:22 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:22.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: mon.b calling monitor election 2024-09-13T05:23:22.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: mon.b calling monitor election 2024-09-13T05:23:22.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: mon.c calling monitor election 2024-09-13T05:23:22.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: mon.a calling monitor election 2024-09-13T05:23:22.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-13T05:23:22.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: monmap epoch 3 2024-09-13T05:23:22.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: last_changed 2024-09-13T05:23:14.587392+0000 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: min_mon_release 19 (squid) 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: election_strategy: 1 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: 1: [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] mon.c 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: 2: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: fsmap 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: mgrmap e13: a(active, since 52s) 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: Cluster is now healthy 2024-09-13T05:23:22.601 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: overall HEALTH_OK 2024-09-13T05:23:22.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:22.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:22.602 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:22 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:22.691 INFO:teuthology.orchestra.run.smithi145.stdout:# minimal ceph.conf for e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:22.691 INFO:teuthology.orchestra.run.smithi145.stdout:[global] 2024-09-13T05:23:22.691 INFO:teuthology.orchestra.run.smithi145.stdout: fsid = e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:22.691 INFO:teuthology.orchestra.run.smithi145.stdout: mon_host = [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] 2024-09-13T05:23:22.785 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: mon.b calling monitor election 2024-09-13T05:23:22.785 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: mon.b calling monitor election 2024-09-13T05:23:22.785 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: mon.c calling monitor election 2024-09-13T05:23:22.785 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: mon.a calling monitor election 2024-09-13T05:23:22.785 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-13T05:23:22.785 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: monmap epoch 3 2024-09-13T05:23:22.785 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: fsid e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:22.785 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: last_changed 2024-09-13T05:23:14.587392+0000 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: created 2024-09-13T05:21:27.511396+0000 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: min_mon_release 19 (squid) 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: election_strategy: 1 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: 0: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.a 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: 1: [v2:172.21.15.153:3300/0,v1:172.21.15.153:6789/0] mon.c 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: 2: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: fsmap 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: mgrmap e13: a(active, since 52s) 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: Cluster is now healthy 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: overall HEALTH_OK 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:22.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:22 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:23.449 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:23 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:23.449 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:23 smithi145 ceph-mon[29439]: from='client.? 172.21.15.145:0/3889138112' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:23.449 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:23 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:23.449 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:23 smithi145 ceph-mon[29439]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:23.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:23 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:23.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:23 smithi151 ceph-mon[30595]: from='client.? 172.21.15.145:0/3889138112' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:23.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:23 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:23.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:23 smithi151 ceph-mon[30595]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:23.745 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:23 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T05:23:23.745 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:23 smithi153 ceph-mon[31083]: from='client.? 172.21.15.145:0/3889138112' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:23.745 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:23 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:23.746 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:23 smithi153 ceph-mon[31083]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:23.838 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-13T05:23:23.838 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:23:23.838 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/ceph/ceph.conf 2024-09-13T05:23:23.865 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:23:23.866 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:23.930 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:23:23.930 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/ceph/ceph.conf 2024-09-13T05:23:23.968 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:23:23.968 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:24.033 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:23:24.033 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd of=/etc/ceph/ceph.conf 2024-09-13T05:23:24.062 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:23:24.063 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:24.128 INFO:tasks.cephadm:Adding mgr.a on smithi145 2024-09-13T05:23:24.128 INFO:tasks.cephadm:Adding mgr.b on smithi151 2024-09-13T05:23:24.128 DEBUG:teuthology.orchestra.run.smithi153:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi145=a;smithi151=b' 2024-09-13T05:23:24.409 INFO:teuthology.orchestra.run.smithi153.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T05:23:24.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: Reconfiguring mon.b (monmap changed)... 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: Reconfiguring daemon mon.b on smithi151 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:24 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.791 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.791 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: Reconfiguring mon.b (monmap changed)... 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: Reconfiguring daemon mon.b on smithi151 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.792 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:24 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.837 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.837 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.837 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: Reconfiguring mon.b (monmap changed)... 2024-09-13T05:23:24.837 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:24.837 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T05:23:24.837 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:24.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: Reconfiguring daemon mon.b on smithi151 2024-09-13T05:23:24.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:24.838 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:24 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:25.090 INFO:teuthology.orchestra.run.smithi153.stdout:Scheduled mgr update... 2024-09-13T05:23:25.849 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: Reconfiguring mon.c (monmap changed)... 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: Reconfiguring daemon mon.c on smithi153 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi145=a;smithi151=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: Saving service mgr spec with placement smithi145=a;smithi151=b;count:2 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:25.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:25 smithi153 ceph-mon[31083]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:26.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:26.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:26.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:26.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: Reconfiguring mon.c (monmap changed)... 2024-09-13T05:23:26.012 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:26.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T05:23:26.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:26.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: Reconfiguring daemon mon.c on smithi153 2024-09-13T05:23:26.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi145=a;smithi151=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:23:26.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: Saving service mgr spec with placement smithi145=a;smithi151=b;count:2 2024-09-13T05:23:26.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:26.013 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:25 smithi145 ceph-mon[29439]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:26.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:26.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:26.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:26.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: Reconfiguring mon.c (monmap changed)... 2024-09-13T05:23:26.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T05:23:26.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T05:23:26.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:26.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: Reconfiguring daemon mon.c on smithi153 2024-09-13T05:23:26.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi145=a;smithi151=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T05:23:26.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: Saving service mgr spec with placement smithi145=a;smithi151=b;count:2 2024-09-13T05:23:26.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:26.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:25 smithi151 ceph-mon[30595]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:26.542 DEBUG:teuthology.orchestra.run.smithi151:mgr.b> sudo journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.b.service 2024-09-13T05:23:26.545 DEBUG:tasks.cephadm:set 0 configs 2024-09-13T05:23:26.545 INFO:tasks.cephadm:Deploying OSDs... 2024-09-13T05:23:26.545 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-13T05:23:26.545 DEBUG:teuthology.orchestra.run.smithi145:> dd if=/scratch_devs of=/dev/stdout 2024-09-13T05:23:26.565 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-09-13T05:23:26.565 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_1 2024-09-13T05:23:26.624 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-13T05:23:26.624 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:26.625 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 979 Links: 1 2024-09-13T05:23:26.625 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:26.625 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:26.625 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-13 05:23:21.290473218 +0000 2024-09-13T05:23:26.625 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:26.625 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:26.625 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:26.625 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-13T05:23:26.691 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-13T05:23:26.691 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-13T05:23:26.691 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000350903 s, 1.5 MB/s 2024-09-13T05:23:26.692 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-13T05:23:26.751 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_2 2024-09-13T05:23:26.808 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-13T05:23:26.808 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:26.808 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 969 Links: 1 2024-09-13T05:23:26.809 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:26.809 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:26.809 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-13 05:23:21.291473197 +0000 2024-09-13T05:23:26.809 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:26.809 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:26.809 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:26.809 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-13T05:23:26.873 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-13T05:23:26.873 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-13T05:23:26.873 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.00028685 s, 1.8 MB/s 2024-09-13T05:23:26.874 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-13T05:23:26.933 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_3 2024-09-13T05:23:26.989 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-13T05:23:26.989 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:26.989 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 977 Links: 1 2024-09-13T05:23:26.989 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:26.990 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:26.990 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-13 05:23:21.291473197 +0000 2024-09-13T05:23:26.990 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:26.990 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:26.990 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:26.990 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-13T05:23:27.053 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-13T05:23:27.053 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-13T05:23:27.053 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000204627 s, 2.5 MB/s 2024-09-13T05:23:27.054 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-13T05:23:27.111 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_4 2024-09-13T05:23:27.166 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-13T05:23:27.166 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:27.166 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 966 Links: 1 2024-09-13T05:23:27.166 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:27.167 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:27.167 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-13 05:23:21.292473176 +0000 2024-09-13T05:23:27.167 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:27.167 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:27.167 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-13 05:17:54.872395462 +0000 2024-09-13T05:23:27.167 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-13T05:23:27.230 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-13T05:23:27.230 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-13T05:23:27.230 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000213214 s, 2.4 MB/s 2024-09-13T05:23:27.231 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-13T05:23:27.288 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-13T05:23:27.288 DEBUG:teuthology.orchestra.run.smithi151:> dd if=/scratch_devs of=/dev/stdout 2024-09-13T05:23:27.304 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-09-13T05:23:27.305 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_1 2024-09-13T05:23:27.361 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-13T05:23:27.362 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:27.362 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 971 Links: 1 2024-09-13T05:23:27.362 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:27.362 INFO:teuthology.orchestra.run.smithi151.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:27.362 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-13 05:23:22.378685713 +0000 2024-09-13T05:23:27.363 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-13 05:17:56.066781457 +0000 2024-09-13T05:23:27.363 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-13 05:17:56.066781457 +0000 2024-09-13T05:23:27.363 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: 2024-09-13 05:17:56.066781457 +0000 2024-09-13T05:23:27.363 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-13T05:23:27.426 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-13T05:23:27.426 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-13T05:23:27.427 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000210141 s, 2.4 MB/s 2024-09-13T05:23:27.428 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-13T05:23:27.485 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_2 2024-09-13T05:23:27.543 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-13T05:23:27.543 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:27.543 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 984 Links: 1 2024-09-13T05:23:27.543 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:27.543 INFO:teuthology.orchestra.run.smithi151.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:27.543 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-13 05:23:22.378685713 +0000 2024-09-13T05:23:27.543 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-13 05:17:56.067781444 +0000 2024-09-13T05:23:27.543 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-13 05:17:56.067781444 +0000 2024-09-13T05:23:27.543 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: 2024-09-13 05:17:56.067781444 +0000 2024-09-13T05:23:27.544 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: Deploying daemon mgr.b on smithi151 2024-09-13T05:23:27.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:27 smithi151 ceph-mon[30595]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:27.599 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:27.599 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:27.599 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:27.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:27.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:27.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:27.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T05:23:27.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-13T05:23:27.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T05:23:27.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:27.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: Deploying daemon mgr.b on smithi151 2024-09-13T05:23:27.600 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:27 smithi153 ceph-mon[31083]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:27.605 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-13T05:23:27.605 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-13T05:23:27.605 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000216842 s, 2.4 MB/s 2024-09-13T05:23:27.606 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-13T05:23:27.663 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_3 2024-09-13T05:23:27.718 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-13T05:23:27.719 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:27.719 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 978 Links: 1 2024-09-13T05:23:27.719 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:27.719 INFO:teuthology.orchestra.run.smithi151.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:27.719 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-13 05:23:22.379685700 +0000 2024-09-13T05:23:27.719 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-13 05:17:56.066781457 +0000 2024-09-13T05:23:27.719 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-13 05:17:56.066781457 +0000 2024-09-13T05:23:27.719 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: 2024-09-13 05:17:56.066781457 +0000 2024-09-13T05:23:27.719 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-13T05:23:27.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:27.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:27.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:27.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:27.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:27.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:27.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T05:23:27.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-13T05:23:27.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T05:23:27.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:27.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: Deploying daemon mgr.b on smithi151 2024-09-13T05:23:27.763 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:27 smithi145 ceph-mon[29439]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:27.782 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-13T05:23:27.782 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-13T05:23:27.782 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000216391 s, 2.4 MB/s 2024-09-13T05:23:27.783 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-13T05:23:27.841 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_4 2024-09-13T05:23:27.897 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-13T05:23:27.898 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:27.898 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 969 Links: 1 2024-09-13T05:23:27.898 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:27.898 INFO:teuthology.orchestra.run.smithi151.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:27.898 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-13 05:23:22.379685700 +0000 2024-09-13T05:23:27.898 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-13 05:17:56.066781457 +0000 2024-09-13T05:23:27.898 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-13 05:17:56.066781457 +0000 2024-09-13T05:23:27.898 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: 2024-09-13 05:17:56.066781457 +0000 2024-09-13T05:23:27.898 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-13T05:23:27.973 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-13T05:23:27.973 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-13T05:23:27.973 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000184455 s, 2.8 MB/s 2024-09-13T05:23:27.974 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-13T05:23:28.032 DEBUG:teuthology.orchestra.run.smithi153:> set -ex 2024-09-13T05:23:28.032 DEBUG:teuthology.orchestra.run.smithi153:> dd if=/scratch_devs of=/dev/stdout 2024-09-13T05:23:28.052 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-09-13T05:23:28.052 DEBUG:teuthology.orchestra.run.smithi153:> stat /dev/vg_nvme/lv_1 2024-09-13T05:23:28.110 INFO:teuthology.orchestra.run.smithi153.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-13T05:23:28.111 INFO:teuthology.orchestra.run.smithi153.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:28.111 INFO:teuthology.orchestra.run.smithi153.stdout:Device: 5h/5d Inode: 977 Links: 1 2024-09-13T05:23:28.111 INFO:teuthology.orchestra.run.smithi153.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:28.111 INFO:teuthology.orchestra.run.smithi153.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:28.111 INFO:teuthology.orchestra.run.smithi153.stdout:Access: 2024-09-13 05:23:23.380818969 +0000 2024-09-13T05:23:28.111 INFO:teuthology.orchestra.run.smithi153.stdout:Modify: 2024-09-13 05:17:56.305738909 +0000 2024-09-13T05:23:28.111 INFO:teuthology.orchestra.run.smithi153.stdout:Change: 2024-09-13 05:17:56.305738909 +0000 2024-09-13T05:23:28.111 INFO:teuthology.orchestra.run.smithi153.stdout: Birth: 2024-09-13 05:17:56.305738909 +0000 2024-09-13T05:23:28.111 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-13T05:23:28.179 INFO:teuthology.orchestra.run.smithi153.stderr:1+0 records in 2024-09-13T05:23:28.179 INFO:teuthology.orchestra.run.smithi153.stderr:1+0 records out 2024-09-13T05:23:28.180 INFO:teuthology.orchestra.run.smithi153.stderr:512 bytes copied, 0.000204181 s, 2.5 MB/s 2024-09-13T05:23:28.181 DEBUG:teuthology.orchestra.run.smithi153:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-13T05:23:28.240 DEBUG:teuthology.orchestra.run.smithi153:> stat /dev/vg_nvme/lv_2 2024-09-13T05:23:28.297 INFO:teuthology.orchestra.run.smithi153.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-13T05:23:28.297 INFO:teuthology.orchestra.run.smithi153.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:28.297 INFO:teuthology.orchestra.run.smithi153.stdout:Device: 5h/5d Inode: 970 Links: 1 2024-09-13T05:23:28.297 INFO:teuthology.orchestra.run.smithi153.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:28.297 INFO:teuthology.orchestra.run.smithi153.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:28.297 INFO:teuthology.orchestra.run.smithi153.stdout:Access: 2024-09-13 05:23:23.381818951 +0000 2024-09-13T05:23:28.297 INFO:teuthology.orchestra.run.smithi153.stdout:Modify: 2024-09-13 05:17:56.305738909 +0000 2024-09-13T05:23:28.297 INFO:teuthology.orchestra.run.smithi153.stdout:Change: 2024-09-13 05:17:56.305738909 +0000 2024-09-13T05:23:28.297 INFO:teuthology.orchestra.run.smithi153.stdout: Birth: 2024-09-13 05:17:56.305738909 +0000 2024-09-13T05:23:28.297 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-13T05:23:28.364 INFO:teuthology.orchestra.run.smithi153.stderr:1+0 records in 2024-09-13T05:23:28.364 INFO:teuthology.orchestra.run.smithi153.stderr:1+0 records out 2024-09-13T05:23:28.364 INFO:teuthology.orchestra.run.smithi153.stderr:512 bytes copied, 0.000204891 s, 2.5 MB/s 2024-09-13T05:23:28.365 DEBUG:teuthology.orchestra.run.smithi153:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-13T05:23:28.422 DEBUG:teuthology.orchestra.run.smithi153:> stat /dev/vg_nvme/lv_3 2024-09-13T05:23:28.478 INFO:teuthology.orchestra.run.smithi153.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-13T05:23:28.478 INFO:teuthology.orchestra.run.smithi153.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:28.478 INFO:teuthology.orchestra.run.smithi153.stdout:Device: 5h/5d Inode: 983 Links: 1 2024-09-13T05:23:28.478 INFO:teuthology.orchestra.run.smithi153.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:28.478 INFO:teuthology.orchestra.run.smithi153.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:28.478 INFO:teuthology.orchestra.run.smithi153.stdout:Access: 2024-09-13 05:23:23.381818951 +0000 2024-09-13T05:23:28.478 INFO:teuthology.orchestra.run.smithi153.stdout:Modify: 2024-09-13 05:17:56.306738891 +0000 2024-09-13T05:23:28.478 INFO:teuthology.orchestra.run.smithi153.stdout:Change: 2024-09-13 05:17:56.306738891 +0000 2024-09-13T05:23:28.478 INFO:teuthology.orchestra.run.smithi153.stdout: Birth: 2024-09-13 05:17:56.306738891 +0000 2024-09-13T05:23:28.479 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-13T05:23:28.542 INFO:teuthology.orchestra.run.smithi153.stderr:1+0 records in 2024-09-13T05:23:28.542 INFO:teuthology.orchestra.run.smithi153.stderr:1+0 records out 2024-09-13T05:23:28.542 INFO:teuthology.orchestra.run.smithi153.stderr:512 bytes copied, 0.000253845 s, 2.0 MB/s 2024-09-13T05:23:28.543 DEBUG:teuthology.orchestra.run.smithi153:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-13T05:23:28.600 DEBUG:teuthology.orchestra.run.smithi153:> stat /dev/vg_nvme/lv_4 2024-09-13T05:23:28.657 INFO:teuthology.orchestra.run.smithi153.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-13T05:23:28.657 INFO:teuthology.orchestra.run.smithi153.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T05:23:28.657 INFO:teuthology.orchestra.run.smithi153.stdout:Device: 5h/5d Inode: 964 Links: 1 2024-09-13T05:23:28.657 INFO:teuthology.orchestra.run.smithi153.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T05:23:28.658 INFO:teuthology.orchestra.run.smithi153.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T05:23:28.658 INFO:teuthology.orchestra.run.smithi153.stdout:Access: 2024-09-13 05:23:23.381818951 +0000 2024-09-13T05:23:28.658 INFO:teuthology.orchestra.run.smithi153.stdout:Modify: 2024-09-13 05:17:56.304738927 +0000 2024-09-13T05:23:28.658 INFO:teuthology.orchestra.run.smithi153.stdout:Change: 2024-09-13 05:17:56.304738927 +0000 2024-09-13T05:23:28.658 INFO:teuthology.orchestra.run.smithi153.stdout: Birth: 2024-09-13 05:17:56.304738927 +0000 2024-09-13T05:23:28.658 DEBUG:teuthology.orchestra.run.smithi153:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-13T05:23:28.721 INFO:teuthology.orchestra.run.smithi153.stderr:1+0 records in 2024-09-13T05:23:28.722 INFO:teuthology.orchestra.run.smithi153.stderr:1+0 records out 2024-09-13T05:23:28.722 INFO:teuthology.orchestra.run.smithi153.stderr:512 bytes copied, 0.000239261 s, 2.1 MB/s 2024-09-13T05:23:28.723 DEBUG:teuthology.orchestra.run.smithi153:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-13T05:23:28.780 INFO:tasks.cephadm:Deploying osd.0 on smithi145 with /dev/vg_nvme/lv_4... 2024-09-13T05:23:28.780 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-13T05:23:28.837 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:28 smithi151 systemd[1]: Started Ceph mgr.b for e34a8208-718f-11ef-bceb-c7b262605968. 2024-09-13T05:23:29.057 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T05:23:30.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:30.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:30.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:30.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T05:23:30.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: Reconfiguring mgr.a (unknown last config time)... 2024-09-13T05:23:30.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T05:23:30.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T05:23:30.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:30.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: Reconfiguring daemon mgr.a on smithi145 2024-09-13T05:23:30.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:30.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:29 smithi151 ceph-mon[30595]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.099 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.099 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.099 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: Reconfiguring mgr.a (unknown last config time)... 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: Reconfiguring daemon mgr.a on smithi145 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:30.100 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:29 smithi153 ceph-mon[31083]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: Metadata not up to date on all hosts. Skipping non agent specs 2024-09-13T05:23:30.200 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: Reconfiguring mgr.a (unknown last config time)... 2024-09-13T05:23:30.201 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T05:23:30.201 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T05:23:30.201 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T05:23:30.201 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: Reconfiguring daemon mgr.a on smithi145 2024-09-13T05:23:30.201 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:30.201 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:29 smithi145 ceph-mon[29439]: from='mgr.14152 172.21.15.145:0/1981744900' entity='mgr.a' 2024-09-13T05:23:31.523 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:31 smithi145 ceph-mon[29439]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:31.528 INFO:teuthology.orchestra.run.smithi145.stderr:Non-zero exit code 1 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 -e NODE_NAME=smithi145 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/e34a8208-718f-11ef-bceb-c7b262605968:/var/run/ceph:z -v /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash:/var/lib/ceph/crash:z -v /run/systemd/journal:/run/systemd/journal -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/selinux:/sys/fs/selinux:ro -v /:/rootfs:rslave -v /etc/hosts:/etc/hosts:ro -v /tmp/ceph-tmp4auay2ou:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp14gnzeqg:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 lvm zap /dev/vg_nvme/lv_4 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr --> Zapping: /dev/vg_nvme/lv_4 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr --> Removing all BlueStore signature on /dev/vg_nvme/lv_4 if any... 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr Running command: /usr/bin/ceph-bluestore-tool zap-device /dev/vg_nvme/lv_4 --yes-i-really-really-mean-it 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr stderr: Unknown options: [zap-device,/dev/vg_nvme/lv_4] 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr Traceback (most recent call last): 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/sbin/ceph-volume", line 33, in 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr sys.exit(load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')()) 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/main.py", line 54, in __init__ 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr self.main(self.argv) 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr return f(*a, **kw) 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/main.py", line 166, in main 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-09-13T05:23:31.529 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr instance.main() 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr terminal.dispatch(self.mapper, self.argv) 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr instance.main() 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/devices/lvm/zap.py", line 430, in main 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr self.zap() 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr return func(*a, **kw) 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr self.zap_lv(device) 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/devices/lvm/zap.py", line 197, in zap_lv 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr zap_device(device.path) 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/devices/lvm/zap.py", line 25, in zap_device 2024-09-13T05:23:31.530 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr zap_bluestore(path) 2024-09-13T05:23:31.531 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/devices/lvm/zap.py", line 36, in zap_bluestore 2024-09-13T05:23:31.531 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr process.run([ 2024-09-13T05:23:31.531 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr File "/usr/lib/python3.9/site-packages/ceph_volume/process.py", line 147, in run 2024-09-13T05:23:31.531 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr raise RuntimeError(msg) 2024-09-13T05:23:31.531 INFO:teuthology.orchestra.run.smithi145.stderr:/bin/podman: stderr RuntimeError: command returned non-zero exit status: 1 2024-09-13T05:23:31.531 INFO:teuthology.orchestra.run.smithi145.stderr:Traceback (most recent call last): 2024-09-13T05:23:31.531 INFO:teuthology.orchestra.run.smithi145.stderr: File "/usr/lib64/python3.9/runpy.py", line 197, in _run_module_as_main 2024-09-13T05:23:31.536 INFO:teuthology.orchestra.run.smithi145.stderr: return _run_code(code, main_globals, None, 2024-09-13T05:23:31.536 INFO:teuthology.orchestra.run.smithi145.stderr: File "/usr/lib64/python3.9/runpy.py", line 87, in _run_code 2024-09-13T05:23:31.536 INFO:teuthology.orchestra.run.smithi145.stderr: exec(code, run_globals) 2024-09-13T05:23:31.537 INFO:teuthology.orchestra.run.smithi145.stderr: File "/tmp/tmprnbq0edz.cephadm.build/app/__main__.py", line 5628, in 2024-09-13T05:23:31.537 INFO:teuthology.orchestra.run.smithi145.stderr: File "/tmp/tmprnbq0edz.cephadm.build/app/__main__.py", line 5616, in main 2024-09-13T05:23:31.537 INFO:teuthology.orchestra.run.smithi145.stderr: File "/tmp/tmprnbq0edz.cephadm.build/app/__main__.py", line 414, in _infer_config 2024-09-13T05:23:31.537 INFO:teuthology.orchestra.run.smithi145.stderr: File "/tmp/tmprnbq0edz.cephadm.build/app/__main__.py", line 329, in _infer_fsid 2024-09-13T05:23:31.537 INFO:teuthology.orchestra.run.smithi145.stderr: File "/tmp/tmprnbq0edz.cephadm.build/app/__main__.py", line 442, in _infer_image 2024-09-13T05:23:31.537 INFO:teuthology.orchestra.run.smithi145.stderr: File "/tmp/tmprnbq0edz.cephadm.build/app/__main__.py", line 316, in _validate_fsid 2024-09-13T05:23:31.537 INFO:teuthology.orchestra.run.smithi145.stderr: File "/tmp/tmprnbq0edz.cephadm.build/app/__main__.py", line 3353, in command_ceph_volume 2024-09-13T05:23:31.537 INFO:teuthology.orchestra.run.smithi145.stderr: File "/tmp/tmprnbq0edz.cephadm.build/app/cephadmlib/call_wrappers.py", line 310, in call_throws 2024-09-13T05:23:31.537 INFO:teuthology.orchestra.run.smithi145.stderr:RuntimeError: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 -e NODE_NAME=smithi145 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/e34a8208-718f-11ef-bceb-c7b262605968:/var/run/ceph:z -v /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash:/var/lib/ceph/crash:z -v /run/systemd/journal:/run/systemd/journal -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/selinux:/sys/fs/selinux:ro -v /:/rootfs:rslave -v /etc/hosts:/etc/hosts:ro -v /tmp/ceph-tmp4auay2ou:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp14gnzeqg:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 lvm zap /dev/vg_nvme/lv_4 2024-09-13T05:23:31.562 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:23:31.563 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa/tasks/cephadm.py", line 1121, in ceph_osds remote.run( File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/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_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi145 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4' 2024-09-13T05:23:31.565 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:31.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:31 smithi151 ceph-mon[30595]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:31.594 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:31.624 DEBUG:teuthology.orchestra.run.smithi153:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:31.651 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:31 smithi153 ceph-mon[31083]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T05:23:31.655 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-13T05:23:31.655 DEBUG:teuthology.orchestra.run.smithi145:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-13T05:23:31.671 DEBUG:teuthology.orchestra.run.smithi151:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-13T05:23:31.686 DEBUG:teuthology.orchestra.run.smithi153:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-13T05:23:31.714 INFO:tasks.cephadm:Stopping all daemons... 2024-09-13T05:23:31.714 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-13T05:23:31.715 DEBUG:teuthology.orchestra.run.smithi145:> sudo systemctl stop ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.a 2024-09-13T05:23:31.835 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:31 smithi145 systemd[1]: Stopping Ceph mon.a for e34a8208-718f-11ef-bceb-c7b262605968... 2024-09-13T05:23:32.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:32 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a[29435]: 2024-09-13T05:23:32.372+0000 7f176c19a640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -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-09-13T05:23:32.762 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:32 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a[29435]: 2024-09-13T05:23:32.372+0000 7f176c19a640 -1 mon.a@0(leader) e3 *** Got Signal Terminated *** 2024-09-13T05:23:33.182 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:32 smithi145 podman[36054]: 2024-09-13 05:23:32.845195585 +0000 UTC m=+0.559533093 container died b0aea69ba126441a181f2e6ac7324e459ced03896ef72720aaa099aa37197876 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a, org.label-schema.build-date=20240731, GIT_CLEAN=True, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0) 2024-09-13T05:23:33.182 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:33 smithi145 podman[36054]: 2024-09-13 05:23:33.181926075 +0000 UTC m=+0.896263582 container cleanup b0aea69ba126441a181f2e6ac7324e459ced03896ef72720aaa099aa37197876 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, ceph=True, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731) 2024-09-13T05:23:33.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:33 smithi145 bash[36054]: ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a 2024-09-13T05:23:33.512 INFO:journalctl@ceph.mon.a.smithi145.stdout:Sep 13 05:23:33 smithi145 podman[36070]: 2024-09-13 05:23:33.424758573 +0000 UTC m=+0.909810423 container remove b0aea69ba126441a181f2e6ac7324e459ced03896ef72720aaa099aa37197876 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-a, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD) 2024-09-13T05:23:33.550 DEBUG:teuthology.orchestra.run.smithi145:> sudo pkill -f 'journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.a.service' 2024-09-13T05:23:33.606 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T05:23:33.607 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-13T05:23:33.607 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-13T05:23:33.607 DEBUG:teuthology.orchestra.run.smithi151:> sudo systemctl stop ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.b 2024-09-13T05:23:33.837 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:33 smithi151 systemd[1]: Stopping Ceph mon.b for e34a8208-718f-11ef-bceb-c7b262605968... 2024-09-13T05:23:34.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:34 smithi151 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-b[30591]: 2024-09-13T05:23:34.215+0000 7fa4b369c640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.b -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-09-13T05:23:34.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:34 smithi151 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-b[30591]: 2024-09-13T05:23:34.215+0000 7fa4b369c640 -1 mon.b@2(peon) e3 *** Got Signal Terminated *** 2024-09-13T05:23:34.587 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:34 smithi151 podman[32352]: 2024-09-13 05:23:34.379750479 +0000 UTC m=+0.254119926 container died cff76cb2520cdcd61e3c664a9c3ffaad1fcd5b33cc36cfeb43a9f91e9477fdc3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-b, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, ceph=True) 2024-09-13T05:23:34.905 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:34 smithi151 podman[32352]: 2024-09-13 05:23:34.707763873 +0000 UTC m=+0.582133461 container cleanup cff76cb2520cdcd61e3c664a9c3ffaad1fcd5b33cc36cfeb43a9f91e9477fdc3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-b, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, GIT_CLEAN=True, maintainer=Guillaume Abrioux ) 2024-09-13T05:23:34.905 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:34 smithi151 bash[32352]: ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-b 2024-09-13T05:23:35.129 DEBUG:teuthology.orchestra.run.smithi151:> sudo pkill -f 'journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.b.service' 2024-09-13T05:23:35.152 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:34 smithi151 podman[32376]: 2024-09-13 05:23:34.900986036 +0000 UTC m=+0.516630331 container remove cff76cb2520cdcd61e3c664a9c3ffaad1fcd5b33cc36cfeb43a9f91e9477fdc3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-b, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True) 2024-09-13T05:23:35.152 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:35 smithi151 systemd[1]: ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.b.service: Deactivated successfully. 2024-09-13T05:23:35.152 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:35 smithi151 systemd[1]: Stopped Ceph mon.b for e34a8208-718f-11ef-bceb-c7b262605968. 2024-09-13T05:23:35.153 INFO:journalctl@ceph.mon.b.smithi151.stdout:Sep 13 05:23:35 smithi151 systemd[1]: ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.b.service: Consumed 1.060s CPU time. 2024-09-13T05:23:35.185 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T05:23:35.186 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-13T05:23:35.186 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-13T05:23:35.186 DEBUG:teuthology.orchestra.run.smithi153:> sudo systemctl stop ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.c 2024-09-13T05:23:35.488 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:35 smithi153 systemd[1]: Stopping Ceph mon.c for e34a8208-718f-11ef-bceb-c7b262605968... 2024-09-13T05:23:35.849 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:35 smithi153 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-c[31079]: 2024-09-13T05:23:35.486+0000 7f6e41c2f640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.c -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-09-13T05:23:35.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:35 smithi153 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-c[31079]: 2024-09-13T05:23:35.486+0000 7f6e41c2f640 -1 mon.c@1(peon) e3 *** Got Signal Terminated *** 2024-09-13T05:23:35.850 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:35 smithi153 podman[32814]: 2024-09-13 05:23:35.661739919 +0000 UTC m=+0.282508327 container died 48e852179bb72000a5d4bc8c0258f1b159e44e7370ab3d7f2f5b909d3aa9a20f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-c, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.license=GPLv2) 2024-09-13T05:23:36.349 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:36 smithi153 podman[32814]: 2024-09-13 05:23:36.011126029 +0000 UTC m=+0.631894449 container cleanup 48e852179bb72000a5d4bc8c0258f1b159e44e7370ab3d7f2f5b909d3aa9a20f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-c, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb) 2024-09-13T05:23:36.349 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:36 smithi153 bash[32814]: ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-c 2024-09-13T05:23:36.350 INFO:journalctl@ceph.mon.c.smithi153.stdout:Sep 13 05:23:36 smithi153 podman[32827]: 2024-09-13 05:23:36.178832056 +0000 UTC m=+0.507761942 container remove 48e852179bb72000a5d4bc8c0258f1b159e44e7370ab3d7f2f5b909d3aa9a20f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mon-c, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, ceph=True, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb) 2024-09-13T05:23:36.385 DEBUG:teuthology.orchestra.run.smithi153:> sudo pkill -f 'journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mon.c.service' 2024-09-13T05:23:36.450 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T05:23:36.450 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-13T05:23:36.450 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-13T05:23:36.451 DEBUG:teuthology.orchestra.run.smithi145:> sudo systemctl stop ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.a 2024-09-13T05:23:36.762 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:23:36 smithi145 systemd[1]: Stopping Ceph mgr.a for e34a8208-718f-11ef-bceb-c7b262605968... 2024-09-13T05:23:37.052 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:23:36 smithi145 ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a[29665]: 2024-09-13T05:23:36.760+0000 7f54175f0640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-13T05:23:37.052 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:23:36 smithi145 podman[36290]: 2024-09-13 05:23:36.792037056 +0000 UTC m=+0.152419682 container died a34ec1fe17d83afb57a66ee30d03abdd49b9e9757a94f5d30533c11bd56d0215 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb) 2024-09-13T05:23:37.052 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:23:37 smithi145 podman[36290]: 2024-09-13 05:23:37.05207116 +0000 UTC m=+0.412453787 container cleanup a34ec1fe17d83afb57a66ee30d03abdd49b9e9757a94f5d30533c11bd56d0215 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS) 2024-09-13T05:23:37.320 INFO:journalctl@ceph.mgr.a.smithi145.stdout:Sep 13 05:23:37 smithi145 bash[36290]: ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-a 2024-09-13T05:23:37.482 DEBUG:teuthology.orchestra.run.smithi145:> sudo pkill -f 'journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-13T05:23:37.527 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T05:23:37.527 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-13T05:23:37.527 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-13T05:23:37.527 DEBUG:teuthology.orchestra.run.smithi151:> sudo systemctl stop ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.b 2024-09-13T05:23:37.833 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:37 smithi151 systemd[1]: Stopping Ceph mgr.b for e34a8208-718f-11ef-bceb-c7b262605968... 2024-09-13T05:23:38.087 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:37 smithi151 podman[32509]: 2024-09-13 05:23:37.833482266 +0000 UTC m=+0.121820686 container died 273d085636966509c6164368a00b69506fbafb081b737d5b9d8192661b2f4a75 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-b, GIT_CLEAN=True, ceph=True, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS) 2024-09-13T05:23:38.357 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:38 smithi151 podman[32509]: 2024-09-13 05:23:38.17890326 +0000 UTC m=+0.467241680 container cleanup 273d085636966509c6164368a00b69506fbafb081b737d5b9d8192661b2f4a75 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-b, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, ceph=True, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, GIT_CLEAN=True, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0) 2024-09-13T05:23:38.358 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:38 smithi151 bash[32509]: ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-b 2024-09-13T05:23:38.358 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:38 smithi151 podman[32522]: 2024-09-13 05:23:38.354726948 +0000 UTC m=+0.513079709 container remove 273d085636966509c6164368a00b69506fbafb081b737d5b9d8192661b2f4a75 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:931e75f8a8ba7bd669ee47053a4500e7d74632603919af8ba169df149fde6cff, name=ceph-e34a8208-718f-11ef-bceb-c7b262605968-mgr-b, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-main-2024-09-12-1245-9d608eb, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-13T05:23:38.358 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:38 smithi151 systemd[1]: ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.b.service: Main process exited, code=exited, status=143/n/a 2024-09-13T05:23:38.589 DEBUG:teuthology.orchestra.run.smithi151:> sudo pkill -f 'journalctl -f -n 0 -u ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-13T05:23:38.651 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:38 smithi151 systemd[1]: ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.b.service: Failed with result 'exit-code'. 2024-09-13T05:23:38.651 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:38 smithi151 systemd[1]: Stopped Ceph mgr.b for e34a8208-718f-11ef-bceb-c7b262605968. 2024-09-13T05:23:38.651 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Sep 13 05:23:38 smithi151 systemd[1]: ceph-e34a8208-718f-11ef-bceb-c7b262605968@mgr.b.service: Consumed 6.340s CPU time. 2024-09-13T05:23:38.670 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T05:23:38.670 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-13T05:23:38.670 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e34a8208-718f-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-13T05:23:38.875 INFO:teuthology.orchestra.run.smithi145.stdout:Deleting cluster with fsid: e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:40.794 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e34a8208-718f-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-13T05:23:41.006 INFO:teuthology.orchestra.run.smithi151.stdout:Deleting cluster with fsid: e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:42.097 DEBUG:teuthology.orchestra.run.smithi153:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e34a8208-718f-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-13T05:23:42.356 INFO:teuthology.orchestra.run.smithi153.stdout:Deleting cluster with fsid: e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:43.936 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:43.969 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:44.002 DEBUG:teuthology.orchestra.run.smithi153:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T05:23:44.029 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-13T05:23:44.032 DEBUG:teuthology.misc:Transferring archived files from smithi145:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114/remote/smithi145/crash 2024-09-13T05:23:44.032 DEBUG:teuthology.orchestra.run.smithi145:> sudo tar c -f - -C /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash -- . 2024-09-13T05:23:44.082 INFO:teuthology.orchestra.run.smithi145.stderr:tar: /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-13T05:23:44.082 INFO:teuthology.orchestra.run.smithi145.stderr:tar: Error is not recoverable: exiting now 2024-09-13T05:23:44.084 DEBUG:teuthology.misc:Transferring archived files from smithi151:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114/remote/smithi151/crash 2024-09-13T05:23:44.084 DEBUG:teuthology.orchestra.run.smithi151:> sudo tar c -f - -C /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash -- . 2024-09-13T05:23:44.125 INFO:teuthology.orchestra.run.smithi151.stderr:tar: /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-13T05:23:44.125 INFO:teuthology.orchestra.run.smithi151.stderr:tar: Error is not recoverable: exiting now 2024-09-13T05:23:44.127 DEBUG:teuthology.misc:Transferring archived files from smithi153:/var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114/remote/smithi153/crash 2024-09-13T05:23:44.128 DEBUG:teuthology.orchestra.run.smithi153:> sudo tar c -f - -C /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash -- . 2024-09-13T05:23:44.167 INFO:teuthology.orchestra.run.smithi153.stderr:tar: /var/lib/ceph/e34a8208-718f-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-13T05:23:44.167 INFO:teuthology.orchestra.run.smithi153.stderr:tar: Error is not recoverable: exiting now 2024-09-13T05:23:44.168 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-13T05:23:44.168 DEBUG:teuthology.orchestra.run.smithi145:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-13T05:23:44.202 INFO:tasks.cephadm:Compressing logs... 2024-09-13T05:23:44.202 DEBUG:teuthology.orchestra.run.smithi145:> 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-09-13T05:23:44.245 DEBUG:teuthology.orchestra.run.smithi151:> 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-09-13T05:23:44.248 DEBUG:teuthology.orchestra.run.smithi153:> 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-09-13T05:23:44.272 INFO:teuthology.orchestra.run.smithi145.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mgr.a.log 2024-09-13T05:23:44.272 INFO:teuthology.orchestra.run.smithi145.stderr:: No such file or directory 2024-09-13T05:23:44.272 INFO:teuthology.orchestra.run.smithi145.stderr:gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-13T05:23:44.272 INFO:teuthology.orchestra.run.smithi145.stderr:gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-13T05:23:44.272 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-13T05:23:44.272 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mon.a.log 2024-09-13T05:23:44.272 INFO:teuthology.orchestra.run.smithi145.stderr:gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log 2024-09-13T05:23:44.273 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.cephadm.log: /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mon.a.log: 89.7% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-13T05:23:44.274 INFO:teuthology.orchestra.run.smithi145.stderr: 81.6% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-13T05:23:44.275 INFO:teuthology.orchestra.run.smithi145.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-13T05:23:44.275 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/cephadm.log: 84.1% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-13T05:23:44.275 INFO:teuthology.orchestra.run.smithi145.stderr: 91.4% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-13T05:23:44.275 INFO:teuthology.orchestra.run.smithi145.stderr: 76.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-13T05:23:44.275 INFO:teuthology.orchestra.run.smithi153.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-13T05:23:44.275 INFO:teuthology.orchestra.run.smithi153.stderr:: No such file or directory 2024-09-13T05:23:44.275 INFO:teuthology.orchestra.run.smithi153.stderr:gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-13T05:23:44.275 INFO:teuthology.orchestra.run.smithi153.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mon.c.log 2024-09-13T05:23:44.276 INFO:teuthology.orchestra.run.smithi153.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-13T05:23:44.276 INFO:teuthology.orchestra.run.smithi153.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mon.c.log: 90.0% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-13T05:23:44.276 INFO:teuthology.orchestra.run.smithi153.stderr:gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log 2024-09-13T05:23:44.278 INFO:teuthology.orchestra.run.smithi153.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-13T05:23:44.278 INFO:teuthology.orchestra.run.smithi153.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.cephadm.log: /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log: 76.5% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-13T05:23:44.278 INFO:teuthology.orchestra.run.smithi153.stderr: 82.2% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-13T05:23:44.278 INFO:teuthology.orchestra.run.smithi153.stderr:/var/log/ceph/cephadm.log: 74.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-13T05:23:44.278 INFO:teuthology.orchestra.run.smithi153.stderr: 91.3% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-13T05:23:44.280 INFO:teuthology.orchestra.run.smithi151.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-13T05:23:44.280 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-13T05:23:44.280 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mgr.b.log 2024-09-13T05:23:44.280 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-13T05:23:44.281 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-13T05:23:44.281 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log 2024-09-13T05:23:44.281 INFO:teuthology.orchestra.run.smithi151.stderr: 89.4% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-13T05:23:44.281 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mon.b.log 2024-09-13T05:23:44.281 INFO:teuthology.orchestra.run.smithi151.stderr: 76.3% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-13T05:23:44.281 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-13T05:23:44.281 INFO:teuthology.orchestra.run.smithi151.stderr: 79.8% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-13T05:23:44.281 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mon.b.log: /var/log/ceph/cephadm.log: 88.9% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mgr.b.log.gz 2024-09-13T05:23:44.281 INFO:teuthology.orchestra.run.smithi151.stderr: 70.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-13T05:23:44.282 INFO:teuthology.orchestra.run.smithi151.stderr: 91.5% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-13T05:23:44.282 INFO:teuthology.orchestra.run.smithi151.stderr: 92.3% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mon.b.log.gz 2024-09-13T05:23:44.284 INFO:teuthology.orchestra.run.smithi153.stderr: 92.5% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mon.c.log.gz 2024-09-13T05:23:44.284 INFO:teuthology.orchestra.run.smithi151.stderr: 2024-09-13T05:23:44.285 INFO:teuthology.orchestra.run.smithi151.stderr:real 0m0.022s 2024-09-13T05:23:44.285 INFO:teuthology.orchestra.run.smithi151.stderr:user 0m0.025s 2024-09-13T05:23:44.285 INFO:teuthology.orchestra.run.smithi151.stderr:sys 0m0.019s 2024-09-13T05:23:44.286 INFO:teuthology.orchestra.run.smithi153.stderr: 2024-09-13T05:23:44.286 INFO:teuthology.orchestra.run.smithi153.stderr:real 0m0.023s 2024-09-13T05:23:44.286 INFO:teuthology.orchestra.run.smithi153.stderr:user 0m0.023s 2024-09-13T05:23:44.286 INFO:teuthology.orchestra.run.smithi153.stderr:sys 0m0.015s 2024-09-13T05:23:44.304 INFO:teuthology.orchestra.run.smithi145.stderr: 88.3% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mgr.a.log.gz 2024-09-13T05:23:44.332 INFO:teuthology.orchestra.run.smithi145.stderr: 91.8% -- replaced with /var/log/ceph/e34a8208-718f-11ef-bceb-c7b262605968/ceph-mon.a.log.gz 2024-09-13T05:23:44.334 INFO:teuthology.orchestra.run.smithi145.stderr: 2024-09-13T05:23:44.334 INFO:teuthology.orchestra.run.smithi145.stderr:real 0m0.075s 2024-09-13T05:23:44.334 INFO:teuthology.orchestra.run.smithi145.stderr:user 0m0.108s 2024-09-13T05:23:44.334 INFO:teuthology.orchestra.run.smithi145.stderr:sys 0m0.020s 2024-09-13T05:23:44.335 INFO:tasks.cephadm:Archiving logs... 2024-09-13T05:23:44.335 DEBUG:teuthology.misc:Transferring archived files from smithi145:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114/remote/smithi145/log 2024-09-13T05:23:44.336 DEBUG:teuthology.orchestra.run.smithi145:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-13T05:23:44.423 DEBUG:teuthology.misc:Transferring archived files from smithi151:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114/remote/smithi151/log 2024-09-13T05:23:44.424 DEBUG:teuthology.orchestra.run.smithi151:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-13T05:23:44.464 DEBUG:teuthology.misc:Transferring archived files from smithi153:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114/remote/smithi153/log 2024-09-13T05:23:44.465 DEBUG:teuthology.orchestra.run.smithi153:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-13T05:23:44.497 INFO:tasks.cephadm:Removing cluster... 2024-09-13T05:23:44.498 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e34a8208-718f-11ef-bceb-c7b262605968 --force 2024-09-13T05:23:44.687 INFO:teuthology.orchestra.run.smithi145.stdout:Deleting cluster with fsid: e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:44.942 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e34a8208-718f-11ef-bceb-c7b262605968 --force 2024-09-13T05:23:45.161 INFO:teuthology.orchestra.run.smithi151.stdout:Deleting cluster with fsid: e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:45.415 DEBUG:teuthology.orchestra.run.smithi153:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e34a8208-718f-11ef-bceb-c7b262605968 --force 2024-09-13T05:23:45.617 INFO:teuthology.orchestra.run.smithi153.stdout:Deleting cluster with fsid: e34a8208-718f-11ef-bceb-c7b262605968 2024-09-13T05:23:45.876 INFO:tasks.cephadm:Removing cephadm ... 2024-09-13T05:23:45.877 DEBUG:teuthology.orchestra.run.smithi145:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-13T05:23:45.897 DEBUG:teuthology.orchestra.run.smithi151:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-13T05:23:45.913 DEBUG:teuthology.orchestra.run.smithi153:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-13T05:23:45.929 INFO:tasks.cephadm:Teardown complete 2024-09-13T05:23:45.929 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa/tasks/cephadm.py", line 2334, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.10/contextlib.py", line 153, in __exit__ self.gen.throw(typ, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa/tasks/cephadm.py", line 1962, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa/tasks/cephadm.py", line 1121, in ceph_osds remote.run( File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/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_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi145 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4' 2024-09-13T05:23:46.158 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=6d82321302b54dbd9d8f0192eea9d3f2 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa/tasks/cephadm.py", line 2334, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.10/contextlib.py", line 153, in __exit__ self.gen.throw(typ, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa/tasks/cephadm.py", line 1962, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3/qa/tasks/cephadm.py", line 1121, in ceph_osds remote.run( File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/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_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi145 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4' 2024-09-13T05:23:46.161 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-13T05:23:46.173 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-13T05:23:46.223 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-09-13T05:23:46.224 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-13T05:23:46.254 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-13T05:23:46.257 DEBUG:teuthology.orchestra.run.smithi153:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-13T05:23:46.378 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-13T05:23:46.386 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-13T05:23:46.387 DEBUG:teuthology.orchestra.run.smithi145:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T05:23:46.389 DEBUG:teuthology.orchestra.run.smithi151:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T05:23:46.392 DEBUG:teuthology.orchestra.run.smithi153:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T05:23:46.404 INFO:teuthology.orchestra.run.smithi145.stderr:bash: line 1: ntpq: command not found 2024-09-13T05:23:46.404 INFO:teuthology.orchestra.run.smithi151.stderr:bash: line 1: ntpq: command not found 2024-09-13T05:23:46.407 INFO:teuthology.orchestra.run.smithi153.stderr:bash: line 1: ntpq: command not found 2024-09-13T05:23:46.408 INFO:teuthology.orchestra.run.smithi151.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T05:23:46.408 INFO:teuthology.orchestra.run.smithi151.stdout:=============================================================================== 2024-09-13T05:23:46.409 INFO:teuthology.orchestra.run.smithi151.stdout:^* hv01.front.sepia.ceph.com 3 6 377 26 +282us[ +311us] +/- 39ms 2024-09-13T05:23:46.409 INFO:teuthology.orchestra.run.smithi151.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 25 -800us[ -800us] +/- 69ms 2024-09-13T05:23:46.409 INFO:teuthology.orchestra.run.smithi151.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 26 +351us[ +351us] +/- 67ms 2024-09-13T05:23:46.409 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:23:46.410 INFO:teuthology.orchestra.run.smithi145.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T05:23:46.411 INFO:teuthology.orchestra.run.smithi145.stdout:=============================================================================== 2024-09-13T05:23:46.411 INFO:teuthology.orchestra.run.smithi145.stdout:^* hv01.front.sepia.ceph.com 3 6 377 26 +280us[ +311us] +/- 39ms 2024-09-13T05:23:46.411 INFO:teuthology.orchestra.run.smithi145.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 27 -797us[ -767us] +/- 69ms 2024-09-13T05:23:46.411 INFO:teuthology.orchestra.run.smithi145.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 27 +342us[ +373us] +/- 67ms 2024-09-13T05:23:46.411 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:23:46.412 INFO:teuthology.orchestra.run.smithi153.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T05:23:46.412 INFO:teuthology.orchestra.run.smithi153.stdout:=============================================================================== 2024-09-13T05:23:46.413 INFO:teuthology.orchestra.run.smithi153.stdout:^* hv01.front.sepia.ceph.com 3 6 377 26 +282us[ +320us] +/- 39ms 2024-09-13T05:23:46.413 INFO:teuthology.orchestra.run.smithi153.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 91 -800us[ -769us] +/- 68ms 2024-09-13T05:23:46.413 INFO:teuthology.orchestra.run.smithi153.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 27 +344us[ +382us] +/- 67ms 2024-09-13T05:23:46.413 INFO:teuthology.orchestra.run.smithi153.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T05:23:46.413 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-13T05:23:46.439 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-13T05:23:46.439 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-13T05:23:46.452 DEBUG:teuthology.orchestra.run.smithi145:> 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-09-13T05:23:46.520 DEBUG:teuthology.orchestra.run.smithi151:> 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-09-13T05:23:46.583 DEBUG:teuthology.orchestra.run.smithi153:> 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-09-13T05:23:46.646 DEBUG:teuthology.orchestra.run.smithi145:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T05:23:46.676 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:23:46.677 DEBUG:teuthology.orchestra.run.smithi151:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T05:23:46.704 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:23:46.705 DEBUG:teuthology.orchestra.run.smithi153:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T05:23:46.732 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:23:46.733 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-13T05:23:46.742 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-13T05:23:46.789 INFO:teuthology.task.internal:Duration was 593.938154 seconds 2024-09-13T05:23:46.790 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-13T05:23:46.802 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-13T05:23:46.803 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-13T05:23:46.805 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-13T05:23:46.808 DEBUG:teuthology.orchestra.run.smithi153:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-13T05:23:46.845 INFO:teuthology.orchestra.run.smithi145.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T05:23:46.846 INFO:teuthology.orchestra.run.smithi151.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T05:23:46.848 INFO:teuthology.orchestra.run.smithi153.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T05:23:47.387 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-13T05:23:47.388 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi145.front.sepia.ceph.com 2024-09-13T05:23:47.388 DEBUG:teuthology.orchestra.run.smithi145:> 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-09-13T05:23:47.410 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi151.front.sepia.ceph.com 2024-09-13T05:23:47.410 DEBUG:teuthology.orchestra.run.smithi151:> 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-09-13T05:23:47.438 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi153.front.sepia.ceph.com 2024-09-13T05:23:47.438 DEBUG:teuthology.orchestra.run.smithi153:> 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-09-13T05:23:47.463 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-13T05:23:47.463 DEBUG:teuthology.orchestra.run.smithi145:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-13T05:23:47.466 DEBUG:teuthology.orchestra.run.smithi151:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-13T05:23:47.481 DEBUG:teuthology.orchestra.run.smithi153:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-13T05:23:47.531 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-13T05:23:47.532 DEBUG:teuthology.orchestra.run.smithi145:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-13T05:23:47.534 DEBUG:teuthology.orchestra.run.smithi151:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-13T05:23:47.548 DEBUG:teuthology.orchestra.run.smithi153:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-13T05:23:47.681 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-13T05:23:47.691 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-13T05:23:47.691 DEBUG:teuthology.orchestra.run.smithi145:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-13T05:23:47.716 DEBUG:teuthology.orchestra.run.smithi151:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-13T05:23:47.741 DEBUG:teuthology.orchestra.run.smithi153:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-13T05:23:47.766 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-13T05:23:47.774 DEBUG:teuthology.orchestra.run.smithi145:> 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-09-13T05:23:47.777 DEBUG:teuthology.orchestra.run.smithi151:> 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-09-13T05:23:47.783 DEBUG:teuthology.orchestra.run.smithi153:> 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-09-13T05:23:47.798 INFO:teuthology.orchestra.run.smithi145.stdout:kernel.core_pattern = core 2024-09-13T05:23:47.803 INFO:teuthology.orchestra.run.smithi151.stdout:kernel.core_pattern = core 2024-09-13T05:23:47.829 INFO:teuthology.orchestra.run.smithi153.stdout:kernel.core_pattern = core 2024-09-13T05:23:47.867 DEBUG:teuthology.orchestra.run.smithi145:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-13T05:23:47.882 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:23:47.882 DEBUG:teuthology.orchestra.run.smithi151:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-13T05:23:47.896 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:23:47.897 DEBUG:teuthology.orchestra.run.smithi153:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-13T05:23:47.922 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T05:23:47.922 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-13T05:23:47.931 INFO:teuthology.task.internal:Transferring archived files... 2024-09-13T05:23:47.932 DEBUG:teuthology.misc:Transferring archived files from smithi145:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114/remote/smithi145 2024-09-13T05:23:47.932 DEBUG:teuthology.orchestra.run.smithi145:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-13T05:23:47.967 DEBUG:teuthology.misc:Transferring archived files from smithi151:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114/remote/smithi151 2024-09-13T05:23:47.967 DEBUG:teuthology.orchestra.run.smithi151:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-13T05:23:48.000 DEBUG:teuthology.misc:Transferring archived files from smithi153:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-13_05:00:55-orch:cephadm-wip-guits-main-2024-09-12-1245-distro-default-smithi/7903114/remote/smithi153 2024-09-13T05:23:48.000 DEBUG:teuthology.orchestra.run.smithi153:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-13T05:23:48.034 INFO:teuthology.task.internal:Removing archive directory... 2024-09-13T05:23:48.034 DEBUG:teuthology.orchestra.run.smithi145:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-13T05:23:48.037 DEBUG:teuthology.orchestra.run.smithi151:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-13T05:23:48.039 DEBUG:teuthology.orchestra.run.smithi153:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-13T05:23:48.083 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-13T05:23:48.094 INFO:teuthology.task.internal:Not uploading archives. 2024-09-13T05:23:48.094 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-13T05:23:48.109 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-13T05:23:48.109 DEBUG:teuthology.orchestra.run.smithi145:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-13T05:23:48.111 DEBUG:teuthology.orchestra.run.smithi151:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-13T05:23:48.113 DEBUG:teuthology.orchestra.run.smithi153:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-13T05:23:48.124 INFO:teuthology.orchestra.run.smithi145.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 13 05:23 /home/ubuntu/cephtest 2024-09-13T05:23:48.126 INFO:teuthology.orchestra.run.smithi151.stdout: 265519 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 13 05:23 /home/ubuntu/cephtest 2024-09-13T05:23:48.138 INFO:teuthology.orchestra.run.smithi153.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 13 05:23 /home/ubuntu/cephtest 2024-09-13T05:23:48.139 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-13T05:23:48.151 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-13T05:23:48.188 INFO:teuthology.run:Summary data: description: orch:cephadm/workunits/{0-distro/centos_9.stream agent/on mon_election/connectivity task/test_host_drain} duration: 593.9381539821625 failure_reason: 'Command failed on smithi145 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:9d608eb13dd49ee7b4b1637dbcf4f78b31ddd3d3 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e34a8208-718f-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4''' flavor: default owner: scheduled_gabrioux@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=6d82321302b54dbd9d8f0192eea9d3f2 status: fail success: false 2024-09-13T05:23:48.189 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-13T05:23:48.267 INFO:teuthology.run:FAIL