您想了解如何在Ubuntu Linux上安装Redis服务器吗? 在本教程中,我们将向您展示在Ubuntu Linux上安装和配置Redis服务器所需的所有步骤。
•Ubuntu Linux版本18.04
相关教程:
在此页面上,我们提供了对与Ubuntu Linux相关的教程列表的快速访问。
1.使用NTP配置日期和时间
使用NTP配置系统以使用正确的日期和时间。
在Linux控制台上,使用以下命令设置正确的时区。
# dpkg-reconfigure tzdata
安装Ntpdate包并立即设置正确的日期和时间。
# apt-get update
# apt-get install ntpdate
# ntpdate pool.ntp.br
Ntpdate命令用于使用server:pool.ntp.br设置正确的日期和时间
我们来安装NTP服务。
# timedatectl set-ntp 0
# apt-get install ntp
NTP是保持我们的服务器更新的服务。
使用命令日期检查Ubuntu Linux上配置的日期和时间。
# date
2.安装Redis服务器
在Linux控制台上,使用以下命令安装Redis服务器软件包。
# apt-get update
# apt-get install redis-server
现在,您需要编辑sysctl.conf文件。
# vi /etc/sysctl.conf
在文件末尾添加以下行:
vm.overcommit_memory=1
net.core.somaxconn=65535
fs.file-max=100000
输入以下命令以重新加载配置文件。
# sysctl -p
# echo never > /sys/kernel/mm/transparent_hugepage/enabled
现在,您应该在系统上找到redis.conf文件的位置。
找到后,您需要编辑redis.conf文件。
# updatedb
# locate redis.conf
# vi /etc/redis/redis.conf
这是原始文件,在配置之前没有注释。
bind 127.0.0.1 ::1
protected-mode yes
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /var/run/redis/redis-server.pid
loglevel notice
logfile /var/log/redis/redis-server.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 /var/lib/redis
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
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
将以下行添加到配置文件中:
maxmemory 1024mb
maxmemory-policy allkeys-lru
在我们的示例中,我们将为Redis服务保留1GB的RAM。
更改以下现有配置行:
supervised systemd
bind 127.0.0.1 ::1
这是我们配置的新文件。
bind 127.0.0.1 ::1
protected-mode yes
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize yes
supervised systemd
pidfile /var/run/redis/redis-server.pid
loglevel notice
logfile /var/log/redis/redis-server.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 /var/lib/redis
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
maxmemory 1024mb
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
重新启动Redis服务。
在引导期间启用Redis服务。
重新启动计算机以测试自动启动。
Redis服务在TCP端口6379上提供。
# service redis-server status
# systemctl enable redis-server
# reboot
如果您在本地使用Apache和PHP,请使用以下命令安装所需的PHP模块。
# apt-get install php-redis
# service apache2 restart
# /etc/init.d/php7.2-fpm restart
3.测试Redis服务器
在Linux控制台上,使用以下命令测试Redis服务。
# redis-cli
> ping
> set MYSITE “Techexpert.Tips”
> get MYSITE
> exit
测试Redis服务性能。
# redis-benchmark -q -n 1000 -c 10 -P 5
PING_INLINE: 142857.14 requests per second
PING_BULK: 142857.14 requests per second
SET: 142857.14 requests per second
GET: 124999.99 requests per second
INCR: 124999.99 requests per second
LPUSH: 142857.14 requests per second
RPUSH: 142857.14 requests per second
LPOP: 124999.99 requests per second
RPOP: 124999.99 requests per second
SADD: 124999.99 requests per second
HSET: 124999.99 requests per second
SPOP: 142857.14 requests per second
LPUSH (needed to benchmark LRANGE): 124999.99 requests per second
LRANGE_100 (first 100 elements): 47619.05 requests per second
LRANGE_300 (first 300 elements): 14925.37 requests per second
LRANGE_500 (first 450 elements): 9433.96 requests per second
LRANGE_600 (first 600 elements): 6578.95 requests per second
MSET (10 keys): 100000.00 requests per second
恭喜! 您完成了Redis服务器安装。
Leave A Comment
You must be logged in to post a comment.