• centos中proftpd mysql的安装与配置

    proftpd安装 官方网站:http://www.proftpd.org cd /web/soft/ wget ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.4c.tar.gz tar xzvf proftpd-1.3.4c cd proftpd-1.3.4c ./configure --prefix=/web/server/proftpd --with-modules=mod_sql:mod_sql_mysql:mod_quotatab:mod_quotatab_sql --with-includes=/usr/include/mysql --with-libraries=/usr/lib64/mysql vi Ma...
    作者:wuwenlong/2013年3月13日/分类:LINUX服务器配置/阅读:4,326次//评论关闭
  • php编译安装常见错误

    精典错误   /libxmlrpc/encoding.c:101:undefined reference to 'libiconv_close'   collect2: ld returned 1 exit status   make:*** [sapi/fpm/php-fpm] Error 1   解决方法:   #make ZEND_EXTRA_LIBS='-liconv'   错误一、编译php出错   /php-5.3.2/ext/fileinfo/libmagic/apprentice.c:147:internal compiler error:Segmentation fault   Please submi...
    作者:wuwenlong/2013年3月03日/分类:LINUX服务器配置/阅读:2,548次//评论关闭
  • Centos下编译安装php5.4

    Centos 下编译安装php5.4.0,编译安装php-5.4.0 ,php5.4.0 Zend Guard Loader暂时不支持,等待zend官方更新。 1.下载 wget wget http://cn.php.net/distributions/php-5.4.0.tar.gz wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz wget "http://downloads.sourceforge.net/mcrypt/libmcrypt-2.5.8.tar.gz?modtime=1171868460&big_mirror=0" wget "ht...
    作者:wuwenlong/2013年3月03日/分类:LINUX服务器配置/阅读:2,561次//1条评论
  • CentOs中nginx配置错误[emerg]: unknown directive “if(!-e”

    在配置centos中配置nginx,遇到nginx: [emerg] unknown directive "if(!-e" in /web/server/nginx/conf/vhost/baiwuya.wwllcchf.com.conf:8错误。配置中就很简单的几句话 if(!-e $request_filename){ rewrite ^/(.+)$ /index.php last;//url重写规则 } 但是我在重启nginx 的时候报错nginx: [emerg] unknown directive "if(!-e" in /web/server/nginx/conf/vhost/baiwuya...
    作者:wuwenlong/2013年1月22日/分类:LINUX服务器配置/阅读:4,609次//评论关闭
  • centos下vsftpd安装与配置

    1.安装 使用chkconfig --list来查看是否装有vsftpd服务; 使用yum命令直接安装:yum -y install vsftpd 然后为它创建日志文件:touch /var/log/vsftpd.log 2. 启动与配置自启动 使用chkconfig --list来查看vsftpd服务启动项情况; 如果看到的是如下显示的结果: vsftpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off 服务全部都是off的,注意这里的off表...
    作者:wuwenlong/2013年1月15日/分类:LINUX服务器配置/阅读:1,348次//评论关闭
  • centos下nginx的安装与配置

    一.首先安装nginx所需要的pcre库 官方网址:http://www.pcre.org wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.31.tar.gz tar zxvf pcre-8.31.tar.gz cd pcre-8.31/ ./configure make && make install cd ../ checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking fo...
    作者:wuwenlong/2013年1月15日/分类:LINUX服务器配置/阅读:1,760次//评论关闭