1. System update

[root@centOS7 ~]# yum update

 

2. REMI repository 추가

[root@centOS7 ~]# yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm

 

3. Redis server 설치

[root@centOS7 ~]# yum --enablerepo=remi install redis

 

4. 설치 package 확인

[root@centOS7 ~]# rpm -qi redis
Name        : redis
Version     : 7.0.4
Release     : 1.el7.remi
Architecture: x86_64
Install Date: Sun 24 Jul 2022 12:05:42 AM KST
Group       : Applications/Databases
Size        : 5356920
License     : BSD
Signature   : DSA/SHA1, Mon 18 Jul 2022 11:27:20 PM KST, Key ID 004e6f4700f97f56
Source RPM  : redis-7.0.4-1.el7.remi.src.rpm
Build Date  : Mon 18 Jul 2022 11:26:14 PM KST
Build Host  : builder.remirepo.net
Relocations : (not relocatable)
Packager    : Remi Collet
Vendor      : Remi's RPM repository <https://rpms.remirepo.net/> #StandWithUkraine
URL         : http://redis.io
Bug URL     : https://forum.remirepo.net/
Summary     : A persistent key-value database
Description :
Redis is an advanced key-value store. It is often referred to as a data
structure server since keys can contain strings, hashes, lists, sets and
sorted sets.

You can run atomic operations on these types, like appending to a string;
incrementing the value in a hash; pushing to a list; computing set
intersection, union and difference; or getting the member with highest
ranking in a sorted set.

In order to achieve its outstanding performance, Redis works with an
in-memory dataset. Depending on your use case, you can persist it either
by dumping the dataset to disk every once in a while, or by appending
each command to a log.

Redis also supports trivial-to-setup master-slave replication, with very
fast non-blocking first synchronization, auto-reconnection on net split
and so forth.

Other features include Transactions, Pub/Sub, Lua scripting, Keys with a
limited time-to-live, and configuration settings to make Redis behave like
a cache.

You can use Redis from most programming languages also.

 

5. 접속허용IP(bind), 포트(port), 접속비밀번호(requirepass) 등 설정

[root@centOS7 blog.daonelab.com]# vi /etc/redis.conf

# 접속허용할 IP 지정
bind 127.0.0.1

# 사용할 포트
port 6379

# 비밀번호
requirepass foobared

 

6. Systemctl 등록 및 시작

[root@centOS7 /]# systemctl status redis
● redis.service - Redis persistent key-value database
   Loaded: loaded (/usr/lib/systemd/system/redis.service; disabled; vendor preset: disabled)
  Drop-In: /etc/systemd/system/redis.service.d
           └─limit.conf
   Active: inactive (dead)

Jul 23 21:12:41 centOS7.daonelab.com systemd[1]: Stopping Redis persistent key-value database...
Jul 23 21:12:41 centOS7.daonelab.com redis-shutdown[86580]: NOAUTH Authentication required.
Jul 23 21:12:41 centOS7.daonelab.com systemd[1]: Starting Redis persistent key-value database...
Jul 23 21:12:41 centOS7.daonelab.com systemd[1]: Started Redis persistent key-value database.
Jul 24 00:02:35 centOS7.daonelab.com systemd[1]: Stopping Redis persistent key-value database...
Jul 24 00:02:35 centOS7.daonelab.com systemd[1]: Stopped Redis persistent key-value database.

[root@centOS7 /]# systemctl enable redis
Created symlink from /etc/systemd/system/multi-user.target.wants/redis.service to /usr/lib/systemd/system/redis.service.

[root@centOS7 /]# systemctl -al | grep redis
  redis.service                                                                       loaded    inactive dead      Redis persistent key-value database

[root@centOS7 /]# systemctl status redis
● redis.service - Redis persistent key-value database
   Loaded: loaded (/usr/lib/systemd/system/redis.service; enabled; vendor preset: disabled)
  Drop-In: /etc/systemd/system/redis.service.d
           └─limit.conf
   Active: inactive (dead)

