Changes between Version 16 and Version 17 of PS1_IPP_Czarlog_20190426
- Timestamp:
- May 1, 2019, 3:31:07 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PS1_IPP_Czarlog_20190426
v16 v17 668 668 The compute nodes require a specific set of files to be on them and some 'tmp' directories to temporarily store data while processing. The general process is copy across all the static files that are needeed, then sort out all the links between the drives and '/local/' 669 669 670 First sure there is an ipp directory to put things in on volume .0, then rsync across the data files required(and set permissions):670 Make sure there is an ipp directory to put things in on volume .0, then rsync the data across to it(and set permissions): 671 671 {{{ 672 672 mkdir -p /export/`hostname`.0/ipp 673 673 rsync -auv /data/ippc64.0/ipp/ /export/`hostname`.0/ipp 674 }}} 675 Then make sure the permissions are set for the ipp dir on vol 0 676 {{{ 674 677 chown -R ipp:users /export/`hostname`.0/ipp 675 678 chmod -R 775 /export/`hostname`.0/ipp 676 679 }}} 677 680 678 Then, replace the symlink for ' tmp' in the /local/ directory to point to volume .0:679 {{{ 680 rm /local/ipp /tmp681 Then, replace the symlink for 'ipp' in the /local/ directory to point to volume .0: 682 {{{ 683 rm /local/ipp 681 684 ln -s /export/`hostname`.0/ipp /local/ipp 682 685 }}} 683 686 684 Finally, make a 'tmp' directory on volume .1,and have the 'tmp' dir from .0 link to it.687 Finally, make the tmp directory on .1, and have the and have the 'tmp' dir from .0 link to it. 685 688 {{{ 686 689 mkdir -p /export/`hostname`.1/ipp/tmp 687 chown -R ipp:users /export/`hostname`.1/ipp /tmp688 chmod -R 775 /export/`hostname`.1/ipp /tmp690 chown -R ipp:users /export/`hostname`.1/ipp 691 chmod -R 775 /export/`hostname`.1/ipp 689 692 ln -s /export/`hostname`.1/ipp/tmp /export/`hostname`.0/ipp/tmp 690 693 }}} 691 '''Note:''' the setup can be slightly different between nodes e.g.not all nodes have volume .1694 '''Note:''' the setup can be different, not all nodes have volume .1 692 695 693 696
