gcc가 설치되어 있는지 확인하세요
gcc -v
gcc가 설치되어 있다면, 버전이 표시됩니다
설치되어 있지 않은 경우 온라인으로 설치하세요
yum –y install gcc-c++
Unzip
[root@localhost soft]# tar -zxvf redis-3.0.0
압축 해제 후 redis 폴더를 볼 수 있습니다
make를 컴파일하려면 redis 디렉토리에 들어가세요
cd redis-3.0.0 make
폴더를 생성하세요
mkdir /usr/local/redis
설치할 디렉토리를 지정하세요
make install PREFIX=/usr/local/redis
우리가 설치한 디렉터리에 bin을 입력합니다. 폴더 시작
cd /usr/local/redis/bin ./redis-server
성공적인 시작 효과
redis 소스 패키지에 redis.conf 구성 파일을 복사합니다. /usr/local/redis/bin/
먼저 압축이 풀린 redis-3.0.0으로 점프한 다음 구성 파일 redis.conf
cd soft redis-3.0.0.0 cp redis.conf /usr/local/redis/bin
bin 디렉토리에 있는 redis.conf 파일을 수정하고 daemonize를 다음에서 변경합니다. 아니오 예
먼저 우리에게로 이동하세요. /usr/local/redis/bin을 다시 수정하세요
cd /usr/local/redis/bin vi redis.conf
start
./redis-server redis.conf ./redis-cli
위 내용은 Linux centos7에 redis를 설치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!