Redis 설치 (Mac Rails VScode)
내 로컬 환경에서 볼 수 있기를 원하므로,
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:migrate
와 bundle 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
Reference
이 문제에 관하여(Redis 설치 (Mac Rails VScode)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/s56258/items/a8ce88b7830ebafb8453텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)