You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
honor-dd-light-ds-java/docs/bin/install/install-redis.sh

35 lines
558 B
Bash

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#! /bin/shell
hasRedis(){
RESULT=$(redis-server -v)
echo "${RESULT}"
if [[ ! $RESULT ]]
then
echo "no"
return 0;
fi
return 1;
}
hasRedis
if [ $? != 1 ]
then
echo "Not Found redis"
echo "Installing redis..."
yum install -y redis
hasRedis
if [ $? != 1 ]
then
echo "Install Redis Fail"
fi
fi
# 设置redis开机启动
systemctl enable redis
# 在后台启动redis服务
systemctl start redis
# 测试redis-cli是否能正常连接如果输出PONG则连接成功
redis-cli ping
echo ""