Skip to content

Commit eda3b35

Browse files
CLOUDSTACK-10012: Migrate to Embedded Jetty
- Migrate to embedded Jetty server. - Improve ServerDaemon implementation. - Introduce a new server.properties file for easier configuration. - Have a single /etc/default/cloudstack-management to configure env. - Reduce shaded jar file, removing unnecessary dependencies. - Upgrade to Spring 5.x, upgrade several jar dependencies. - Does not shade and include mysql-connector, used from classpath instead. - Upgrade and use bountcastle as a separate un-shaded jar dependency. - Remove tomcat related configuration and files. - Have both embedded UI assets in uber jar and separate webapp directory. - Refactor systemd and init scripts, cleanup packaging. - Made cloudstack-setup-databases faster, using `urandom`. - Remove unmaintained distro packagings. - Moves creation and usage of server keystore in CA manager, this deprecates the need to create/store cloud.jks in conf folder and the db.cloud.keyStorePassphrase in db.properties file. This also remove the need of the --keystore-passphrase in the cloudstack-setup-encryption script. - GZip contents dynamically in embedded Jetty Signed-off-by: Rohit Yadav <[email protected]>
1 parent e9f29c7 commit eda3b35

File tree

124 files changed

+767
-9307
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+767
-9307
lines changed

INSTALL.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ was tested against a CentOS 6.5 x86_64 setup.
1515
Install tools and dependencies used for development:
1616

1717
$ yum install git ant ant-devel java-1.6.0-openjdk java-1.6.0-openjdk-devel
18-
mysql mysql-server tomcat6 mkisofs gcc python MySQL-python openssh-clients wget
18+
mysql mysql-server mkisofs gcc python MySQL-python openssh-clients wget
1919

2020
# yum -y update
2121
# yum -y install java-1.7.0-openjdk
@@ -124,7 +124,6 @@ To create debs install the following extra packages:
124124

125125
# apt-get -y install python-mysqldb
126126
# apt-get -y install debhelper
127-
# apt-get -y install tomcat6
128127

129128
Then:
130129

@@ -138,7 +137,6 @@ All the deb packages will be located one level down.
138137
To create rpms, install the following extra packages:
139138

