Redis 설치 (Mac Rails VScode)

3676 단어 RedisRails
이번에는 사람들이받은 Redis를 사용하는 웹 앱
내 로컬 환경에서 볼 수 있기를 원하므로,
Redis를 설치합니다.
Redis 공식 사이트는 이쪽

Redis란?



초고속 데이터베이스
부분적으로 사용
실시간 순위 등에 사용

설치



우선 Redis 설치
$brew install redis

설치 완료
==> Downloading from https://akamai.bintray.com/1c/1cf97b4ba2f47029f76979b430c76c760ce467786d85907031a86b58fd4b4960?__gda__=exp=1571060074~hmac=4f9428de0396e8
######################################################################## 100.0%
==> Pouring redis-5.0.6.mojave.bottle.tar.gz
==> Caveats
To have launchd start redis now and restart at login:
  brew services start redis
Or, if you don't want/need a background service you can just run:
  redis-server /usr/local/etc/redis.conf
==> Summary
🍺  /usr/local/Cellar/redis/5.0.6: 13 files, 3.1MB

버전 확인 방법
$redis-server --version
Redis server v=5.0.6 sha=00000000:0 malloc=libc bits=64 build=7a57e483d6f8b275

시작



받은 디렉토리를 열고$bin/rails db:migratebundle install
puma 시작
$bin/rails s

※rails 서버 기동용과, Redis 기동용의 2개 터미널 사용했습니다.새로운 터미널 추가하는 버튼을 눌러 터미널 2개로 해 주세요.(하단에 스쿠쇼)

Redis 시작
$redis-server
55517:C 14 Oct 2019 22:44:35.927 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
55517:C 14 Oct 2019 22:44:35.928 # Redis version=5.0.6, bits=64, commit=00000000, modified=0, pid=55517, just started
55517:C 14 Oct 2019 22:44:35.928 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
                _._                                                  
           _.-``__ ''-._                                             
      _.-``    `.  `_.  ''-._           Redis 5.0.6 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ''-._                                   
 (    '      ,       .-`  | `,    )     Running in standalone mode
 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
 |    `-._   `._    /     _.-'    |     PID: 55517
  `-._    `-._  `-./  _.-'    _.-'                                   
 |`-._`-._    `-.__.-'    _.-'_.-'|                                  
 |    `-._`-._        _.-'_.-'    |           http://redis.io        
  `-._    `-._`-.__.-'_.-'    _.-'                                   
 |`-._`-._    `-.__.-'    _.-'_.-'|                                  
 |    `-._`-._        _.-'_.-'    |                                  
  `-._    `-._`-.__.-'_.-'    _.-'                                   
      `-._    `-.__.-'    _.-'                                       
          `-._        _.-'                                           
              `-.__.-'                                               

55517:M 14 Oct 2019 22:44:35.945 # Server initialized
55517:M 14 Oct 2019 22:44:35.946 * Ready to accept connections

* Ready to accept connections 그리고 나오므로 Redis 시작 OK

이제 로컬에서 웹 앱을 볼 수 있습니다.

종료



종료할 때는 puma와 redis 각각 Ctrl+C로 종료해 주세요.
(Redis를 종료하는 방법은 다른 방법도 있는 것 같습니다만, 이번은 Ctrl+C로 간단하게 종료하는 방법을 취했습니다.)

터미널 추가 버튼 VScode



좋은 웹페이지 즐겨찾기