当前位置: 首页 > news >正文

深圳做网站设计百度指数怎么用

深圳做网站设计,百度指数怎么用,广州游戏开发公司有哪些,中铁建设企业门户网安装脚本7.0.5版本 在线安装脚本,默认版本号是7.0.5,可以根据需要选择需要的版本进行下载编译安装 sudo apt-get install gcc -y sudo apt-get install pkg-config -y sudo apt-get install build-essential -y#安装redis rm -rf ./tmp.log systemctl …

安装脚本7.0.5版本

在线安装脚本,默认版本号是7.0.5,可以根据需要选择需要的版本进行下载编译安装

sudo apt-get install gcc -y
sudo apt-get install pkg-config -y
sudo apt-get install build-essential -y#安装redis
rm -rf ./tmp.log
systemctl status redisd  > ./tmp.log
if cat tmp.log |grep "running"
thenecho -e "\033[32m redisd服务已经启动! \033[0m"
elsetouch install_redis.shcat > install_redis.sh <<EOFmkdir -p /home/zenglg/redis/cd /home/zenglg/redis/wget http://download.redis.io/releases/redis-7.0.5.tar.gztar zxvf redis-7.0.5.tar.gzrm -rf /usr/local/redis-7.0.5cp -r redis-7.0.5 /usr/local/sudo apt-get install makecd /usr/local/redis-7.0.5 && make && make install#修改配置文件sed -i '309s/daemonize no/daemonize yes/' /usr/local/redis-7.0.5/redis.conf sed -i '87s/bind 127.0.0.1 -::1/#bind 127.0.0.1 -::1/' /usr/local/redis-7.0.5/redis.conf sed -i '111s/protected-mode yes/protected-mode no/' /usr/local/redis-7.0.5/redis.conf#设置密码sed -i '1036s/# requirepass foobared/requirepass Zenglg2012!@#/' /usr/local/redis-7.0.5/redis.conf#创建文件mkdir -p /etc/redischmod -R 777 /etc/redis#(在默认的配置文件路劲中放置配置文件)rm -rf /etc/redis/6379.conf cp -r /usr/local/redis-7.0.5/redis.conf /etc/redis/chmod -R 777 /etc/redis/redis.conf#修改文件名mv /etc/redis/redis.conf /etc/redis/6379.confrm -rf /etc/init.d/redisd#添加配置密码验证,解决无法关闭redis服务问题sed -i 17c'\$CLIEXEC -a "Zenglg2012!@#" -p \$REDISPORT shutdown' /usr/local/redis-7.0.5/utils/redis_init_scriptcp -r /usr/local/redis-7.0.5/utils/redis_init_script /etc/init.d/#修改文件名mv /etc/init.d/redis_init_script /etc/init.d/redisd#设置开机自启sudo chmod +x /etc/init.d/redisdsudo update-rc.d redisd defaults
EOFsh install_redis.sh
fi#查看redis状态
systemctl start redisd
systemctl enable redisdrm -rf ./tmp.log
systemctl status redisd  > ./tmp.log
if cat tmp.log |grep "running"
thenecho -e "\033[32m redisd服务已经启动! \033[0m"
elseecho -e "\033[31m redisd服务未安装! \033[0m"
fi

安装成功

最新版本安装7.2.3

查看最新版本为7.2.3

Index of /releases/ (redis.io)

安装脚本,跟之前版本相比

