일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GoCD
- openpyxl
- SWIFT
- rethinkdb
- ssh
- nohup
- port forwarding
- nGrinder
- 실행권한
- Materials
- Jupyter Notebook
- mysql
- postgres
- kitura
- appium
- postgresql
- insert
- ubuntu
- PYTHON
- sshpass
- centos
- STF_PortForwarding
- perfect
- nmap
- appium server
- create table
- ftp
- Jupyter
- 28015
- STF
- Today
- Total
목록Database/Redis (4)
don't stop believing
CentOS에 Redis를 설치해야 합니다. 언제나 그렇듯이 CentOS 버전부터 확인하고 갑니다. $ cat /etc/os-release NAME="CentOS Linux" VERSION="7 (Core)" ID="centos" ID_LIKE="rhel fedora" VERSION_ID="7" PRETTY_NAME="CentOS Linux 7 (Core)" ANSI_COLOR="0;31" CPE_NAME="cpe:/o:centos:centos:7" HOME_URL="https://www.centos.org/" BUG_REPORT_URL="https://bugs.centos.org/" CENTOS_MANTISBT_PROJECT="CentOS-7" CENTOS_MANTISBT_PROJECT_VERSION=..
redis-server와 통신하기 위해 기본 제공되는 명령이 redis-cli 입니다.redis-cli를 이용해 redis-server에 접속하고 set/get 으로 데이터를 저장하고 확인해 봅시다. 먼저 redis가 설치되어 있는지 버전과 포트를 확인해 봅니다. $ redis-server --version Redis server v=3.0.6 sha=00000000:0 malloc=jemalloc-3.6.0 bits=64 build=687a2a319020fa42 포트오픈은 netstat로 확인합니다. $ netstat -nlpt | grep 6379 (Not all processes could be identified, non-owned process info will not be shown, you ..
redis-server를 기본으로 설정했다면 로컬 접속만 허용되게 됩니다. 외부 서버에서는 접속이 되지 않습니다.외부에서 접속하기 위한 설정과 암호를 설정해 봅시다. 먼저 암호설정입니다. redis.conf를 엽니다. $ sudo vim /etc/redis/redis.conf 암호를 설정하려면 requirepass를 찾아 foobared라고 되어 있는부분을 지우고 설정하려는 암호를 넣습니다.외부에서 접속을 허용하기 위해서는 bind를 찾아 127.0.0.1로 되어있는 부분을 지우고 0.0.0.0으로 수정합니다.redis.conf 파일을 저장하고 redis를 재시작해 줍니다. $ sudo systemctl restart redis-server.service netstat 명령으로 redis-server가 ..
Redis를 Ubuntu에 설치해 봅시다.ssh로 Ubuntu에 접속합니다. 그리고 먼저 apt-get을 업데이트 해줍니다. $ sudo apt-get update $ sudo apt-get upgrade apt-get으로 간단하게 redis-server를 설치해 줍니다. $ sudo apt-get install redis-server 설치가 되었으면 버전부터 확인해 봐야겠죠? $ redis-server --version Redis server v=3.0.6 sha=00000000:0 malloc=jemalloc-3.6.0 bits=64 build=687a2a319020fa42 redis 버전은 3.0.6이네요. 설치가 완료되었으면 메모리를 얼마나 사용할지 설정을 해야 합니다. redis가 Server의..