0

リモートサーバー(myservername.com)にデプロイするようにoracle mavenコマンドをセットアップしました。

    <plugin>
        <!-- This is the configuration for the weblogic-maven-plugin -->
        <groupId>com.oracle.weblogic</groupId>
        <artifactId>weblogic-maven-plugin</artifactId>
        <version>12.1.2-0-0</version>
        <configuration>
             <adminurl>t3://myservername.com:7001</adminurl>
             <user>test</user>
             <password>test1</password>
             <upload>true</upload>
             <remote>true</remote>
             <targets>AdminServer</targets>
             <verbose>true</verbose>
             <source>${project.build.directory}/${project.build.finalName}</source>
             <name>${project.build.finalName}</name>
        </configuration>
        <executions>
            <execution>
            <!-- Deploy the application -->
                <id>wls-deploy</id>
                <phase>pre-integration-test</phase>
                <goals> 
                    <goal>deploy</goal>
                </goals>
            </execution>
            <!-- Stop the application in the pre-integration-test phase -->
            <execution>
                <id>wls-stop-app</id>
                <phase>pre-integration-test</phase>
                <goals>
                    <goal>stop-app</goal>
                </goals>
            </execution>
            <!-- start servicing all requests -->
            <execution>
                <id>wls-start-app</id>
                <phase>pre-integration-test</phase>
                <goals>
                    <goal>start-app</goal>
                </goals>
            </execution>    
        </executions>
    </plugin>

次のエラーが表示されます。loacalhost に接続しようとしていますが、localhost でサーバーを実行していません。上記のように管理 URL を既に設定しています。

[エラー] プロジェクト myproject-web でゴール com.oracle.weblogic:weblogic-maven-plugin:12.1.2-0-0:deploy (wls-deploy) を実行できませんでした: weblogic.Deployer$DeployerException: weblogic.dep loy. api.tools.deployer.DeployerException: ' t3://localhost:7001 ' に接続できません: 宛先 127.0.0.1、7001 に到達できません。ネストされた例外は次のとおりです。

プラグインをリモート サーバーにデプロイするにはどうすればよいですか?

4

0 に答える 0