posted 21 years ago
I am trying to deploy from a windows machine to a Linux box.
I have created an ear on my windows machine and am using the <wldeploy> task to deploy this ear on the Linux box.
The Linux box has WLS 8.1 installed on it. There are two servers running on the box under myDomain. One is the admin server(port 7001) and the other is the managed server(port 6666).
The following is the script that I have written for wldeploy
<target name="deploy">
<wldeploy action="deploy" source="myear.ear" name="myear" user="system" password="weblogic" adminurl="t3://${linux.server.ip}:7001" />
</target>
My questions are :
1. Will this work at all ? Can I deploy from a windows machine to a Linux box using <wldeploy> ?
2. Should the port mentioned in adminurl be 7001 or 6666 ?
Any help in this regard will be greatly appreciated.
Thanks in advance.
-Amber