Difference between revisions of "Unable to Stop or Remove File System"
Jump to navigation
Jump to search
(Created page with "This is usually caused by a left over mount in the Chroma database. You need to enter psql and checdk the status on and left over client mounts. <syntaxhighlight> su postgres psql chrom...") |
(No difference)
|
Revision as of 15:50, 10 August 2015
This is usually caused by a left over mount in the Chroma database.
You need to enter psql and checdk the status on and left over client mounts.
su postgres
psql chroma -U chroma
select * from chroma_core_lustreclientmount;If this returns a / some entries this is most likely what is causing the fs to fail to stop.
Issue the below to remove it.
update chroma_core_lustreclientmount set state='removed';
/q #To quitRestart chroma-supervisor on the IML and then you should be able to stop the file system.