Originally from the User Slack
@Keith_Mciff: Hey folks. I am trying to run iosetup and I get this error
ERROR:root:['/data/data', '/data/commitlog', '/data/hints', '/data/view_hints'] did not pass validation tests, it may not be on XFS and/or has limited disk space.
and if but the directories are there and I even used chmod 777 to see if it was some kind of permissions issue
[user@XXX ~]$ ls -ltr /data
total 0
drwxrwxrwx. 2 tmdba dba 6 Dec 17 22:25 commitlog
drwxrwxrwx. 2 tmdba dba 6 Dec 17 22:25 data
drwxrwxrwx. 2 tmdba dba 6 Dec 17 22:25 saved_caches
drwxrwxrwx. 2 tmdba dba 6 Dec 17 22:25 hints
drwxrwxrwx. 2 tmdba dba 6 Dec 17 22:25 view_hints
Any suggestions where I can check next for the problem?
@Jethro: What is the output of the following commands;
mount | grep '/data'
and:
df -h /data
@Keith_Mciff:
XXXX] mount | grep '/data'
/dev/nvme1n1 on /data type xfs (rw,relatime,seclabel,attr2,inode64,logbufs=8,logbsize=32k,noquota)
XXX~]$ df -h /data
Filesystem Size Used Avail Use% Mounted on
/dev/nvme1n1 3.5T 25G 3.4T 1% /data
@Jethro: hmm thats look good to me. And
ls -lah / | grep data
just to check if /data
has the correct user/group?
@Keith_Mciff: yeah. we were able to solve the issue with sudo sysctl -w fs.aio-max-nr=1048576
It’s not a very good error message but after lots of google we found something on seastar with that error and solution