On Amazon EFS filesystem I am trying to stage the Oracle EBS 12.2 software
Received the following error when staging the software using buildStage.sh
Error: no `server' JVM at `/software/EbsStage/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/lib/i386/server/libjvm.so'.
Press Enter to continue ...
Reason
EFS filesystem uses inode64 but the software is looking for inode32 filesystem.
The same issue can also occur on XFS filesystem larger than 1 TB. In that case you can use "inode64" in /etc/fstab and remount the filesystem. But for mounting NFS filesystem there is no inode64 option.
Fix:
$ echo "options nfs enable_ino64=0" > /etc/modprobe.d/nfs.conf
Ref:
https://access.redhat.com/solutions/22256
https://www.mjr19.org.uk/sw/inodes64.html
No comments:
Post a Comment