mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
QuickCloud: start console proxy service from mvn exec:java
This commit is contained in:
parent
e7983b25cc
commit
16790446e5
@ -27,7 +27,7 @@ under the License.
|
|||||||
|
|
||||||
<!-- A time/date based rolling appender -->
|
<!-- A time/date based rolling appender -->
|
||||||
<appender name="FILE" class="org.apache.log4j.DailyRollingFileAppender">
|
<appender name="FILE" class="org.apache.log4j.DailyRollingFileAppender">
|
||||||
<param name="File" value="/var/log/cloud/systemvm.log"/>
|
<param name="File" value="${log.home}systemvm.log"/>
|
||||||
<param name="Append" value="true"/>
|
<param name="Append" value="true"/>
|
||||||
<param name="Threshold" value="DEBUG"/>
|
<param name="Threshold" value="DEBUG"/>
|
||||||
|
|
||||||
|
|||||||
@ -254,6 +254,44 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>quickcloud</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>quickcloud</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
|
<version>1.2.1</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>java</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<mainClass>com.cloud.agent.AgentShell</mainClass>
|
||||||
|
<arguments>
|
||||||
|
<argument>zone=1</argument>
|
||||||
|
<argument>pod=1</argument>
|
||||||
|
<argument>host=192.168.56.1</argument>
|
||||||
|
</arguments>
|
||||||
|
<systemProperties>
|
||||||
|
<systemProperty>
|
||||||
|
<key>javax.net.ssl.trustStore</key>
|
||||||
|
<value>certs/realhostip.keystore</value>
|
||||||
|
</systemProperty>
|
||||||
|
</systemProperties>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user