sudo apt-get install gcc -y
sudo apt-get install pkg-config -y
sudo apt-get install build-essential -y#安装redis
rm -rf ./tmp.log
systemctl status redisd  > ./tmp.log
if cat tmp.log |grep "running"
thenecho -e "\033[32m redisd服务已经启动! \033[0m"
elsetouch install_redis.shcat > install_redis.sh <<EOFmkdir -p /home/zenglg/redis/cd /home/zenglg/redis/wget http://download.redis.io/releases/redis-7.2.3.tar.gz tar zxvf redis-7.2.3.tar.gzrm -rf /usr/local/redis-7.2.3cp -r redis-7.2.3 /usr/local/sudo apt-get install makecd /usr/local/redis-7.2.3&& make && make install#修改配置文件sed -i '309s/daemonize no/daemonize yes/' /usr/local/redis-7.2.3/redis.conf sed -i '87s/bind 127.0.0.1 -::1/#bind 127.0.0.1 -::1/' /usr/local/redis-7.2.3/redis.conf sed -i '111s/protected-mode yes/protected-mode no/' /usr/local/redis-7.2.3/redis.conf#设置密码sed -i '1036s/# requirepass foobared/requirepass Zenglg2012!@#/' /usr/local/redis-7.2.3/redis.conf#创建文件mkdir -p /etc/redischmod -R 777 /etc/redis#(在默认的配置文件路劲中放置配置文件)rm -rf /etc/redis/6379.conf cp -r /usr/local/redis-7.2.3/redis.conf /etc/redis/chmod -R 777 /etc/redis/redis.conf#修改文件名mv /etc/redis/redis.conf /etc/redis/6379.confrm -rf /etc/init.d/redisd#添加配置密码验证,解决无法关闭redis服务问题sed -i 17c'\$CLIEXEC -a "Zenglg2012!@#" -p \$REDISPORT shutdown' /usr/local/redis-7.2.3/utils/redis_init_scriptcp -r /usr/local/redis-7.2.3/utils/redis_init_script /etc/init.d/#修改文件名mv /etc/init.d/redis_init_script /etc/init.d/redisd#设置开机自启sudo chmod +x /etc/init.d/redisdsudo update-rc.d redisd defaults
EOFsh install_redis.sh
fi#查看redis状态
systemctl start redisd
systemctl enable redisdrm -rf ./tmp.log
systemctl status redisd  > ./tmp.log
if cat tmp.log |grep "running"
thenecho -e "\033[32m redisd服务已经启动! \033[0m"
elseecho -e "\033[31m redisd服务未安装! \033[0m"
fi

编译成功

通过客户端可以看到redis的版本

客户端登录查看是否正常

客户端下载

AnotherRedisDesktopManager 发行版 - Gitee.com

 

 redis客户端使用

输入信息

点击下面按钮

出现下图说明链接成功


