繁体   English   中英

在beantalk 64位ubuntu 2014.03 v1.0.2 PHP 5.5上安装ssh时出错

[英]error when installing ssh on beanstalk 64bit ubuntu 2014.03 v1.0.2 PHP 5.5

我按照本教程( http://richardhawthorn.com/?p=82 )在我的beantalk实例上配置ssl。

所以我的配置文件包含以下内容。 它在64位ubuntu 2014.02 PHP 5.5上运行良好,但在64 位ubuntu 2014.03 v1.0.2 PHP 5.5上运行不正常我遇到以下错误,可能是什么问题?

packages:
  yum:
    mod24_ssl : []

Resources:
  mySecurityGroup:
    Type: AWS::EC2::SecurityGroupIngress
    Properties:
      GroupName: {Ref : AWSEBSecurityGroup}
      IpProtocol: tcp
      ToPort: 443
      FromPort: 443
      CidrIp: 0.0.0.0/0

  /etc/httpd/conf.d/ssl.conf:
    mode: 000777
    owner: ec2-user
    group: ec2-user
    content: |
      LoadModule ssl_module modules/mod_ssl.so
      Listen 443
      
        
          Order deny,allow
          Allow from all
        
        SSLEngine on
        SSLCertificateChainFile "/tmp/gd_bundle.crt"
        SSLCertificateFile "/tmp/server.crt"
        SSLCertificateKeyFile "/tmp/server.key"

        ProxyPass / http://localhost:80/ retry=0
        ProxyPassReverse / http://localhost:80/
        ProxyPreserveHost on

        LogFormat "%h (%{X-Forwarded-For}i) %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""
        ErrorLog /var/log/httpd/elasticbeanstalk-error_log
        TransferLog /var/log/httpd/elasticbeanstalk-access_log
Jun  4 06:12:16 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:17 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:17 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:17 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:17 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:17 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:17 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:17 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:18 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:18 ip-10-253-103-13 init: httpd main process ended, respawning
Jun  4 06:12:18 ip-10-253-103-13 init: httpd respawning too fast, stopped


-------------------------------------
/var/log/httpd/error_log
-------------------------------------
[Wed Jun 04 06:12:18.328490 2014] [suexec:notice] [pid 25739] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
AH00016: Configuration Failed

我的第一个猜测(虽然不确定)是这个问题: https : //forums.aws.amazon.com/thread.jspa?messageID=545736

这里也讨论了:

https://forums.aws.amazon.com/message.jspa?messageID=546965

您可以尝试使用ebextension降级curl的版本,看看它是否可以解决您的问题吗?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM