我刚刚通过 iweb 购买了网络服务器,说实话,我不知道如何正确设置专用网络服务器。
我已经能够安装 httpd、php、mysql,但似乎还不完整。此外,如果我想使用 yum 命令安装最新版本的 php 5.3.6,我该怎么做。
I need help with
->Installing php 5.3.6 along with apc
->Make sure it is compatible with the rest of the configuration
其他 php、httpd 配置可加快 php 速度。我本来想问如何将 nginx 设置为代理服务器,但我认为最好将其作为一个单独的问题。
答案1
干得好:
yum 安装 php53 php53-mysql php-pear gcc
获得http://pecl.php.net/get/APC-3.1.9.tgz
tar zxf APC-3.1.9.tgz
cd APC-3.1.9;phpize
./configure--启用-apc
制作&&制作安装
将 APC 节添加到 /etc/php.ini:
; APC Settings
extension= "apc.so"
apc.enabled=1
apc.shm_segments=1
apc.optimization=0
apc.shm_size=64M
服务 httpd 重启
HTH,但是如果您无法在线找到它,那么您可能很难管理该服务器......