티스토리 뷰
SshExec
Description
since Ant 1.6
Runs a command on a remote machine running SSH daemon.
Note: This task depends on external libraries not included in the Ant distribution. See Library Dependencies for more information. This task has been tested with jsch-0.1.7 to jsch-0.1.9 and won't work with versions of jsch earlier than 0.1.7.
Parameters
| Attribute | Description | Required |
| host | The hostname or |
Yes |
| username | The username on the remote host to which you are connecting. | Yes |
| command | The command to run on the remote host. | Yes |
| port | The port to connect to on the remote host. | No, defaults to 22. |
| trust | This trusts all unknown hosts if set to yes/true. Note If you set this to false (the default), the host you connect to must be listed in your knownhosts file, this also implies that the file exists. |
No, defaults to No. |
| knownhosts | This sets the known hosts file to use to validate the identity of the remote host. This must be a SSH2 format file. SSH1 format is not supported. | No, defaults to ${user.home}/.ssh/known_hosts. |
| failonerror | Whether to halt the build if the command does not complete successfully. | No; defaults to true. |
| password | The password. | Not if you are using key based authentication or the password has been given in the file or todir attribute. |
| keyfile | Location of the file holding the private key. | Yes, if you are using key based authentication. |
| passphrase | Passphrase for your private key. | No, defaults to an empty string. |
| output | Name of a file to which to write the output. | No |
| append | Whether output file should be appended to or overwritten. Defaults to false, meaning overwrite any existing file. | No |
| outputproperty | The name of a property in which the output of the command should be stored. | No |
| timeout | Stop the command if it doesn't finish within the specified time (given in milliseconds). Defaults to 0 which means "wait forever". | No |
Examples
Run a command on a remote machine using password authentication
<sshexec host="somehost" username="dude" password="yo" command="touch somefile"/>
Run a command on a remote machine using key authentication
<sshexec host="somehost"
username="dude"
keyfile="${user.home}/.ssh/id_dsa"
passphrase="yo its a secret"
command="touch somefile"/>
Run a command on a remote machine using key authentication with no passphrase
<sshexec host="somehost"
username="dude"
keyfile="${user.home}/.ssh/id_dsa"
command="touch somefile"/>
Security Note: Hard coding passwords and/or usernames in sshexec task can be a serious security hole. Consider using variable substitution and include the password on the command line. For example:
<sshexec host="somehost"
username="${username}"
password="${password}"
command="touch somefile"/>
Invoke ant with the following command line:ant -Dusername=me -Dpassword=mypassword target1 target2
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- jQuery
- ERwin
- wii wi-fi 51330
- 커플링
- tomcat
- 아디다시
- java 엑셀
- 간식송
- erwin Schema Generation 시 필드 순서
- oracle
- imagemagick
- 이미지리사이즈
- 기아짤방
- 김치송
- Java
- ie6과 ie7 같이 사용하기 multi ie
- Ant
- 공인구
- 구글수표
- svn
- MySQL
- 연도
- trac
- log4j
- JEUS
- 자블라니
- 한글유니코드
- eclipse plugin
- TinyMCE
- CSS
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
글 보관함