일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 도커
- Exchange 2003
- ADFS SSO
- AD Migration
- Azure
- ADFS 구성 방법 및 이중화
- ADFS proxy
- AWS EFS
- MSSQL 2012
- Active Directory Migration
- mongodb 설치
- AWS S3
- 하이퍼바이저
- ELK 설치
- vCenter
- ELK
- Exchange Server
- Active Directory
- ADFS 이중화
- Kubernetes
- awx
- Docker
- ansible
- vmware vsphere
- AWS
- vSphere
- AWS EBS
- ADFS Traffic Manager
- vCenter Syslog collector
- Application Gateway
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