본문 바로가기

solaris

[Solaris] PhpStorm 에서 sftp 접속 실패 리눅스에 sftp 연결은 아무렇지도 않게 잘 되던 녀석이 솔라리스로 옮겨가니 안된다. 우선 솔라리스의 ssh 설정을 바꿔야 한다. /etc/ssh/sshd_config 를 열어서 아래를 주석 처리 하고 ssh를 재실행하면 된다. ---------------------------------------------------------------------------- #PAMAuthenticationViaKBDInt yes ---------------------------------------------------------------------------- bash-3.00# svcadm restart ssh ------------------------------------------------------..
[Solaris] PDO_PGSQL 설치 우선 PostgreSQL binary 를 다운 받아서 /usr/local/pgsql 에 이동했다. 그리고 pecl.php.net에서 pdo_pgsql을 다운받고 ---------------------------------------------------------------------- bash-3.00# phpize bash-3.00# ./configure --with-pdo-pgsql=/usr/local/pgsql (...) configure: error: Cannot find php-config. Please use --with-php-config=PATH ---------------------------------------------------------------------- 항상 에러는 날 ..
[Solaris] oci8 설치 -------------------------------------------------------------- bash-3.00# pecl install oci8 Configuring for: PHP Api Version: 20090626 Zend Module Api No: 20090626 Zend Extension Api No: 220090626 /usr/local/bin/autoconf: /usr/local/bin/autom4te: not found -------------------------------------------------------------- 첨부터 오류... 해당 경로에 가보면 다 있다..ㅡㅡ; 다음과 같이 링크 잡아주면 오류는 사라진다. ----------------------..