리눅스 php ssh2 적용하기 위한 모듈 설치
페이지 정보
작성자 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 5,209회 작성일 16-05-30 21:34본문
1. libssh2 설치하기
# wget http://www.libssh2.org/download/libssh2-1.1.tar.gz
# tar xvfz libssh2-1.1.tar.gz
# cd libssh2-1.1
# ./configure --with-openssl --without-libgcrypt-prefix --without-libz-prefix
# make
# make install
2. ssh2 설치
# cd /tmp
# wget http://pecl.php.net/get/ssh2-0.11.0.tgz
# tar xvfz ssh2-0.11.0.tgz
# cd ssh2-0.11.0
# /usr/local/php/bin/phpize
# ./configure --with-php-config=/usr/local/php/bin/php-config --with-ssh2=/usr/lib
# make
# cd modules
# cp ssh2.so /usr/local/php/lib/
# vi /usr/local/php/lib/php.ini
추가 : extension=ssh2.so
# /usr/local/php/bin/php -m
ssh2 모듈이 로드되었는지 확인
댓글목록
등록된 댓글이 없습니다.