pchero on October 5th, 2007

<!—————————– 글의 본문………………………………………시작–> “error in loading shared libraries libmysqlclient.so.15:     cannot open shared object file: No such file or directory”    MySQL의 라이브러리를 열지 못한다는 메시지이다. 컴파일 할 때 MySQL의 동적 라이브러리를 사용하는데, 동적 라이브러리이므로 실행시에도 라이브러리가 필요하게 된다.    libmysqlclient.so가 /usr/lib 혹은 /usr/lib/mysql 디렉터리에 존재하지 않을 경우에 발생하는 문제이다.    가장 간단한 해결법으로는 […]

Continue reading about mysql 에러 – libmysqlclient.so.15

pchero on October 5th, 2007

–with-mysql=/usr/local/mysql (mysql 설정)–with-apache-install=/usr/local/apach2 (libphp5.so 생성)–with-gd (gd옵션)–with-jpeg-dir=/usr/lib (jpeg 옵션)–with-freetype-dir=/usr/lib (freetype 옵션)–with-png-dir=/usr/lib (png 옵션)–with-gif-dir=/usr/lib (gif 옵션)–with-zlib-dir=/usr/lib (zlib 옵션)

Continue reading about PHP 설치 옵션

pchero on October 5th, 2007

 APM 설치…    php5 설치시 apache2 디렉토리에 libphp5.so 파일 생성옵션   –with-apache-install=/usr/local/apache디렉토리   추가.

Continue reading about apm 설치시 libphp5.so 파일 생성 옵션

pchero on October 5th, 2007

 1. MYSQL 설치  – 홈페이지 : http://www.mysql.org  – MYSQL 다운받기wget ftp://ftp.superuser.co.kr/mysql/mysql-4.1.8.tar.gz  – 압축해제tar xvfz mysql-4.1.8.tar.gz  – 디렉토리 이동cd mysql-4.1.8  – configure./configure –prefix=/usr/local/mysql –localstatedir=/usr/local/mysql/data –with-charset=euckr  – configure 옵션 설명–prefix=/usr/local/mysql : 설치될 MYSQL 의 위치지정 –localstatedir=/usr/local/mysql/data : MYSQL 의 데이터베이스 데이터들이 저장될 위치지정 –with-charset=euckr : MYSQL 에서 한글지원을 하기위한 설정. 주의할 것은 예전버전에서는 euc_kr 로 지정을 하였으나 […]

Continue reading about [APM] MYSQL 설치

pchero on October 5th, 2007

 1. libxml2 설치  – libxml2 는 XML C 파서( parser ) 로서 리눅스의 Gnome 프로젝트를 위한 툴킷되는 도구이며 MIT 라이센스하에서는 자유로는 자유로운 소프트웨어임. 또한 libxml2 는 Linux 뿐 아니라 Unix, 윈도우, Cygwin, MacOS, OS/2 등 다양한 시스템에서 큰 문제없이 설치되고 작동될 수 있음.  – 홈페이지 : http://www.xmlsoft.org  – libxml2 다운받기wget ftp://ftp.superuser.co.kr/etc/libxml2-2.6.16.tar.gz  – 압축풀기tar xvfz libxml2-2.6.16.tar.gz […]

Continue reading about libxml2 설치