로그인

검색

Server
2012.05.20 23:24

우분투 PHP 설치

조회 수 11917 추천 수 0 댓글 1
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄


-- 아래 두 패키지를 먼저 설치하자.
# apt-get install libxml2-dev libxslt-dev

1. 설치

-- 최신버전(5.2.9) 내려받기
# wget http://kr.php.net/get/php-5.2.9.tar.gz/from/this/mirror

-- 설치 컴파일 실행
# tar -xvf php-5.2.9.tar.gz
# cd php-5.2.9

-- 컴파일 실행
# ./configure --prefix=/usr/local/php \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-zlib-dir=/usr/local/ \
--with-xml \
--with-libxml-dir=/usr/local/ \
--with-xsl=/usr/local/ \
--with-dom=/usr/local/ \
--with-iconv \
--enable-sockets \
--enable-dbx \
--with-mysql=/usr/local/mysql/ \
--with-mysqli \
--with-oracle=/app/oracle/

-- 설치과정중에 오류가 발생하는 것은 환경변수 미설정 및 패키지가 없어서이다. 알맞게 설치하자.

# make
# make install

-- 설정 파일 복사
# cp php.ini-dist /usr/local/apache2/conf/php.ini

2. 설정

** 설정법은 윈도우 버전과 동일하기 때문에 꼭 알아두도록하자.

# vi /usr/local/apache2/conf/php.ini

-- 파일 업로드 용량을 늘일 경우 아래의 시간도 늘여야한다.
 255 max_execution_time = 30     ; Maximum execution time of each script, in seconds
 256 max_input_time = 60     ; Maximum amount of time each script may spend parsing request data

-- 개발자용 디버깅 설정 (오류 출력을 설정할 수 있다)
 305 error_reporting = E_ALL & ~E_NOTICE
 322 display_errors = On

-- 개발자용 보안상 off
 419 register_globals = Off

-- POST 전송 용량 설정 (파일 업로드 용량을 늘일 경우 같이 늘여줘야한다.)
 439 post_max_size = 8M

-- 인크루트 패치 설정 주석을 풀어주자.
 473 ; UNIX: "/path1:/path2"
 474 include_path = ".:/php/includes"

-- php 관련 모듈 경로
 491 extension_dir = "./"

-- 파일 업로드 용량 설정
 552 upload_max_filesize = 2M

-- 610 줄부터 654줄까지 사용할 모듈을 설정할 수 있다. 필요한 건 주석을 풀어주자.
 610 extension=php_bz2.dll
 616 extension=php_gd2.dll
 620 extension=php_imap.dll
 630 extension=php_mysql.dll
 631 extension=php_mysqli.dll
 652 extension=php_xmlrpc.dll
 653 extension=php_xsl.dll
 654 extension=php_zip.dll

-- 세션 저장 경로 : 변경할 경우 주석을 지우고, 경로를 설정한다.
 992 ;session.save_path = "/tmp"

** 아파치 설정정보에 PHP 적용

# vi /usr/local/apache2/conf/httpd.conf

306     AddType application/x-compress .Z
307     AddType application/x-gzip .gz .tgz
-- 아래 php 어플리케이션 등록
AddType application/x-httpd-php .php
AddType application/x-httpd-php-souce .phps

-- 맨 하단 php.ini 파일 경로를 삽입
PHPIniDir "/usr/local/apache2/conf/"

-- 아파치를 재시작한다.
# /etc/init.d/httpd restart

웹서비스 루트 경로에 phpinfo 파일을 만들어 확인하자.
test.php

<?php
phpinfo();
?>

