Troubleshooting: Volumes stuck at deleting

From Define Wiki
Revision as of 09:45, 5 July 2019 by K mouza (talk | contribs) (Created page with "If a volume is stuck at a deleting state, we can manually delete is from the mariadb database with the following query: MariaDB [cinder]> update volumes set deleted=1,status=...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

If a volume is stuck at a deleting state, we can manually delete is from the mariadb database with the following query:

MariaDB [cinder]> update volumes set deleted=1,status='deleted',deleted_at=now(),updated_at=now() where deleted=0 and id='$volume_uuid'