Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Appendix A. Troubleshooting
A.1. Ansible stops installation because it detects less devices than expected
The Ansible automation application stops the installation process and returns the following error:
What this means:
					When the osd_auto_discovery parameter is set to true in the /usr/share/ceph-ansible/group_vars/osds.yml file, Ansible automatically detects and configures all the available devices. During this process, Ansible expects that all OSDs use the same devices. The devices get their names in the same order in which Ansible detects them. If one of the devices fails on one of the OSDs, Ansible fails to detect the failed device and stops the whole installation process.
				
Example situation:
- 
						Three OSD nodes (host1,host2,host3) use the/dev/sdb,/dev/sdc, anddev/sdddisks.
- 
						On host2, the/dev/sdcdisk fails and is removed.
- 
						Upon the next reboot, Ansible fails to detect the removed /dev/sdcdisk and expects that only two disks will be used forhost2,/dev/sdband/dev/sdc(formerly/dev/sdd).
- Ansible stops the installation process and returns the above error message.
To fix the problem:
					In the /etc/ansible/hosts file, specify the devices used by the OSD node with the failed disk (host2 in the Example situation above):
				
[osds] host1 host2 devices="[ '/dev/sdb', '/dev/sdc' ]" host3
[osds]
host1
host2 devices="[ '/dev/sdb', '/dev/sdc' ]"
host3See Chapter 5, Installing Red Hat Ceph Storage using Ansible for details.