Brunda10 commented on issue #51304: URL: https://github.com/apache/airflow/issues/51304#issuecomment-3118638061
This happens because Airflow 3.x uses SimpleAuthManager as the default auth manager, which does not support the airflow users CLI command. Even if you try to use FabAuthManager, the system may override it back to SimpleAuthManager—especially in dev setups (like Breeze or standalone mode), where the environment is explicitly set or forced during container startup. To fix this and re-enable the users CLI, you need to explicitly set the following environment variable: export AIRFLOW__CORE__AUTH_MANAGER=airflow.providers.fab.auth_manager.fab_auth_manager.FabAuthManager and restarting the breeze environment <img width="1842" height="567" alt="Image" src="https://github.com/user-attachments/assets/743dd1df-95f8-440c-856c-4ddcf6c746e9" /> <img width="1263" height="579" alt="Image" src="https://github.com/user-attachments/assets/f6db6bd8-7561-4d5e-8047-333e48dee536" /> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org