blob: 2e7d707b6781cab8dace645dd8065fe89775189d [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001#!/bin/bash
2#
3# Copyright 2016-2017 Huawei Technologies Co., Ltd.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070017
18
19#
20# add here below the killing of all docker containers used for music CSIT testing
21#
22echo "dump music.log files"
23ls -alF /tmp/music
24ls -alFR /tmp/music
25ls -alF /tmp/music/properties
26cat /tmp/music/properties/music.properties
27echo "===== MUSIC log =================="
28docker exec music-tomcat /bin/bash -c "cat /opt/app/music/logs/MUSIC/music.log"
29#cat /tmp/music/logs/MUSIC/music.log
30echo "===== MUSIC error log =================="
31docker exec music-tomcat /bin/bash -c "cat /opt/app/music/logs/MUSIC/error.log"
32#cat /tmp/music/logs/MUSIC/error.log
33
34echo "##########################################################";
35echo "#";
36echo "# music scripts docker containers killing";
37echo "#";
38echo "##########################################################";
Gary Wu9abb61c2018-09-27 10:38:50 -070039docker stop music-tomcat
40docker stop music-war
41docker stop music-zk
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070042docker stop music-job
Gary Wu9abb61c2018-09-27 10:38:50 -070043docker stop music-db
44
45docker rm music-zk
46docker rm music-tomcat
47docker rm music-war
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070048docker rm music-job
Gary Wu9abb61c2018-09-27 10:38:50 -070049docker rm music-db
50
51docker network rm music-net;
52sleep 5;
53
54docker volume rm music-vol
55
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070056#rm -Rf /tmp/music
57
58
59
60
Gary Wu9abb61c2018-09-27 10:38:50 -070061