簡體   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