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 ]
echo "Not Found redis"
echo "Installing redis..."
yum install -y redis
echo "Install Redis Fail"
# 设置redis开机启动
systemctl enable redis
# 在后台启动redis服务
systemctl start redis
# 测试redis-cli是否能正常连接,如果输出PONG,则连接成功
redis-cli ping
echo ""