Jul 23 21:12:41 centOS7.daonelab.com systemd[1]: Stopping Redis persistent key-value database...
Jul 23 21:12:41 centOS7.daonelab.com redis-shutdown[86580]: NOAUTH Authentication required.
Jul 23 21:12:41 centOS7.daonelab.com systemd[1]: Starting Redis persistent key-value database...
Jul 23 21:12:41 centOS7.daonelab.com systemd[1]: Started Redis persistent key-value database.
Jul 24 00:02:35 centOS7.daonelab.com systemd[1]: Stopping Redis persistent key-value database...
Jul 24 00:02:35 centOS7.daonelab.com systemd[1]: Stopped Redis persistent key-value database.

[root@centOS7 /]# systemctl start redis
[root@centOS7 /]# systemctl status redis
● redis.service - Redis persistent key-value database
   Loaded: loaded (/usr/lib/systemd/system/redis.service; enabled; vendor preset: disabled)
  Drop-In: /etc/systemd/system/redis.service.d
           └─limit.conf
   Active: active (running) since Sun 2022-07-24 00:23:32 KST; 10s ago
 Main PID: 97328 (redis-server)
   Status: "Ready to accept connections"
   CGroup: /system.slice/redis.service
           └─97328 /usr/bin/redis-server *:6379

Jul 24 00:23:32 centOS7.daonelab.com systemd[1]: Starting Redis persistent key-value database...
Jul 24 00:23:32 centOS7.daonelab.com systemd[1]: Started Redis persistent key-value database.

 

7. 확인

[root@centOS7 /]# redis-cli
127.0.0.1:6379> auth 비밀번호
OK
127.0.0.1:6379> info
# Server
redis_version:7.0.4
redis_git_sha1:00000000
redis_git_dirty:0
redis_build_id:d50f3e9745d9d82
redis_mode:standalone
os:Linux 3.10.0-327.36.1.el7.x86_64 x86_64
arch_bits:64
monotonic_clock:POSIX clock_gettime
multiplexing_api:epoll
atomicvar_api:c11-builtin
gcc_version:8.3.1
process_id:97328
process_supervised:systemd
run_id:bad3478d9989676305492777f166367c2a1f43db
tcp_port:6379
server_time_usec:1658589911992612
uptime_in_seconds:99
uptime_in_days:0
hz:10
configured_hz:10
lru_clock:14422743
executable:/usr/bin/redis-server
config_file:/etc/redis/redis.conf
io_threads_active:0

# Clients
connected_clients:1
cluster_connections:0
maxclients:10000
client_recent_max_input_buffer:20480
client_recent_max_output_buffer:0
blocked_clients:0
tracking_clients:0
clients_in_timeout_table:0

# Memory
used_memory:915096
used_memory_human:893.65K
used_memory_rss:8003584
used_memory_rss_human:7.63M
used_memory_peak:915096
used_memory_peak_human:893.65K
used_memory_peak_perc:100.25%
used_memory_overhead:867032
used_memory_startup:865048
used_memory_dataset:48064
used_memory_dataset_perc:96.04%
allocator_allocated:1312968
allocator_active:1626112
allocator_resident:4763648
total_system_memory:1912483840
total_system_memory_human:1.78G
used_memory_lua:31744
used_memory_vm_eval:31744
used_memory_lua_human:31.00K
used_memory_scripts_eval:0
number_of_cached_scripts:0
number_of_functions:0
number_of_libraries:0
used_memory_vm_functions:32768
used_memory_vm_total:64512
used_memory_vm_total_human:63.00K
used_memory_functions:184
used_memory_scripts:184
used_memory_scripts_human:184B
maxmemory:0
maxmemory_human:0B
maxmemory_policy:noeviction
allocator_frag_ratio:1.24
allocator_frag_bytes:313144
allocator_rss_ratio:2.93
allocator_rss_bytes:3137536
rss_overhead_ratio:1.68
rss_overhead_bytes:3239936
mem_fragmentation_ratio:8.97
mem_fragmentation_bytes:7111376
mem_not_counted_for_evict:0
mem_replication_backlog:0
mem_total_replication_buffers:0
mem_clients_slaves:0
mem_clients_normal:1800
mem_cluster_links:0
mem_aof_buffer:0
mem_allocator:jemalloc-5.2.1
active_defrag_running:0
lazyfree_pending_objects:0
lazyfreed_objects:0

