The vardir/rim directory fills up. There is no space left on device; there is only has additional space in separate location.
解决办法
You can move the contents of the rim directory to a file system where there is sufficient available space and create a soft link to this directory or you can add more space to the same mount point.
Here is an example of how to move contents of /rim directory and create a link to the new location in an emergency:
1. Shutdown Shareplex 2. tar the contents of the /rim subdirectory # tar -cf rim.tar ./rim 3. Move the tar file to the new location # mv rim.tar /opt 4. untar the contents of the tar file # tar -xvf rim.tar 5. Remove the tar file # rm rim.tar 6. cd to the /rim directory # cd rim 7. Remove the original /rim directory # rm -rf rim 8. cd to the $vardir directory to create link to new /rim directory: (as root) # ln -s /opt/rim /vardir/rim 9. Change ownerships of the new directory same as the old rim directory. 10. Startup Shareplex