Database
[Redis/Error] You need tcl 8.5 or newer in order to run the Redis test 에러 해결
2023.07.04
에러메시지 You need tcl 8.5 or newer in order to run the Redis test Dockerfile 작성해서 이미지 빌드하면서 생긴 에러.. 대부분 yum install -y tcl 설치해주면 된다했지만, 해도 해결 안됨. 알고보니 runtest 실행시킬 때 which 모듈이 필요한데, 그게 없어서 그런거였음. 요즘은 오픈소스에 필요모듈 설치해주지 않나......? yum install -y which 답이 상위 검색에 노출되어있었는데, 영어 읽기 귀찮아하다가 삽질함.. ^_^.. https://github.com/redis/redis/issues/1218 make test fails · Issue #1218 · redis/redis Your documentation st..
Database
[Cache/Linux] Redis 수동 설치
2023.06.23
[설치 환경] Linux CentOS7 yum을 이용하지 않고 Redis를 설치합니다. 경로 잘 확인해주세요. 1. Redis 압축 파일 설치 다른 버전을 설치하고 싶다면 아래 링크를 참고해주세요. http://download.redis.io/releases/ Index of /releases/ download.redis.io 여기서는 Redis 5.0.7버전을 설치합니다. wget http://download.redis.io/releases/redis-5.0.7.tar.gz tar zxvf redis-5.0.7.tar.gz cd redis-5.0.7 2. 설치 및 config 설정 install_server.sh는 압축파일 아래 utils 폴더 안에 있습니다. install_server 셸 스크립트는 ..
Database
[PostgreSQL/Linux] PostgreSQL 수동 설치
2023.06.23
[설치 환경] Linux CentOS yum을 이용하지 않고 PostgreSQL을 설치합니다. 경로를 잘 확인해주세요. 1. 필요 패키지 설치 postgresql 설치에 필요한 패키지들을 설치해줍니다. yum -y install gcc gcc-c++ make autoconf readline readline-devel zlib zlib-devel openssl openssl-devel gettext gettext-devel python python-devel wget 2. PostgreSQL 압축 파일 설치 다른 버전 설치하고 싶다면 아래 링크를 참고해주세요. http://ftp.postgresql.org/pub/source/ Index of /pub/source/ ftp.postgresql.org 여기서..