Linux apache2.2 php 5.2 mysql 5.0 问题总结

questions 1:$ sudo /usr/local/apache2/bin/apachectl stop
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName

把http.conf 中 ServerName前的注释去掉即可


questions 2:./httpd -k start
httpd: Syntax error on line 53 of /usr/local/apache2/conf/httpd.conf: Cannot load /usr/local/apache2/modules/libphp5.so into server: /usr/local/apache2/modules/libphp5.so: undefined symbol: sqlite……

重新编译php即可


questions 3:configure: error: Cannot find MySQL header files under /usr.
Note that the MySQL client library is not bundled anymore!

解决方法。
1. 查看你的系统有没有安装mysql header
   find / -name mysql.h
  如果有。请指定--with-mysql=/跟你的正常路径。
  如果没有。请看下一步。

2.redhat安装
  rpm -ivh MySQL-devel-4.1.12-1.i386.rpm

3.debian安装
  apt-get install libmysqlclient15-dev

4.最后一步php的配置选项添加--with-mysql=/usr即可!




你可能感兴趣的:(apache,PHP,mysql,linux,sqlite,header)