サーバ快適化計画続行中です
XCacheeAccelerator の導入が出来なかったので
APC を導入する事にしました
早速、以下の手順でインストールしてみました

APC導入方法
①.pecl install APC
pecl を使用して APCを導入します。
エラーコメント
sh: phpize5: command not found
ERROR: `phpize’ failed

上記内容が出力した場合は以下の設定が必要です
Ⅰ.cd /usr/bin
/usr/bin に移動します。
Ⅱ.ln -s phpize phpize5
phpize5 を作成します
②.以下の内容が表示した場合は、no を選択します。
Enable per request file info about files used from the APC cache [no] :
③.以下の内容が表示した場合は、no を選択します。
Enable spin locks (EXPERIMENTAL) [no] :
④.以下のメッセージが出力されるまで放置します
Build process completed successfully
Installing ‘/usr/lib64/php5/apc.so’
install ok: channel://pecl.php.net/APC-3.1.6
configuration option “php_ini” is not set to php.ini location
You should add “extension=apc.so” to php.ini

無事、APC-3.1.6 が導入する事が出来ました
今度は、環境を設定します♪♪