php-7x phpize를 이용한 mysql 모듈 설치
# Script/PHP2021. 7. 26. 10:14php-7x phpize를 이용한 mysql 모듈 설치

설치환경 [darksharavim.tistory.com] cat /etc/redhat-release CentOS Linux release 7.7.1908 (Core) php버전 [darksharavim.tistory.com] /usr/local/php7x/bin/php -v PHP 7.0.19 (cli) (built: Jul 23 2021 14:25:39) ( NTS ) Copyright (c) 1997-2017 The PHP Group Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies mysql관련 모듈설치상태 [darksharavim.tistory.com] /usr/local/php7x/bin/php -m | grep mysql mysqli..

php ext모듈 readline설치
# Script/PHP2019. 12. 11. 17:02php ext모듈 readline설치

phpize를 통해서 설치시 아래와 같이 오류 발생 에러. configure: error: Please reinstall libedit - I cannot find readline.h 해결. # yum -y install libedit libedit-devel 에러. fatal error: readline/readline.h: No such file or directory 해결. # yum -y install readline-devel

image