当前位置: 移动技术网 > IT编程>开发语言>PHP > php的安装

php的安装

2019年06月19日  | 移动技术网IT编程  | 我要评论
apache         tar xf httpd-2.2.19.tar  &nb

apache
        tar xf httpd-2.2.19.tar
        cd   httpd-2.2.19  ls
   编译: ./configure --prefix=/usr/loacl/apache  --sysconfdir=/etc/httpd --enable-ssl --enable-modules=most --enable-mods-shared=most  --enable-so
        make
        make install
       弄一个httpd,
       vi /etc/init.d/httpd  apachectl=/usr/local/apache/bin/apachectl
        httpd=/usr/local/apache/bin/httpd
      cd  /etc/httpd  ls
      vi /etc/httpd/conf/httpd.conf
     启动   path=$path:/usr/local/apache/bin
   
         apachectl start
      chkconfig --add httpd
  cp  httpd   /etc/init.d/httpd
  可能会出现不能启动
   vi /etc/httpd/conf/httpd.conf  pidfile "/var/run/httpd.pid"
   killall httpd
     chkconfig --level 2345 httpd on   
php
    tar xf php-5.3.6.tar
   cd  php-5.3.6
   编译 ./configure --prefix=/usr/local/php5 --sysconfdir=/etc/php --enable-mbstring --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql
    make      
make install 
 cp php.ini-production /etc/php/php.ini
cd   /etc/php
vi  php.ini
cd  php-5.3.6
cp php.ini-production /usr/loacl/ph5/lib/php.ini
此时还不能和apache一起工作
 vi /etc/httpd/conf/httpd.conf  addtype application/x-httpd-php .php    addtype application/x-httpd-php-source .phps
此时还无法识别index.php
     添加<ifmodule dir_module>directory index.php
          
service httpd start
cd /usr/local/apache/htdocs
<?php
$link=mysql_connect('127.0.0.1','root','');
if ($link)
    echo "sucess"
else
     echo "failure"
?>
本文出自 “linux” 博客

如您对本文有疑问或者有任何想说的,请 点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网