140139
# yum -y install rpm-build
141-
# yum -y install tomcat6
142140
# yum -y install ws-commons-util
143141
# yum -y instal gcc
144142
# yum -y install glibc-devel

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ For more information on Apache CloudStack, please visit the [website](http://clo
4242

4343
Apache CloudStack project uses Git. The official Git repository is at:
4444

45-
https://git-wip-us.apache.org/repos/asf/cloudstack.git
45+
https://gitbox.apache.org/repos/asf/cloudstack.git
4646

4747
And a mirror is hosted on Github:
4848

build/replace.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ AGENTLOG=logs/agent.log
2727
MSMNTDIR=/mnt
2828
COMPONENTS-SPEC=components.xml
2929
REMOTEHOST=localhost
30-
COMMONLIBDIR=client/target/cloud-client-ui-4.7.0/WEB-INF/lib/
30+
COMMONLIBDIR=client/target/common/

client/WEB-INF/web.xml

+17-34
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,20 @@
1919
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2020
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
2121
version="2.5">
22-
23-
<context-param>
24-
<param-name>log4jConfigLocation</param-name>
25-
<param-value>classpath:log4j-cloud.xml</param-value>
26-
</context-param>
27-
<listener>
28-
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
29-
</listener>
30-
31-
<listener>
32-
<listener-class>org.apache.cloudstack.spring.module.web.CloudStackContextLoaderListener</listener-class>
33-
</listener>
22+
3423
<context-param>
35-
<param-name>contextConfigLocation</param-name>
36-
<param-value>classpath:META-INF/cloudstack/webApplicationContext.xml</param-value>
24+
<param-name>log4jConfigLocation</param-name>
25+
<param-value>classpath:log4j-cloud.xml</param-value>
3726
</context-param>
38-
27+
28+
<listener>
29+
<listener-class>org.apache.cloudstack.spring.module.web.CloudStackContextLoaderListener</listener-class>
30+
</listener>
31+
<context-param>
32+
<param-name>contextConfigLocation</param-name>
33+
<param-value>classpath:META-INF/cloudstack/webApplicationContext.xml</param-value>
34+
</context-param>
35+
3936
<servlet>
4037
<servlet-name>cloudStartupServlet</servlet-name>
4138
<servlet-class>com.cloud.servlet.CloudStartupServlet</servlet-class>
@@ -47,40 +44,26 @@
4744
<servlet-class>com.cloud.api.ApiServlet</servlet-class>
4845
<load-on-startup>5</load-on-startup>
4946
</servlet>
50-
47+
5148
<servlet>
5249
<servlet-name>consoleServlet</servlet-name>
5350
<servlet-class>com.cloud.servlet.ConsoleProxyServlet</servlet-class>
5451
<load-on-startup>6</load-on-startup>
5552
</servlet>
56-
5753

58-
<servlet>
59-
<servlet-name>staticResources</servlet-name>
60-
<servlet-class>com.cloud.servlet.StaticResourceServlet</servlet-class>
61-
</servlet>
62-
6354
<servlet-mapping>
6455
<servlet-name>apiServlet</servlet-name>
6556
<url-pattern>/api/*</url-pattern>
6657
</servlet-mapping>
67-
68-
<servlet-mapping>
69-
<servlet-name>consoleServlet</servlet-name>
70-
<url-pattern>/console</url-pattern>
71-
</servlet-mapping>
72-
7358

7459
<servlet-mapping>
75-
<servlet-name>staticResources</servlet-name>
76-
<url-pattern>*.css</url-pattern>
77-
<url-pattern>*.html</url-pattern>
78-
<url-pattern>*.js</url-pattern>
60+
<servlet-name>consoleServlet</servlet-name>
61+
<url-pattern>/console</url-pattern>
7962
</servlet-mapping>
8063

8164
<error-page>
82-
<exception-type>java.lang.Exception</exception-type>
83-
<location>/error.html</location>
65+
<exception-type>java.lang.Exception</exception-type>
66+
<location>/error.html</location>
8467
</error-page>
8568

8669
</web-app>

client/bindir/cloud-setup-management.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ if __name__ == '__main__':
2929

3030
parser = OptionParser()
3131
parser.add_option("--https", action="store_true", dest="https", help="Enable HTTPs connection of management server")
32-
parser.add_option("--tomcat7", action="store_true", dest="tomcat7", help="Use Tomcat7 configuration files in Management Server")
32+
parser.add_option("--tomcat7", action="store_true", dest="tomcat7", help="Depreciated option, don't use it")
3333
parser.add_option("--no-start", action="store_true", dest="nostart", help="Do not start management server after successful configuration")
3434
(options, args) = parser.parse_args()
3535
if options.https:
3636
glbEnv.svrMode = "HttpsServer"
3737
if options.tomcat7:
38-
glbEnv.svrConf = "Tomcat7"
38+
print "The --tomcat7 option is deprecated, CloudStack now uses embedded Jetty server."
3939
if options.nostart:
4040
glbEnv.noStart = True
4141

client/tomcatconf/commons-logging.properties.in client/conf/commons-logging.properties.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
# under the License.
1818
#
1919

20-
# This is the logging properties that goes to the war, there are two logging conf kept at the
20+
# This is the logging properties that goes to the war, there are two logging conf kept at the
2121
# svn, one for developement (one at src/test-resources) and other for producation
22-
22+
2323
# Uncomment the next line to disable all logging.
2424
#org.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog
2525

client/tomcatconf/db.properties.in client/conf/db.properties.in

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# to you under the Apache License, Version 2.0 (the
66
# "License"); you may not use this file except in compliance
77
# with the License. You may obtain a copy of the License at
8-
#
8+
#
99
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
10+
#
1111
# Unless required by applicable law or agreed to in writing,
1212
# software distributed under the License is distributed on an
1313
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -16,7 +16,7 @@
1616
# under the License.
1717

1818
# management server clustering parameters, change cluster.node.IP to the machine IP address
19-
# in which the management server(Tomcat) is running
19+
# in which the management server is running
2020
cluster.node.IP=127.0.0.1
2121
cluster.servlet.port=9090
2222
region.id=1
@@ -47,7 +47,6 @@ db.cloud.keyStore=
4747
db.cloud.keyStorePassword=
4848
db.cloud.trustStore=
4949
db.cloud.trustStorePassword=
50-
db.cloud.keyStorePassphrase=vmops.com
5150

5251
# Encryption Settings
5352
db.cloud.encryption.type=none

client/tomcatconf/ehcache.xml.in client/conf/ehcache.xml.in

+13-13
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
CacheManager Configuration
2424
==========================
2525
An ehcache.xml corresponds to a single CacheManager.
26-
26+
2727
See instructions below or the ehcache schema (ehcache.xsd) on how to configure.
2828

2929
System property tokens can be specified in this file which are replaced when the configuration is loaded.
@@ -143,7 +143,7 @@ under the License.
143143

144144
The hostname is the hostname of the remote CacheManager peer. The port is the listening
145145
port of the RMICacheManagerPeerListener of the remote CacheManager peer.
146-
146+
147147
Configuring JGroups replication:
148148
<cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.jgroups.JGroupsCacheManagerPeerProviderFactory"
149149
properties="connect=UDP(mcast_addr=231.12.21.132;mcast_port=45566;ip_ttl=32;
@@ -160,7 +160,7 @@ under the License.
160160
/>
161161
The only property necessay is the connect String used by jgroups to configure itself. Refer to the Jgroups documentation for explanation
162162
of all the protocols. The example above uses UDP multicast. If the connect property is not specified the default JGroups connection will be
163-
used.
163+
used.
164164

165165
-->
166166
<cacheManagerPeerProviderFactory
@@ -266,7 +266,7 @@ under the License.
266266
to this area and then asynchronously written to disk. The default size is 30MB.
267267
Each spool buffer is used only by its cache. If you get OutOfMemory errors consider
268268
lowering this value. To improve DiskStore performance consider increasing it. Trace level
269-
logging in the DiskStore will show if put back ups are occurring.
269+
logging in the DiskStore will show if put back ups are occurring.
270270

271271
memoryStoreEvictionPolicy:
272272
Policy would be enforced upon reaching the maxElementsInMemory limit. Default
@@ -332,9 +332,9 @@ under the License.
332332
For the Jgroups replication this is done with:
333333
<cacheEventListenerFactory class="net.sf.ehcache.distribution.jgroups.JGroupsCacheReplicatorFactory"
334334
properties="replicateAsynchronously=true, replicatePuts=true,
335-
replicateUpdates=true, replicateUpdatesViaCopy=false,
336-
replicateRemovals=true,asynchronousReplicationIntervalMillis=1000"/>
337-
This listener supports the same property than the RMICacheReplicationFactory.
335+
replicateUpdates=true, replicateUpdatesViaCopy=false,
336+
replicateRemovals=true,asynchronousReplicationIntervalMillis=1000"/>
337+
This listener supports the same property than the RMICacheReplicationFactory.
338338

339339
Cluster Bootstrapping
340340

@@ -435,7 +435,7 @@ under the License.
435435
disk cache, which in this configuration will go to wherever java.io.tmp is
436436
defined on your system. On a standard Linux system this will be /tmp"
437437
-->
438-
<!--
438+
<!--
439439
<cache name="sampleCache1"
440440
maxElementsInMemory="10000"
441441
maxElementsOnDisk="1000"
@@ -455,7 +455,7 @@ under the License.
455455
is also the maximum cache size. Note that when a cache is eternal, timeToLive and
456456
timeToIdle are not used and do not need to be specified.
457457
-->
458-
<!--
458+
<!--
459459
<cache name="sampleCache2"
460460
maxElementsInMemory="1000"
461461
eternal="true"
@@ -470,7 +470,7 @@ under the License.
470470
persistent between cache and VM restarts. The disk expiry thread interval is set to 10
471471
minutes, overriding the default of 2 minutes.
472472
-->
473-
<!--
473+
<!--
474474
<cache name="sampleCache3"
475475
maxElementsInMemory="500"
476476
eternal="false"
@@ -489,7 +489,7 @@ under the License.
489489
This cache replicates using defaults.
490490
It also bootstraps from the cluster, using default properties.
491491
-->
492-
<!--
492+
<!--
493493
<cache name="sampleDistributedCache1"
494494
maxElementsInMemory="10"
495495
eternal="false"
@@ -509,7 +509,7 @@ under the License.
509509
This cache replicates using specific properties.
510510
It only replicates updates and does so synchronously via copy
511511
-->
512-
<!--
512+
<!--
513513
<cache name="sampleDistributedCache2"
514514
maxElementsInMemory="10"
515515
eternal="false"
@@ -529,7 +529,7 @@ under the License.
529529
This cache replicates using defaults except that the asynchronous replication
530530
interval is set to 200ms.
531531
-->
532-
<!--
532+
<!--
533533
<cache name="sampleDistributedCache3"
534534
maxElementsInMemory="10"
535535
eternal="false"

client/tomcatconf/environment.properties.in client/conf/environment.properties.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# to you under the Apache License, Version 2.0 (the
66
# "License"); you may not use this file except in compliance
77
# with the License. You may obtain a copy of the License at
8-
#
8+
#
99
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
10+
#
1111
# Unless required by applicable law or agreed to in writing,
1212
# software distributed under the License is distributed on an
1313
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY

client/tomcatconf/log4j-cloud.xml.in client/conf/log4j-cloud.xml.in

+8-8
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ under the License.
3838
<param name="ConversionPattern" value="%d{ISO8601} %-5p [%c{1.}] (%t:%x) (logid:%X{logcontextid}) %m%n"/>
3939
</layout>
4040
</appender>
41-
41+
4242
<appender name="APISERVER" class="org.apache.log4j.rolling.RollingFileAppender">
4343
<param name="Append" value="true"/>
4444
<param name="Threshold" value="DEBUG"/>
@@ -111,19 +111,19 @@ under the License.
111111
<category name="com.cloud">
112112
<priority value="DEBUG"/>
113113
</category>
114-
114+
115115
<category name="org.apache.cloudstack">
116116
<priority value="DEBUG"/>
117117
</category>
118-
118+
119119
<category name="org.apache.cloudstack">
120120
<priority value="DEBUG"/>
121121
</category>
122122

123123
<category name="com.cloud.utils.nio">
124124
<priority value="INFO"/>
125125
</category>
126-
126+
127127
<!-- Limit the org.apache category to INFO as its DEBUG is verbose -->
128128
<category name="org.apache">
129129
<priority value="INFO"/>
@@ -136,19 +136,19 @@ under the License.
136136
<category name="org.apache.cloudstack.api.command">
137137
<priority value="TRACE"/>
138138
</category>
139-
139+
140140
<category name="org">
141141
<priority value="INFO"/>
142142
</category>
143-
143+
144144
<category name="org.springframework">
145145
<priority value="WARN"/>
146146
</category>
147-
147+
148148
<category name="org.apache.cloudstack.spring.module.context.ResourceApplicationContext">
149149
<priority value="WARN"/>
150150
</category>
151-
151+
152152
<category name="net">
153153
<priority value="INFO"/>
154154
</category>

packaging/fedora21/cloudstack-sccs client/conf/server.properties.in

+24-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/bin/sh
2-
31
# Licensed to the Apache Software Foundation (ASF) under one
42
# or more contributor license agreements. See the NOTICE file
53
# distributed with this work for additional information
@@ -17,4 +15,27 @@
1715
# specific language governing permissions and limitations
1816
# under the License.
1917

20-
cat /usr/share/cloudstack-common/scripts/gitrev.txt
18+
# The binding interface for the management server
19+
bind.interface=
20+
21+
# The service context path where URL requests should be served
22+
context.path=/client
23+
24+
# The HTTP port to be used by the management server
25+
http.port=8080
26+
27+
# Options to configure and enable HTTPS on management server
28+
#
29+
# For management server to pickup these configuration settings, the configured
30+
# keystore file should exists and be readable by the management server.
31+
https.enable=false
32+
https.port=8443
33+
# The keystore and manager passwords are assumed to be same.
34+
https.keystore=/etc/cloudstack/management/cloud.jks
35+
https.keystore.password=vmops.com
36+
37+
# The path to webapp directory
38+
webapp.dir=/usr/share/cloudstack-management/webapp
39+
40+
# The path to access log file
41+
access.log=/var/log/cloudstack/management/access.log

0 commit comments

Comments
 (0)