首页 > 数据库 >redis安装

redis安装

时间:2023-12-26 19:34:17浏览次数:37  
标签:no redis install path yes 安装 ---#

#!/bin/bash
##############################################################
# File Name: install_redis.sh
# Version: V1.0
# Author: junwang
# Organization: 
# Created Time : 2021-04-14 17:12:54
# Description:
##############################################################
tools_path=/server/tools
install_path=/web
yum install -y gcc wget 
mkdir -p $tools_path
mkdir -p $install_path
# install redis
install_redis(){
cd $tools_path
if ! ls /server/tools/redis-4.0.9.tar.gz > /dev/null 2>&1
then
    wget http://47.105.153.221:33389/data/User/admin/home/caeri/redis/redis-4.0.9/redis-4.0.9.tar.gz
fi
tar -xf redis-4.0.9.tar.gz -C $install_path && ln -s $install_path/redis-4.0.9 $install_path/redis
cd $install_path/redis
make&&make install
if [ $? -eq 0  ]
then
   echo "###################################### Redis installed successfully #########################"
   echo 'export PATH=$PATH:'$install_path'/redis/src' >> /etc/profile
   source /etc/profile
   cp $install_path/redis/redis.conf $install_path/redis/redis.conf_bak
#   sed -i 's#daemonize no#daemonize yes#g' $install_path/redis/redis.conf
#   sed -i 's#logfile ""#logfile "/var/log/redis.log"#g' $install_path/redis/redis.conf
#   sed -i 's#bind 127.0.0.1#bind  *#g'  $install_path/redis/redis.conf
   echo 'bind  *
protected-mode no
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /var/run/redis_6379.pid
loglevel notice
logfile "/var/log/redis.log"
databases 16
always-show-logo yes
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir ./
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100
requirepass 123456
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
slave-lazy-flush no
appendonly no
appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
aof-use-rdb-preamble no
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
aof-rewrite-incremental-fsync yes
' > $install_path/redis/redis.conf

#    .$install_path/redis/src/
    redis-server $install_path/redis/redis.conf &
    if [ $? -eq 0  ]
    then
       echo '
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#*==+==##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#*=+--++--++--++=*#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@#*=+-------+*@@@@#+-------+=*#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@=--*@@*--+@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@#*=+---++===++--+++*@=+++----....---+=*#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@---+@@*--+@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@*+------#@@@@@@@@@*----+----...... ...------=@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@---+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@-.------+**#####*=+------+-----....-------..-@@@@@@@@@@#==*@#*===*@@@#*=++==*#@@@@@@@@#*==+==*#---+@@@==*@@@@@*==+==*#@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@-.....-----------=**###@@*------------......-@@@@@@@@@@=---+-----=@=----++----+#@@@@*+------------+@@=---#@@=----------*@@@@@@@@@@@@@
@@@@@@@@@@@@@@@*-.........-------+=*#@@=--------..........+#@@@@@@@@@@=-----=#@@#+--+#@@@@#*+--*@@+---=*###*+----+@@=---#@*---=#@@#=++#@@@@@@@@@@@@@
@@@@@@@@@@@@@@@=----...........------------...........-----+@@@@@@@@@@=---+#@@@@+--+*#*****#*---#=---*@@@@@@@*---+@@=---#@#----+=**#@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@-.--------...........--...........-------...-@@@@@@@@@@=---#@@@@@----------------#+--+@@@@@@@@@---+@@=---#@@@*+-------=#@@@@@@@@@@@@@
@@@@@@@@@@@@@@@-......--------..............--------.......+@@@@@@@@@@=---#@@@@@+---*@@@@@@@@@@@@=---*@@@@@@@=---+@@=---#@@@@@@@##*+---#@@@@@@@@@@@@
@@@@@@@@@@@@@@@*-..........--------.....-------..........--*@@@@@@@@@@=---#@@@@@#+---=##@@#*=+*@@@=---+*###*+----+@@=---#@=--+*#@##+---#@@@@@@@@@@@@
@@@@@@@@@@@@@@@+------..........----------..........------.-@@@@@@@@@@=---#@@@@@@@*+---------+*@@@@*+------------+@@=---#@*+---------+*@@@@@@@@@@@@@
@@@@@@@@@@@@@@@-...-------......................-------....-@@@@@@@@@@@==*@@@@@@@@@@#*=====*#@@@@@@@@#*====**@*==#@@@==*@@@@@#*====*#@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@+........-------............-------........-*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@#*=+-........-------..-------........-+=#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@#*=--........-------.......-+=*#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@#*=--.............-+*#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#*+-....-+=#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@###@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
'
   else 
       echo "Redis failed to start"
       exit 1
    cd $tools_path && rm -rf *   
fi
else 
  echo   "###################################### Redis installed failed  #########################"
  exit 1
fi

}

install_redis

标签:no,redis,install,path,yes,安装,---#
From: https://www.cnblogs.com/ejjw/p/17929150.html

相关文章

  • JDK1.8安装
    #!/bin/bash###############################################################FileName:install_redis.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1517:12:54#Description:###############################################......
  • kafka安装
    单节点kafka安装#!/bin/bash###############################################################FileName:install_kafka.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1417:12:54#Description:###################################......
  • emqx安装
    #!/bin/bash###############################################################FileName:install_emqx.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1517:12:54#Description:################################################......
  • cockroach安装
    `#!/bin/bash##############################################################FileName:install_cockroach.shVersion:V1.0Author:junwangOrganization:CreatedTime:2021-04-1317:12:54Description:#######################################################......
  • elasticsearch安装
    #!/bin/bash###############################################################FileName:install_redis.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1517:12:54#Description:###############################################......
  • 【VMware】虚拟机安装centos7安装教程(秒看秒懂)
    一、Centos7背景简介          CentOS7是一个企业级的Linux发行版本,它源于RedHat免费公开的源代码进行再发行。内核更新至3.10.0、支持Linux容器、支持OpenVMwareTools及3D图像即装即用、支持OpenJDK-7作为缺省JDK、支持内核空间内的iSCSI及FCoE、支持PTPv2等功能......
  • Redis设计与实现-15.复制
    redis可以通过SLAVEOF命令去复制(同步)另一台服务器,例如:当前有两台redis服务器其信息为:hostnameipportredis_1127.0.0.16379redis_2127.0.0.112345如果redis_2想要同步redis_1的内容,可以在redis_2上执行SLAVEOF127.0.0.16379,进而达到这个效果。RedisSLA......
  • 【已解决】WordPress安装插件提示:需要访问您网页服务器的权限
    前一段时间把workpress做了迁移后,发现安装插件的时候会给出如下提示: 经过百度查询找到解决方法,修改 /var/www/html/wp-config.php文件,增加字段:define('FS_METHOD','direct');如下图 之后重启服务:systemctlrestarthttpd,即可正常安装插件了,如下 ......
  • PostgreSQL的安装和卸载
    一、PostgreSQL的卸载查看版本号和系统类别:cat/etc/redhat-release如果是redhat/centos:(yuminstall)yum删除软件包:yumremovepostgresql*删除相关目录文件:rm-rf/var/lib/pgsqlrm-rf/usr/pgsql*删除pg相关用户组/用户userdel-rpostgresgroupdelpostgresrpm包安装的......
  • 这儿有一个基于redis生成订单流水号的工具,拿走不谢!
     1importcn.hutool.core.util.RandomUtil;2importcn.hutool.core.util.StrUtil;3importlombok.extern.slf4j.Slf4j;4importorg.springframework.beans.factory.annotation.Autowired;5importorg.springframework.data.redis.core.RedisTemplate;6import......