CentOS7でサーバを構築しています。
現在、tomcatでGroupSessionを起動させて、ApacheでCMSを起動させています。
そのサーバにgitbucket.warを起動させたいのですが、現在503エラーが出ています。
/var/log/httpd/error_logは以下のようにでています。
[Fri Oct 22 22:02:10.153238 2021] [proxy:error] [pid 13941] (111)Connection refused: AH00957: WS: attempt to connect to 127.0.0.1:8080 (*) failed [Fri Oct 22 22:02:10.153356 2021] [proxy_wstunnel:error] [pid 13941] [client 192.168.11.45:54530] AH02452: failed to make connection to backend: localhost
tomcatのServer.xml
<!-- gitbucket --> <Service name="gitbucket"> <!-- 8081ポートで実行 --> <Connector port="8081" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8444" /> <Engine name="B" defaultHost="localhost"> <Realm className="org.apache.catalina.realm.LockOutRealm"> <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/> </Realm> <!-- ${TOMCAT_HOME}/webapps_bディレクトリにwarファイルを配置 --> <Host name="localhost" appBase="gitbucket" unpackWARs="true" autoDeploy="true"> </Host> </Engine> </Service>
httpd/conf.d/git.conf
ProxyPreserveHost On ProxyPass /gitbucket http://localhost:8081/gitbucket ProxyPassReverse /gitbucket http://localhost:8081/gitbucket
エラーが出ずに表示させるにはどうしたらいいでしょうか?
よろしくお願いします。
あなたの回答
tips
プレビュー