http://localhost/test.php


  • ?
    보석 2012.05.20 23:40
    - PHP설정
    => #vi /etc/httpd/conf.d/php.conf
     
    *아래 두 줄을 아래처럼 고친다. (브라우저에서 .php 확장자 인식하게)
     => AddHandler php5-script .php .htm .html
     => AddType application /x-httpd-php-source .phps .php .html .html


    - PHP.ini 설정
     => #vi /etc/php.ini

     * post, get, 쿠키, 세션 등의 변수를 일반 변수로
      => register_globals=On

     * 업로드 용량 제한 풀기
      => defalut_socket_timeout = 600
           post_max_size = 20M
           memory_limit = 20M
           upload_max_filesize = 20M

      * PHP Language Option (php 문서 작성 시 태그옵션)
      => short_open_tag=On
    ***********  ex> phpinfo.php 파일을 작성한다치면******************************************
      <? php phpinfo(); ?> 이게 정석인 문장이나, <? phpinfo(); ?> 이 형태로 태그를 줄이는 설정을 해준다.
    **********************************************************************************

     - php 최적화 (ZendOptimizer 설치)
     * php 버전확인
     => #php -v (5.3 이상 버전은 Optimizer가 지원하지 않는다.)

     * Zend Guard Loader 설치 (php 5.3이상)

     * 다운 후 압축풀기
     => #tar zxvf ZendGuardLoader-php-5.3-linux-glibc-i386.tar.gz

     * 모듈 복사
     => #cp ZendGuardLoader-php-5.3-linux-glibc-i386/php-5.3.x/ZendOptimizer.so /usr/lib/httpd/modules/

     * 내용 추가
     => #vi /etc/php.ini
       제일 마지막 줄에 작성
     [Zend]
     zend_extension=/usr/lib/httpd/modules/ZendGuardLoader.so

    => ZendOptimizer 설치 확인
     #php -v
     제일 마지막 줄에 with Zend Guard ~~~ 라는 줄이 나오면 성공

리눅스

유용한 정보 및 자료

  1. [우분투] screen 명령어

    Date2013.02.04 CategoryServer By보석 Views33145
    Read More
  2. 우분투 innoDB 활성화하기

    Date2012.11.16 CategoryServer By보석 Views9004
    Read More
  3. 우분투 업데이트 서버 변경

    Date2012.11.11 CategoryServer By보석 Views12229
    Read More
  4. 우분투 트림활성화 및 수동 트림하기

    Date2012.11.04 CategoryServer By보석 Views20311
    Read More
  5. 우분투 레이드0 설치 install Ubuntu RAID0

    Date2012.10.23 CategoryServer By보석 Views12286
    Read More
  6. ssl 항상 적용하기 + http->https로 rewrite

    Date2012.08.18 CategoryServer By보석 Views20458
    Read More
  7. [우분투] SSH Server 설치하기

    Date2012.08.18 CategoryServer By보석 Views15481
    Read More
  8. Startssl.com 무료 ssl 인증서 받기

    Date2012.08.17 CategoryServer By보석 Views13228
    Read More
  9. Startssl.com 무료 ssl 인증서 서버 설정

    Date2012.08.17 CategoryServer By보석 Views31627
    Read More
  10. 우분투 사용자 패스워드 비번 변경

    Date2012.07.26 CategoryServer By보석 Views21304
    Read More
  11. 링크하드 nginx rewrite 해결방법

    Date2012.05.30 CategoryServer By보석 Views25668
    Read More
  12. vi 에디터 - 검색, 치환, 정규식, 명령어

    Date2012.05.20 CategoryServer By보석 Views18865
    Read More
  13. 우분투 PHP 설치

    Date2012.05.20 CategoryServer By보석 Views11917
    Read More
  14. 우분투 서버(커맨드 모드)에서 외부 아이피 알아내기

    Date2012.04.05 CategoryServer By보석 Views14649
    Read More
  15. nginx 첨부파일 용량 설정

    Date2012.04.02 CategoryServer By보석 Views19150
    Read More
  16. 우분투 원격데스크톱 설정

    Date2012.03.30 CategoryServer By보석 Views12589
    Read More
  17. 우분투 메일서버

    Date2012.03.30 CategoryServer By보석 Views10584
    Read More
  18. 우분투 DB백업 복원

    Date2012.01.01 CategoryServer By보석 Views11096
    Read More
  19. 우분투에 메일서버를 설치하자.

    Date2011.12.10 CategoryServer By보석 Views11052
    Read More
  20. 설치된 패키지 깨끗이 삭제하지

    Date2011.11.03 CategoryServer By보석 Views24709
    Read More
Board Pagination Prev 1 2 3 4 Next
/ 4