Checked/corrected mount point permissions with SA:
Code:
# umount /opt/IBM/db2
# pwd
/opt/IBM
# ls -ld db2
drwx------ 2 root system 256 Aug 24 10:20 db2
# chmod 755 db2
# ls -ld db2
drwxr-xr-x 2 root system 256 Aug 24 10:20 db2
# mount /opt/IBM/db2
# ls -ld db2
drwxr-xr-x 4 root system 256 Aug 24 13:48 db2
After making this change, bind works:
Code:
db2inst1@xxxx:/xxx/db2/db2inst1/sqllib/bnd> db2 bind db2schema.bnd
LINE MESSAGES FOR db2schema.bnd
------ --------------------------------------------------------------------
SQL0061W The binder is in progress.
SQL0091N Binding was ended with "0" errors and "0" warnings.
db2inst1@xxxx:/opt/IBM/db2/V9.5/bnd> db2 bind db2schema.bnd
LINE MESSAGES FOR db2schema.bnd
------ --------------------------------------------------------------------
SQL0061W The binder is in progress.
SQL0091N Binding was ended with "0" errors and "0" warnings.
Too bad I can't check mount point permissions myself. I can't find the command that will display this info when the FS is mounted. When it's mounted, all I see is the permissions on the dir, which showed 755. I found istat command here
underlying mount-points - Mombu the Programming Forum , but it doesn't seem to work. I saw 755 - same as dir permissions.