Apache + mongrel + rails 问题和解决办法一览

问题1:

     执行 sudo /etc/init.d/apache2 reload 出现问题: 

写道
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName

    解决办法:

    编辑 /etc/apache2/apache.conf 插入以下代码:

   

ServerName: localhost

   

问题2:

   执行 mongrel_cluster_ctl status 出现以下错误提示:

  

写道
No such file or directory - /etc/mongrel_cluster (Errno::ENOENT)

    

  解决办法:
   

sudo mkdir /etc/mongrel_cluster

    cd /etc/mongrel_cluster

    sudo ln -s /home/demo/[you project]/config/mongrel_cluster.yml /etc/mongrel_cluster/railsapp.yml

 

问题3:

    在执行 mongrel_cluster_ctl status 时如果出现 missing pid_file: tmp/pids/mongrel.3007.pid 错误

    1.检查项目目录下是否有 tmp 文件夹

    2.执行 /etc/init.d/apache2 reload 命名 , 要注意权限

    3.检查 /config/mongrel_config.yml 中 路径是否正确, 一般情况下就这几处错误。

你可能感兴趣的:(apache,Rails)