1. apache 설치(httpd)
yum install httpd*
2. mysql 설치
yum install mysql*
yum install mysql-server
3. php 설치
yum install php*
4. php-mysql 연동 설치
yum install php-mysql
홈폴더에 test.php 만들고 브라우저로 테스트~
<?php
phpinfo();
?>
==========================================================
설정관련 참고사항
아파치 2.2.15
실행 : /etc/init.d OR service httpd start
설정파일 : /etc/httpd/conf , /etc/httpd/conf.d/php.conf
UserDir public_html (372)
Starting httpd: httpd: apr_sockaddr_info_get() failed for test
=> 276라인 ServerName 지정해주면 나타나지 않음
372라인 UserDir public_html
401라인 DirectoryIndex index.html index.html.var 확인
758라인 AddDefaultCharset UTF-8
* AddType application/x-httpd-php .php .htm .php3 .html
* AddType application/x-httpd-php-source .phps
=> PHP인식 위에 2가지 옵션을 적었는데 6.3 버전 RPM구성시 적지 않아도
자동으로 PHP인식 확인(httpd.conf가 아닌 php.conf에 설정되어 있는것 같음)
홈폴더 : /var/www/html
기본 index.html
centos6.3 HDD(하드디스크) 추가 하기 (ext4) (0) | 2013.06.19 |
---|---|
[CentOS] 6.3 APM RPM설치시 실행 및 설정파일 위치 (0) | 2013.06.18 |
CentOS 6.3 X64 테스트 서버 설정 (0) | 2013.06.14 |
Win7 + Centos5 멀티부팅시 참고점 (1) | 2013.06.10 |
CentOS 6.3 selinux 사용 안하기. (0) | 2012.12.04 |