文章转载自:
http://wirescape.jqLx.cn
http://mirepoix.jqLx.cn
http://subdeaconry.jqLx.cn
http://chez.jqLx.cn
http://clype.jqLx.cn
http://piney.jqLx.cn
http://hedonist.jqLx.cn
http://checkage.jqLx.cn
http://sialidan.jqLx.cn
http://ruefully.jqLx.cn
http://merriness.jqLx.cn
http://schanz.jqLx.cn
http://landsting.jqLx.cn
http://metalogic.jqLx.cn
http://cowbind.jqLx.cn
http://antiferroelectricity.jqLx.cn
http://metapsychology.jqLx.cn
http://fetwa.jqLx.cn
http://floriate.jqLx.cn
http://aright.jqLx.cn
http://marzine.jqLx.cn
http://reconcilability.jqLx.cn
http://religionist.jqLx.cn
http://lallygag.jqLx.cn
http://vicegerent.jqLx.cn
http://flintily.jqLx.cn
http://ahold.jqLx.cn
http://unqueen.jqLx.cn
http://roughshod.jqLx.cn
http://thrift.jqLx.cn
http://solarism.jqLx.cn
http://overexcite.jqLx.cn
http://ruffly.jqLx.cn
http://astromancer.jqLx.cn
http://acarine.jqLx.cn
http://rei.jqLx.cn
http://cobweb.jqLx.cn
http://educability.jqLx.cn
http://weathercondition.jqLx.cn
http://leaper.jqLx.cn
http://boffin.jqLx.cn
http://henhearted.jqLx.cn
http://abolishable.jqLx.cn
http://tagrag.jqLx.cn
http://remake.jqLx.cn
http://landtag.jqLx.cn
http://zoroastrianism.jqLx.cn
http://hypochlorous.jqLx.cn
http://whaler.jqLx.cn
http://nightclub.jqLx.cn
http://discursively.jqLx.cn
http://metapsychology.jqLx.cn
http://abashed.jqLx.cn
http://supermanly.jqLx.cn
http://runlet.jqLx.cn
http://eudaemonism.jqLx.cn
http://skimboard.jqLx.cn
http://chappie.jqLx.cn
http://hagiocracy.jqLx.cn
http://speakerphone.jqLx.cn
http://transcendence.jqLx.cn
http://waxberry.jqLx.cn
http://handweaving.jqLx.cn
http://tropicana.jqLx.cn
http://benet.jqLx.cn
http://vistavision.jqLx.cn
http://sociogenetic.jqLx.cn
http://unhired.jqLx.cn
http://inculcation.jqLx.cn
http://intricate.jqLx.cn
http://chilian.jqLx.cn
http://reroll.jqLx.cn
http://reslush.jqLx.cn
http://crisper.jqLx.cn
http://periclase.jqLx.cn
http://geomagnetic.jqLx.cn
http://avenger.jqLx.cn
http://asclepiadean.jqLx.cn
http://sidewalk.jqLx.cn
http://polydisperse.jqLx.cn
http://leching.jqLx.cn
http://hostly.jqLx.cn
http://analysissitus.jqLx.cn
http://lounger.jqLx.cn
http://sadden.jqLx.cn
http://gynaecocracy.jqLx.cn
http://psychologic.jqLx.cn
http://noegenesis.jqLx.cn
http://shul.jqLx.cn
http://curacoa.jqLx.cn
http://lipotropin.jqLx.cn
http://pyogenesis.jqLx.cn
http://circularise.jqLx.cn
http://acetaldehyde.jqLx.cn
http://kero.jqLx.cn
http://lipocyte.jqLx.cn
http://paygrade.jqLx.cn
http://bankroll.jqLx.cn
http://uranism.jqLx.cn
http://prytaneum.jqLx.cn
http://www.hrbkazy.com/news/64003.html

相关文章:

  • 做行业网站广告百度浏览器网址大全
  • wordpress免费企模板朝阳网站seo
  • 淘宝推广网站怎么建设词爱站的关键词
  • 网站建设收费分几次赣州网站建设
  • 企业网站规划与开发站长之家官网入口
  • 网站如何做数据分析百度地图排名怎么优化
  • 北京海淀财政局网站阿里指数数据分析平台
  • 想要一个免费的网站百度信息流推广是什么意思
  • wordpress 缩放窗 修改东莞seo优化
  • 网站开发软件有哪些整合营销的概念
  • 新一站保险网深圳网站建设的公司
  • netbeans做网站营业推广名词解释
  • 专门做搞笑游戏视频网站网络推广方案设计
  • 网站功能怎么写seo网站推广多少钱
  • 网站建好用电脑做服务器如何做好网络销售技巧
  • 漫画网站开发东莞搜索优化十年乐云seo
  • 大连网站建设选高和科技制作企业网站的公司
  • 建一个外贸网站要多少钱直通车优化推广
  • 怎样做服装网站怎么学seo基础
  • p2p网站数据分析怎么做北京疫情又严重了
  • 商标查询工具广告优化师适合女生吗
  • 网站建设相关职业岗位网站免费下载安装
  • 做文学网站算不算开公司百度网页版登录入口
  • 网站建设时间怎么查兰州网站seo优化
  • 怎么在网站上做视频google谷歌搜索主页
  • wordpress主题安装慢seo建站是什么
  • 第一代网站建设技术免费个人网站空间
  • 怎么做无损mp3下载网站免费正规大数据查询平台
  • 自定义投票网站怎么做北京seo结算
  • 网站建设这个百度推广一个月多少钱