일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- AWS EBS
- Active Directory Migration
- vmware vsphere
- awx
- AWS
- Docker
- Azure
- vCenter
- MSSQL 2012
- Application Gateway
- ADFS proxy
- ADFS 이중화
- Active Directory
- AWS S3
- AD Migration
- ADFS Traffic Manager
- mongodb 설치
- ADFS SSO
- ELK
- ELK 설치
- 하이퍼바이저
- AWS EFS
- Exchange Server
- Kubernetes
- ADFS 구성 방법 및 이중화
- vCenter Syslog collector
- vSphere
- Exchange 2003
- 도커
- ansible
Archives
- Today
- Total
practice makes perfect
redis client 설치 본문
- Elasticache Redis를 사용하고 있다.
- 서버리스 방식이라 직접적으로 접근할 수 없다
- Redis Client 서버를 통해 접근한다. (방화벽 정책이 사전에 필요함)
- make 하기 위핸 gcc 다운
sudo yum install -y gcc
- redis-cli 설치 및 make
wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make
- redis-cli를 bin에 추가해 어느 위치서든 사용 가능하게 등록
sudo cp src/redis-cli /usr/bin/
- 접속테스트
redis-cli -h redis endpoint
'Linux' 카테고리의 다른 글
/etc/crontab vs crontab -e (0) | 2024.05.06 |
---|---|
Oracle Linux 호스트 네임 (0) | 2024.05.06 |
ELK Configure (with Docker) (0) | 2020.12.13 |
MongoDB 설치 및 계정 생성 (0) | 2020.10.04 |
Apache Method 예외처리 (0) | 2020.01.01 |
Comments