Managing Serviceguard Extension for SAP, December 2007
Step-by-Step Cluster Conversion
HP-UX Configuration
Chapter 3 123
IS065 Installation Step:
If failover nodes have no internal application server with local
executables installed, distribute the directory tree /usr/sap/<SID>/SYS
from the primary node. Do not use rcp(1), it will follow all links and copy
a lot of files from the shared disks that are not needed.
For example, on the primary node:
cd /usr/sap/<SID>/SYS
find . -depth -print | cpio -o >/tmp/SYS.cpio
Use ftp(1) to copy the file over to the secondary node. On each alternate
node:
su - <sid>adm
mkdir -p /usr/sap/<SID>/SYS
cd /usr/sap/<SID>/SYS
cpio -id </tmp/SYS.cpio
exit