# Pastebin 8UVm9IJt Hi friends. I have an issue when installing manila. when I try to install manila using kolla-ansible with cephfs native driver and dhss = false, the manila_share container is unhealthy, even though it can connect to the ceph backend successfully as logged in the manila_share container: INFO manila.share.drivers.cephfs.driver [None req-4a245522-0459-420d-8be8-92f9f19b518d - - - - - -] [CEPHFS1] Ceph client connection complete. the issue is that once it registers cephfsnative backend as a share service in the manila database, it cannot update its state in the database and it shows: openstack share service list +----+------------------+----------------------------+------+---------+-------+----------------------------+-----------------+ | ID | Binary | Host | Zone | Status | State | Updated At | Disabled Reason | +----+------------------+----------------------------+------+---------+-------+----------------------------+-----------------+ | 1 | manila-data | controller01 | nova | enabled | up | 2025-10-18T06:59:15.147804 | None | | 2 | manila-scheduler | controller01 | nova | enabled | up | 2025-10-18T06:59:17.268280 | None | | 3 | manila-share | controller01@cephfsnative1 | nova | enabled | up | None | None | +----+------------------+----------------------------+------+---------+-------+----------------------------+-----------------+ its "Updated At" column shows None, which means it couldn't update its state properly. when creating a share using cephfs type, I get the following error in manila_scheduler: WARNING manila.scheduler.host_manager [None req-781c0b10-68df-45e1-9da2-88024443fe31 f8e503ad2c134bee9a1ea8b75bdbfbfd d4954b315a50489392398e38372ad06d - - - -] Share service is down. (host: controller01@cephfsnative1). ERROR manila.scheduler.manager [None req-781c0b10-68df-45e1-9da2-88024443fe31 f8e503ad2c134bee9a1ea8b75bdbfbfd d4954b315a50489392398e38372ad06d - - - -] Failed to schedule create_share: There are no hosts to fulfill this provisioning request. Are share backend services down?: manila.exception.WillNotSchedule: There are no hosts to fulfill this provisioning request. Are share backend services down? I appreciate your help in advance.