rocks sync users 명령어 실행시 다음과 같은 에러가 발생하는 경우
/opt/rocks/sbin/411put --comment="#" /etc/auto.home
Warning: Your private interface (eth0) is down
Alert message will not be sent.
411 Wrote: /etc/411.d/etc.auto..home
Size: 490/185 bytes (encrypted/plain)
이 경우는 통상적으로 사용되는 eth0 를 사용하지 않는 경우 발생한다.
rocks 명령어들은 기본적으로 eth0를 통해 사설 노드들에 접근하여 명령어를 실행하도록 지정되어 있기 때문이다.
# /opt/rocks/bin/python -c "import gmon.Network ; print gmon.Network.interfaces()"
{'lo': '127.0.0.1/8', 'bond0.611': '192.168.12.48/20', 'bond0.303': '10.91.3.98/24'}
위와 같은 결과가 나타난다는 것은 eth0 대신하여 bond0.611 로 변경해주어야 한다.
in the file:
/opt/rocks/lib/python2.4/site-packages/rocks/net.py
change:
if 'eth0' in intfs:
return 'eth0'
to:
if 'bond0.611' in intfs:
return 'bond0.611'
then try 'rocks sync users'
(위와 같이 변경 후 처음 실행시 시간이 좀 걸릴 수 있음. 약 5분)
* rocks-discuss 에서 참고하였음.
/opt/rocks/sbin/411put --comment="#" /etc/auto.home
Warning: Your private interface (eth0) is down
Alert message will not be sent.
411 Wrote: /etc/411.d/etc.auto..home
Size: 490/185 bytes (encrypted/plain)
이 경우는 통상적으로 사용되는 eth0 를 사용하지 않는 경우 발생한다.
rocks 명령어들은 기본적으로 eth0를 통해 사설 노드들에 접근하여 명령어를 실행하도록 지정되어 있기 때문이다.
# /opt/rocks/bin/python -c "import gmon.Network ; print gmon.Network.interfaces()"
{'lo': '127.0.0.1/8', 'bond0.611': '192.168.12.48/20', 'bond0.303': '10.91.3.98/24'}
위와 같은 결과가 나타난다는 것은 eth0 대신하여 bond0.611 로 변경해주어야 한다.
in the file:
/opt/rocks/lib/python2.4/site-packages/rocks/net.py
change:
if 'eth0' in intfs:
return 'eth0'
to:
if 'bond0.611' in intfs:
return 'bond0.611'
then try 'rocks sync users'
(위와 같이 변경 후 처음 실행시 시간이 좀 걸릴 수 있음. 약 5분)
* rocks-discuss 에서 참고하였음.
'TA > Cluster' 카테고리의 다른 글
[drmaa] drmaa qsub bash (kimps_drmaaQsub_sh.py) (0) | 2012.12.24 |
---|---|
[drmaa] drmaa qsub python (kimps_drmaaQsub_py.py) (0) | 2012.12.24 |
[sge] 특정 노드에 job 할당하는 방법 (0) | 2011.06.13 |
[rocks] rocks clusters 설치 (5.1) (0) | 2011.06.13 |
[sge] SGE에서 qsub 될 때 bashrc, bash_profile 같은 환경변수 안고 가는 방법 (0) | 2011.05.25 |