最新のPHPのインストール
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[さくらのVPS]]
remiリポジトリを使って、最新バージョンのPHPをインストール...
#contents
* PHPのインストール [#c28fd57b]
(参考)
http://www.natzworks.com/digital/2010/444.html
- 現状のバージョンを確認
# rpm -qa | grep php | sort
- インストールできるPHPのバージョンを確認
# yum info php --enablerepo=remi ← remi リポジトリを一...
以下のような結果が表示された。
Available Packages
Name : php
Arch : x86_64
Version : 5.3.6
Release : 1.el5.remi
- 最新のPHP 5.3.6があったので、これを入れる。
# yum install php --enablerepo=remi
- date.timezoneを設定(PHPの処理が速くなる)
(参考)date.timezoneを設定するとPHPが早くなる
http://pentan.info/php/datetimezone_strict.html
viでPHPの設定ファイルを編集する。
# vi /etc/php.ini
以下のように変更する。
[Date]
date.timezone = "Asia/Tokyo"
** PHPのライブラリをインストール [#ffb3c328]
(参考)
http://pentan.info/server/linux/php_yum.html
| php-mbstring | マルチバイト(日本語など)を扱う |
| php-gd | GDライブラリで画像を扱う |
| php-pear | PEARを使用する |
| php-mcrypt | 暗号化関数Mcryptを使用する(phpMyAdminで必...
| php-mysql | MySQLを使用する |
| php-devel | PHPのコンパイル(phpizeコマンド)を行う |
| php-eaccelerator | アクセラレータ(APCを使う場合は、php...
上記のライブラリをyumコマンドでインストールする。
# yum install php php-mbstring php-gd php-pear php-mcrypt
php-mysql php-devel php-eaccelerator --enablerepo=remi
と、一行で入力しても良いがエラーが出たので、個別にインス...
# yum install php-mbstring --enablerepo=remi
# yum install php-gd --enablerepo=remi
# yum install php-pear --enablerepo=remi
# yum install php-mcrypt --enablerepo=remi
(# yum install php-mysql --enablerepo=remi) → エラーになる
# yum install php-devel --enablerepo=remi
* eAccelerator [#e1edc30a]
** eAccelerator とは? [#w3fd2c75]
[[【Vine Linuxで自宅サーバー】eAcceleratorの導入(PHPの高...
>eAcceleratorとは、一度呼び出されたコンパイル済みのPHPス...
一般にアクセラレーターと言われているものです。
** eAccelerator のインストール [#d08d5895]
# yum install php-eaccelerator --enablerepo=remi
** eAcceleratorの設定 [#bfdda86f]
(参考)
http://butabuta30s.sblo.jp/article/42126929.html
eAcceleratorの設定ファイルを編集する。
# vi /etc/php.d/eaccelerator.ini
以下のような内容に変更する。
[eaccelerator]
;;;;;;;;;;;;;;;;;;;
; About this file ;
;;;;;;;;;;;;;;;;;;;
;
; eAccelerator is compatible with Zend Optimizer's loade...
; must be installed after eAccelerator in php.ini. If yo...
; encoded with Zend Encoder then we do not recommend you...
; with eAccelerator.
; You must uncomment one (and only one) line from the fo...
; eAccelerator extension.
extension="eaccelerator.so"
;zend_extension="/usr/lib/php/modules/eaccelerator.so"
;zend_extension_ts="/usr/lib/php/modules/eaccelerator.so"
;extension="eaccelerator.dll"
;zend_extension_ts="c:\php4\eaccelerator.dll"
;zend_extension="c:\php4\eaccelerator.dll"
; The amount of shared memory (in megabytes) that eAccel...
; "0" means OS default. Default value is "0".
eaccelerator.shm_size = "32" → とりあえず「0」を「32」に...
; The directory that is used for disk cache. eAccelerato...
; code, session data, content and user entries here. Th...
; stored in shared memory also (for more quick access). ...
; "/var/cache/php-eaccelerator".
eaccelerator.cache_dir = "/var/cache/php-eaccelerator"
; Enables or disables eAccelerator. Should be "1" for en...
; "0" for disabling. Default value is "1".
eaccelerator.enable = "1"
; Enables or disables internal peephole optimizer which ...
; execution. Should be "1" for enabling or "0" for disab...
; Default value is "1".
eaccelerator.optimizer = "1"
; Enables or disables debug logging. Setting this to 1 w...
; to the log file about the cach hits of a file.
eaccelerator.debug = 0
; Set the log file for eaccelerator. When this option is...
; will be logged to stderr
eaccelerator.log_file = "/var/log/httpd/eaccelerator_log"
; A string that's prepended to all keys. This allows two...
; same key names to run on the same host by setting this...
; configuration file for the whole webserver.
eaccelerator.name_space = ""
; Enables or disables PHP file modification checking. Sh...
; for enabling or "0" for disabling. You should set it t...
; to recompile PHP files after modification. Default val...
eaccelerator.check_mtime = "1"
; Determine which PHP files must be cached. You may spec...
; patterns (for example "*.php *.phtml") which specifies...
; not to cache. If pattern starts with the character "!"...
; files which are matched by the following pattern. Defa...
; means - all PHP scripts will be cached.
eaccelerator.filter = ""
; When eAccelerator fails to get shared memory for new s...
; all scripts which were not accessed at last "shm_ttl" ...
; memory. Default value is "0" that means - don't remove...
; shared memory.
eaccelerator.shm_ttl = "0"
; When eAccelerator fails to get shared memory for new s...
; remove old script if the previous try was made more th...
; seconds ago. Default value is "0" that means - don't t...
; files from shared memory.
eaccelerator.shm_prune_period = "0"
; Enables or disables caching of compiled scripts on dis...
; on session data and content caching.
; Default value is "0" that means - use disk and shared ...
eaccelerator.shm_only = "0"
; The script paths that are allowed to get admin informa...
; controls
eaccelerator.allowed_admin_path = ""
- ディレクトリの確認(パーミッション)
eaccelerator.cache_dir = "/var/cache/php-eaccelerator"
eaccelerator.log_file = "/var/log/httpd/eaccelerator_log...
- Apache再起動で設定変更を反映
# /etc/rc.d/init.d/httpd restart
終了行:
[[さくらのVPS]]
remiリポジトリを使って、最新バージョンのPHPをインストール...
#contents
* PHPのインストール [#c28fd57b]
(参考)
http://www.natzworks.com/digital/2010/444.html
- 現状のバージョンを確認
# rpm -qa | grep php | sort
- インストールできるPHPのバージョンを確認
# yum info php --enablerepo=remi ← remi リポジトリを一...
以下のような結果が表示された。
Available Packages
Name : php
Arch : x86_64
Version : 5.3.6
Release : 1.el5.remi
- 最新のPHP 5.3.6があったので、これを入れる。
# yum install php --enablerepo=remi
- date.timezoneを設定(PHPの処理が速くなる)
(参考)date.timezoneを設定するとPHPが早くなる
http://pentan.info/php/datetimezone_strict.html
viでPHPの設定ファイルを編集する。
# vi /etc/php.ini
以下のように変更する。
[Date]
date.timezone = "Asia/Tokyo"
** PHPのライブラリをインストール [#ffb3c328]
(参考)
http://pentan.info/server/linux/php_yum.html
| php-mbstring | マルチバイト(日本語など)を扱う |
| php-gd | GDライブラリで画像を扱う |
| php-pear | PEARを使用する |
| php-mcrypt | 暗号化関数Mcryptを使用する(phpMyAdminで必...
| php-mysql | MySQLを使用する |
| php-devel | PHPのコンパイル(phpizeコマンド)を行う |
| php-eaccelerator | アクセラレータ(APCを使う場合は、php...
上記のライブラリをyumコマンドでインストールする。
# yum install php php-mbstring php-gd php-pear php-mcrypt
php-mysql php-devel php-eaccelerator --enablerepo=remi
と、一行で入力しても良いがエラーが出たので、個別にインス...
# yum install php-mbstring --enablerepo=remi
# yum install php-gd --enablerepo=remi
# yum install php-pear --enablerepo=remi
# yum install php-mcrypt --enablerepo=remi
(# yum install php-mysql --enablerepo=remi) → エラーになる
# yum install php-devel --enablerepo=remi
* eAccelerator [#e1edc30a]
** eAccelerator とは? [#w3fd2c75]
[[【Vine Linuxで自宅サーバー】eAcceleratorの導入(PHPの高...
>eAcceleratorとは、一度呼び出されたコンパイル済みのPHPス...
一般にアクセラレーターと言われているものです。
** eAccelerator のインストール [#d08d5895]
# yum install php-eaccelerator --enablerepo=remi
** eAcceleratorの設定 [#bfdda86f]
(参考)
http://butabuta30s.sblo.jp/article/42126929.html
eAcceleratorの設定ファイルを編集する。
# vi /etc/php.d/eaccelerator.ini
以下のような内容に変更する。
[eaccelerator]
;;;;;;;;;;;;;;;;;;;
; About this file ;
;;;;;;;;;;;;;;;;;;;
;
; eAccelerator is compatible with Zend Optimizer's loade...
; must be installed after eAccelerator in php.ini. If yo...
; encoded with Zend Encoder then we do not recommend you...
; with eAccelerator.
; You must uncomment one (and only one) line from the fo...
; eAccelerator extension.
extension="eaccelerator.so"
;zend_extension="/usr/lib/php/modules/eaccelerator.so"
;zend_extension_ts="/usr/lib/php/modules/eaccelerator.so"
;extension="eaccelerator.dll"
;zend_extension_ts="c:\php4\eaccelerator.dll"
;zend_extension="c:\php4\eaccelerator.dll"
; The amount of shared memory (in megabytes) that eAccel...
; "0" means OS default. Default value is "0".
eaccelerator.shm_size = "32" → とりあえず「0」を「32」に...
; The directory that is used for disk cache. eAccelerato...
; code, session data, content and user entries here. Th...
; stored in shared memory also (for more quick access). ...
; "/var/cache/php-eaccelerator".
eaccelerator.cache_dir = "/var/cache/php-eaccelerator"
; Enables or disables eAccelerator. Should be "1" for en...
; "0" for disabling. Default value is "1".
eaccelerator.enable = "1"
; Enables or disables internal peephole optimizer which ...
; execution. Should be "1" for enabling or "0" for disab...
; Default value is "1".
eaccelerator.optimizer = "1"
; Enables or disables debug logging. Setting this to 1 w...
; to the log file about the cach hits of a file.
eaccelerator.debug = 0
; Set the log file for eaccelerator. When this option is...
; will be logged to stderr
eaccelerator.log_file = "/var/log/httpd/eaccelerator_log"
; A string that's prepended to all keys. This allows two...
; same key names to run on the same host by setting this...
; configuration file for the whole webserver.
eaccelerator.name_space = ""
; Enables or disables PHP file modification checking. Sh...
; for enabling or "0" for disabling. You should set it t...
; to recompile PHP files after modification. Default val...
eaccelerator.check_mtime = "1"
; Determine which PHP files must be cached. You may spec...
; patterns (for example "*.php *.phtml") which specifies...
; not to cache. If pattern starts with the character "!"...
; files which are matched by the following pattern. Defa...
; means - all PHP scripts will be cached.
eaccelerator.filter = ""
; When eAccelerator fails to get shared memory for new s...
; all scripts which were not accessed at last "shm_ttl" ...
; memory. Default value is "0" that means - don't remove...
; shared memory.
eaccelerator.shm_ttl = "0"
; When eAccelerator fails to get shared memory for new s...
; remove old script if the previous try was made more th...
; seconds ago. Default value is "0" that means - don't t...
; files from shared memory.
eaccelerator.shm_prune_period = "0"
; Enables or disables caching of compiled scripts on dis...
; on session data and content caching.
; Default value is "0" that means - use disk and shared ...
eaccelerator.shm_only = "0"
; The script paths that are allowed to get admin informa...
; controls
eaccelerator.allowed_admin_path = ""
- ディレクトリの確認(パーミッション)
eaccelerator.cache_dir = "/var/cache/php-eaccelerator"
eaccelerator.log_file = "/var/log/httpd/eaccelerator_log...
- Apache再起動で設定変更を反映
# /etc/rc.d/init.d/httpd restart
ページ名: