aboutsummaryrefslogtreecommitdiffstats
path: root/msb-core/redis-ext/src/assembly/resources
diff options
context:
space:
mode:
Diffstat (limited to 'msb-core/redis-ext/src/assembly/resources')
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis-works/placeholder.txt0
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.bat41
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.sh28
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis/redisService.exebin0 -> 59392 bytes
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis/redisService.xml13
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis/run.bat47
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis/run.sh30
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis/run4docker.sh30
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis/stop.bat41
-rw-r--r--msb-core/redis-ext/src/assembly/resources/redis/stop.sh28
10 files changed, 258 insertions, 0 deletions
diff --git a/msb-core/redis-ext/src/assembly/resources/redis-works/placeholder.txt b/msb-core/redis-ext/src/assembly/resources/redis-works/placeholder.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis-works/placeholder.txt
diff --git a/msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.bat b/msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.bat
new file mode 100644
index 0000000..b391f28
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.bat
@@ -0,0 +1,41 @@
+@REM
+@REM Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
+@REM
+@REM Licensed under the Apache License, Version 2.0 (the "License");
+@REM you may not use this file except in compliance with the License.
+@REM You may obtain a copy of the License at
+@REM
+@REM http://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing, software
+@REM distributed under the License is distributed on an "AS IS" BASIS,
+@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@REM See the License for the specific language governing permissions and
+@REM limitations under the License.
+@REM
+@echo off
+title close redis-server
+@if not "%ECHO%" == "" echo %ECHO%
+@if "%OS%" == "Windows_NT" setlocal
+
+set DIRNAME=.
+
+if "%OS%" == "Windows_NT" set DIRNAME=%~dp0%
+
+set HOME=%DIRNAME%
+set _REDISCLIENT=%DIRNAME%redis-cli.exe
+
+
+echo ================Redis config info =============================================
+echo Redis_HOME=$HOME
+echo TIP:This shell script rewrite the AOF file in the background!
+echo ===============================================================================
+
+
+cd /d "%HOME%"
+echo @WORK_DIR@%HOME%
+echo @C_CMD@ "%_REDISCLIENT% -p 6379 BGREWRITEAOF"
+%_REDISCLIENT% -p 6379 BGREWRITEAOF
+echo closing signal has been sent,stopping in background,WAIT...
+timeout /t 2 /nobreak > nul
+exit
diff --git a/msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.sh b/msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.sh
new file mode 100644
index 0000000..e401021
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+#
+# Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+DIRNAME=`dirname $0`
+HOME=`cd $DIRNAME/; pwd`
+_REDISCLIENT="$HOME/redis-cli"
+
+echo ===================== Redis info =============================================
+echo Redis_HOME=$HOME
+echo TIP:This shell script rewrite the AOF file in the background!
+echo ===============================================================================
+cd $HOME; pwd
+
+echo @C_CMD@ $_REDISCLIENT -p 6379 BGREWRITEAOF
+$_REDISCLIENT -p 6379 BGREWRITEAOF
diff --git a/msb-core/redis-ext/src/assembly/resources/redis/redisService.exe b/msb-core/redis-ext/src/assembly/resources/redis/redisService.exe
new file mode 100644
index 0000000..c6e8fc2
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis/redisService.exe
Binary files differ
diff --git a/msb-core/redis-ext/src/assembly/resources/redis/redisService.xml b/msb-core/redis-ext/src/assembly/resources/redis/redisService.xml
new file mode 100644
index 0000000..2083a69
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis/redisService.xml
@@ -0,0 +1,13 @@
+<service>
+ <id>msb_redis</id>
+ <name>msb_redis</name>
+ <description>This service runs redis.</description>
+ <workingdirectory>%BASE%</workingdirectory>
+ <env name="RUNHOME" value="%BASE%"/>
+ <executable>redis-server.exe</executable>
+ <arguments>redis.conf</arguments>
+ <stopexecutable>redis-cli.exe</stopexecutable>
+ <stopargument>shutdown</stopargument>
+ <logmode>rotate</logmode>
+ <!-- stopparentprocessfirst>true</stopparentprocessfirst -->
+</service> \ No newline at end of file
diff --git a/msb-core/redis-ext/src/assembly/resources/redis/run.bat b/msb-core/redis-ext/src/assembly/resources/redis/run.bat
new file mode 100644
index 0000000..ad443ed
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis/run.bat
@@ -0,0 +1,47 @@
+@REM
+@REM Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
+@REM
+@REM Licensed under the Apache License, Version 2.0 (the "License");
+@REM you may not use this file except in compliance with the License.
+@REM You may obtain a copy of the License at
+@REM
+@REM http://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing, software
+@REM distributed under the License is distributed on an "AS IS" BASIS,
+@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@REM See the License for the specific language governing permissions and
+@REM limitations under the License.
+@REM
+@echo off
+title redis-server
+@if not "%ECHO%" == "" echo %ECHO%
+@if "%OS%" == "Windows_NT" setlocal
+
+set DIRNAME=.
+
+if "%OS%" == "Windows_NT" set DIRNAME=%~dp0%
+
+set HOME=%DIRNAME%
+set _REDISCMD=%DIRNAME%redis-server.exe
+set _REDISCONF=%DIRNAME%redis.conf
+
+
+echo ================Redis config info =============================================
+echo Redis_HOME=%HOME%
+echo config file=$_REDISCONF
+echo Help:use $_REDISCMD --help for help
+echo ===============================================================================
+
+
+cd /d "%HOME%"
+echo @WORK_DIR@%HOME%
+echo @C_CMD@ "%_REDISCMD% %_REDISCONF%"
+%_REDISCMD% %_REDISCONF%
+IF ERRORLEVEL 1 goto showerror
+exit
+:showerror
+echo WARNING: Error occurred during startup or Server abnormally stopped by way of killing the process,Please check!
+echo After checking, press any key to close
+pause
+exit
diff --git a/msb-core/redis-ext/src/assembly/resources/redis/run.sh b/msb-core/redis-ext/src/assembly/resources/redis/run.sh
new file mode 100644
index 0000000..c20798d
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis/run.sh
@@ -0,0 +1,30 @@
+#!/bin/sh
+#
+# Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+DIRNAME=`dirname $0`
+HOME=`cd $DIRNAME/; pwd`
+_REDISCMD="$HOME/redis-server"
+_REDISCONF="$HOME/redis.conf"
+
+echo =========== Redis config info =============================================
+echo Redis_HOME=$HOME
+echo config file=$_REDISCONF
+echo Help:use $_REDISCMD --help for help
+echo ===============================================================================
+cd $HOME; pwd
+
+echo @C_CMD@ $_REDISCMD $_REDISCONF
+$_REDISCMD $_REDISCONF
diff --git a/msb-core/redis-ext/src/assembly/resources/redis/run4docker.sh b/msb-core/redis-ext/src/assembly/resources/redis/run4docker.sh
new file mode 100644
index 0000000..5640a62
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis/run4docker.sh
@@ -0,0 +1,30 @@
+#!/bin/sh
+#
+# Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+DIRNAME=`dirname $0`
+HOME=`cd $DIRNAME/; pwd`
+_REDISCMD="$HOME/redis-server"
+_REDISCONF="$HOME/redis.conf"
+
+echo =========== Redis config info =============================================
+echo Redis_HOME=$HOME
+echo config file=$_REDISCONF
+echo Help:use $_REDISCMD --help for help
+echo ===============================================================================
+cd $HOME; pwd
+
+echo @C_CMD@ $_REDISCMD $_REDISCONF --daemonize no
+$_REDISCMD $_REDISCONF --daemonize no
diff --git a/msb-core/redis-ext/src/assembly/resources/redis/stop.bat b/msb-core/redis-ext/src/assembly/resources/redis/stop.bat
new file mode 100644
index 0000000..de4db69
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis/stop.bat
@@ -0,0 +1,41 @@
+@REM
+@REM Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
+@REM
+@REM Licensed under the Apache License, Version 2.0 (the "License");
+@REM you may not use this file except in compliance with the License.
+@REM You may obtain a copy of the License at
+@REM
+@REM http://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing, software
+@REM distributed under the License is distributed on an "AS IS" BASIS,
+@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@REM See the License for the specific language governing permissions and
+@REM limitations under the License.
+@REM
+@echo off
+title close redis-server
+@if not "%ECHO%" == "" echo %ECHO%
+@if "%OS%" == "Windows_NT" setlocal
+
+set DIRNAME=.
+
+if "%OS%" == "Windows_NT" set DIRNAME=%~dp0%
+
+set HOME=%DIRNAME%
+set _REDISCLIENT=%DIRNAME%redis-cli.exe
+
+
+echo ================Redis config info =============================================
+echo Redis_HOME=$HOME
+echo TIP:This shell script close the Redis instance listening on 6379!
+echo ===============================================================================
+
+
+cd /d "%HOME%"
+echo @WORK_DIR@%HOME%
+echo @C_CMD@ "%_REDISCLIENT% -p 6379 shutdown"
+%_REDISCLIENT% -p 6379 shutdown
+echo closing signal has been sent,stopping in background,WAIT...
+timeout /t 2 /nobreak > nul
+exit
diff --git a/msb-core/redis-ext/src/assembly/resources/redis/stop.sh b/msb-core/redis-ext/src/assembly/resources/redis/stop.sh
new file mode 100644
index 0000000..4100b04
--- /dev/null
+++ b/msb-core/redis-ext/src/assembly/resources/redis/stop.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+#
+# Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+DIRNAME=`dirname $0`
+HOME=`cd $DIRNAME/; pwd`
+_REDISCLIENT="$HOME/redis-cli"
+
+echo ===================== Redis info =============================================
+echo Redis_HOME=$HOME
+echo TIP:This shell script close the Redis instance listening on 6379!
+echo ===============================================================================
+cd $HOME; pwd
+
+echo @C_CMD@ $_REDISCLIENT -p 6379 shutdown
+$_REDISCLIENT -p 6379 shutdown