# Persistence
loading:0
async_loading:0
current_cow_peak:0
current_cow_size:0
current_cow_size_age:0
current_fork_perc:0.00
current_save_keys_processed:0
current_save_keys_total:0
rdb_changes_since_last_save:0
rdb_bgsave_in_progress:0
rdb_last_save_time:1658589812
rdb_last_bgsave_status:ok
rdb_last_bgsave_time_sec:-1
rdb_current_bgsave_time_sec:-1
rdb_saves:0
rdb_last_cow_size:0
rdb_last_load_keys_expired:0
rdb_last_load_keys_loaded:0
aof_enabled:0
aof_rewrite_in_progress:0
aof_rewrite_scheduled:0
aof_last_rewrite_time_sec:-1
aof_current_rewrite_time_sec:-1
aof_last_bgrewrite_status:ok
aof_rewrites:0
aof_rewrites_consecutive_failures:0
aof_last_write_status:ok
aof_last_cow_size:0
module_fork_in_progress:0
module_fork_last_cow_size:0

# Stats
total_connections_received:1
total_commands_processed:1
instantaneous_ops_per_sec:0
total_net_input_bytes:120
total_net_output_bytes:169
total_net_repl_input_bytes:0
total_net_repl_output_bytes:0
instantaneous_input_kbps:0.00
instantaneous_output_kbps:0.00
instantaneous_input_repl_kbps:0.00
instantaneous_output_repl_kbps:0.00
rejected_connections:0
sync_full:0
sync_partial_ok:0
sync_partial_err:0
expired_keys:0
expired_stale_perc:0.00
expired_time_cap_reached_count:0
expire_cycle_cpu_milliseconds:1
evicted_keys:0
evicted_clients:0
total_eviction_exceeded_time:0
current_eviction_exceeded_time:0
keyspace_hits:0
keyspace_misses:0
pubsub_channels:0
pubsub_patterns:0
pubsubshard_channels:0
latest_fork_usec:0
total_forks:0
migrate_cached_sockets:0
slave_expires_tracked_keys:0
active_defrag_hits:0
active_defrag_misses:0
active_defrag_key_hits:0
active_defrag_key_misses:0
total_active_defrag_time:0
current_active_defrag_time:0
tracking_total_keys:0
tracking_total_items:0
tracking_total_prefixes:0
unexpected_error_replies:0
total_error_replies:4
dump_payload_sanitizations:0
total_reads_processed:6
total_writes_processed:5
io_threaded_reads_processed:0
io_threaded_writes_processed:0
reply_buffer_shrinks:1
reply_buffer_expands:0

# Replication
role:master
connected_slaves:0
master_failover_state:no-failover
master_replid:93ff3198345585d821273aa9b24aec949d3e29fa
master_replid2:0000000000000000000000000000000000000000
master_repl_offset:0
second_repl_offset:-1
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0

# CPU
used_cpu_sys:0.135766
used_cpu_user:0.047701
used_cpu_sys_children:0.000000
used_cpu_user_children:0.000000
used_cpu_sys_main_thread:0.135367
used_cpu_user_main_thread:0.047561

# Modules

# Errorstats
errorstat_ERR:count=1
errorstat_NOAUTH:count=3

# Cluster
cluster_enabled:0

# Keyspace
127.0.0.1:6379>