diff options
author | j00302280 <j00101220@huawei.com> | 2016-09-26 12:56:23 +0800 |
---|---|---|
committer | j00302280 <j00101220@huawei.com> | 2016-09-26 12:56:23 +0800 |
commit | 4aa52a79592d54605ebb1b86fa203f5f07b286f7 (patch) | |
tree | 47970bcba51f736d653a6fb62e9c5a5b45ed0dbc /servicegateway/deployment/src/main/release | |
parent | 81c53dc73c8c05d034bea5114e36929261e97496 (diff) |
Solve the install issues
Change-Id: I4402388c3d245a062299fd6d65fa152d63b8f08c
Signed-off-by: j00302280 <j00101220@huawei.com>
Diffstat (limited to 'servicegateway/deployment/src/main/release')
-rw-r--r-- | servicegateway/deployment/src/main/release/bin/start.sh | 4 | ||||
-rw-r--r-- | servicegateway/deployment/src/main/release/bin/stop.sh | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/servicegateway/deployment/src/main/release/bin/start.sh b/servicegateway/deployment/src/main/release/bin/start.sh index 235b3197..521ef3b7 100644 --- a/servicegateway/deployment/src/main/release/bin/start.sh +++ b/servicegateway/deployment/src/main/release/bin/start.sh @@ -14,6 +14,8 @@ # limitations under the License. #******************************************************************************* #!/bin/bash +mkdir logs +mkdir temp cd .. export CATALINA_BASE=$(cd `dirname $0`; pwd) -catalina.sh start
\ No newline at end of file +$CATALINA_HOME/bin/catalina.sh start
\ No newline at end of file diff --git a/servicegateway/deployment/src/main/release/bin/stop.sh b/servicegateway/deployment/src/main/release/bin/stop.sh index bcc60433..365da00d 100644 --- a/servicegateway/deployment/src/main/release/bin/stop.sh +++ b/servicegateway/deployment/src/main/release/bin/stop.sh @@ -16,4 +16,4 @@ #!/bin/bash cd .. export CATALINA_BASE=$(cd `dirname $0`; pwd) -catalina.sh stop
\ No newline at end of file +$CATALINA_HOME/bin/catalina.sh stop
\ No newline at end of file |