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 |
CentOS 5.0 기준
아파치 2.2.3
실행 : /etc/init.d OR service httpd start
설정파일 : /etc/httpd/conf
- 747라인 AddDefaultCharset UTF-8
- 391라인 디렉토리 인덱스 확인
AddType application/x-httpd-php .php .htm .php3 .html
AddType application/x-httpd-php-source .phps
UserDir public_html (362)
<Directory /home/*/public_html> (370-381)
홈폴더 : /var/www/html
기본 index.html
Mysql 5.0.45
실행 : /etc/init.d OR service mysqld start
DB파일위치 : /var/lib/mysql
소켓위치 : /var/lib/mysql/mysql.sock
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
기타관련 파일 위치 : /usr/bin
mysqladmin도 여기에 위치함
PHP 5.1.6
설정파일 : /etc/php.ini
참고로 최신 CentOS 5.5 버전은
PHP 5.1.6
mysql 5.0.77
아파치 2.2.3
출처:본인글
리눅스 하드디스크 배드 블럭 점검 badblocks (0) | 2009.07.14 |
---|---|
리눅스 HDD(하드디스크) 추가 하기 (0) | 2009.07.13 |
ethtool 설정하기 (0) | 2009.06.04 |
CentOS 브릿지 방화벽 정책 (2) | 2009.05.31 |
CentOS5 리눅스 브리지 방화벽 구축 (1) | 2009.05.31 |