月度归档:2021年02月

Debian 10系统上编译安装Redis 2021-2-15

需求描述
下载最新的Redis稳定版本,编译安装Redis

配置安装Redis最新稳定版本,优先参考https://redis.io/topics/quickstart
本次安装到的版本为Redis 6.0.10 2021-2-15

root@server:~# mkdir -p /root/src
root@server:~# cd /root/src
root@server:~# wget http://download.redis.io/redis-stable.tar.gz
root@server:~# tar xvzf redis-stable.tar.gz
root@server:~# cd redis-stable
root@server:~# make
root@server:~# make install
root@server:~# which redis-cli
/usr/local/bin/redis-cli
root@server:~# 
root@server:~# which redis-server
/usr/local/bin/redis-server
root@server:~# cp ./redis.conf /etc/redis.conf

修改/etc/redis.conf配置文件 配置Redis的监听和一个可靠的随机密码

bind 127.0.0.1
requirepass B230dddeAE678eDb

服务器内存资源不充足的情况下,建议设置

# The above configuration tells Redis to remove any key using the LRU algorithm when the max memory of 256mb is reached.
maxmemory 256mb
maxmemory-policy allkeys-lru

启动redis服务端

root@server:~# /usr/local/bin/redis-server /etc/redis.conf

测试redis是否正常启动

root@server:~# /usr/local/bin/redis-cli -a B230dddeAE678eDb ping
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
PONG
root@server:~# 
Donate
云乞讨

关闭Windows7上的Flash的广告及更新问题 2021-12-22

需求描述
Flash已经不再更新,由于大陆地区很多老旧网站还依赖Flash,不得已电脑上安装了大陆特供版本的Flash,频频跳出广告
关闭Flash广告的操作

1. 打开任务管理器,关闭Flash相关进程
2. 打开services.msc,关闭Flash的服务,并设置为禁用
3. 打开C:\Windows\System32\Macromed\Flash的文件夹,删除FlashHelperService.exe,新建TXT,重命名为FlashHelperService.exe,属性只读
4. 修改C:\Windows\System32\drivers\etc\hosts,增加行127.0.0.1 flash.cn

Donate
云乞讨