Installing Xdebug on CentOS
Programming/etc 2014. 9. 6. 17:43 |1. xdebug 를 설치하려면, php-devel, php-pear 가 필요하다.
yum install php-devel
yum install php-pear
2. gcc, g++ 컴파일러 설치
yum install gcc gcc-c++ autoconf automake
3. Compile Xdebug
pecl install Xdebug
4. 위의 과정으로 모두 설치하였으면 php.ini에 xdebug를 추가한다.
gvim /etc/php.ini
[xdebug]
zend_extension="/usr/lib64/php/modules/xdebug.so"
xdebug.remote_enable = 1
5. apache server 를 재시작한다.
service httpd restart
6. 잘 설치되었는지 확인
<?php phpinfo() ?> 를 통하여 확인.
참고 사이트:
http://www.mysolutions.it/phpstorm-server-xdebug-configuration/
'Programming > etc' 카테고리의 다른 글
CentOS7 QT5 Setup (0) | 2014.09.15 |
---|---|
Linux PHPStrom 설정 (0) | 2014.09.06 |
LAMP (Linux Based Apache, MariaDB, PHP) Install (0) | 2014.08.23 |
Python 학습 관련 자료 및 문서, WebSite (0) | 2014.03.25 |
Python PySide 설치 (1) | 2013.03.07 |