목록전체 글 (910)
변군이글루

PHP redis 확장(Extension)을 설치하는 방법 redis 설치 $ yum -y install gcc gcc-c++ make jemalloc tcl $ yum install redis $ systemctl --now enable redis $ redis-cli -h 127.0.0.1 -p 6379 ping redis extension 모듈 설치 $ wget https://github.com/phpredis/phpredis/archive/develop.zip $ unzip develop.zip $ cd phpredis-develop $ /usr/local/php/bin/phpize $ ./configure --with-php-config=/usr/local/php/bin/php-config $ ..

mysql(mysql 5.7) rpcgen 에러 컴파일 시 에러 CMake Error at rapid/plugin/group_replication/rpcgen.cmake:100 (MESSAGE): Could not find rpcgen Call Stack (most recent call first): rapid/plugin/group_replication/CMakeLists.txt:36 (INCLUDE) 패키지로 rpcgen 설치 $ yum -y --enablerepo=PowerTools install rpcgen Error: Unknown repo: 'PowerTools' rpm 패키지 수동으로 다운로드 받아 설치 ##https://centos.pkgs.org/8/centos-powertools-x86..

Let's Encrypt(certbot) EPEL 패키지 설치 # Extra Packages for Enterprise Linux (or EPEL) 패키지 설치 $ yum install -y epel-release certbot 패키지 설치 및 디렉터리 권한 설정 $ yum install -y certbot $ mkdir -p /var/lib/letsencrypt/.well-known $ cd /var/lib/ $ chgrp nobody letsencrypt $ chmod g+s letsencrypt 인증서 생성 $ certbot certonly --agree-tos --email admin@sangchul.kr --webroot -w /var/lib/letsencrypt/ -d ssl.sangchul...