Closed Juni4567 closed 4 years ago
If you could, please add version info from these two commands:
docker -v docker-compose -v
Thanks
docker -v Docker version 19.03.8, build afacb8b docker-compose -v docker-compose version 1.25.4, build 8d51620a
I have exactly the same problem
@sbrendtro @Juni4567 @popeyebot
Hi,
I am facing exact same issue. Need assistance.
docker -v Docker version 19.03.8, build afacb8b docker-compose -v docker-compose version 1.25.5, build 8a1c60f6
@sbrendtro
Hi
I am having issues with below.
AH00526: Syntax error on line 22 of /etc/apache2/sites-enabled/default-ssl.conf:
SSLCertificateFile: file '/etc/ssl/openach/openach.crt' does not exist or is empty
Action '-D FOREGROUND' failed.
The Apache error log may have more information.
I tried ssh into docker container with below to check the ssl certficate and it didn't empty.
docker run -it --rm --name openACH openach/openach:latest bash
Please help me
Hi
I am having issues with below.
AH00526: Syntax error on line 22 of /etc/apache2/sites-enabled/default-ssl.conf: SSLCertificateFile: file '/etc/ssl/openach/openach.crt' does not exist or is empty Action '-D FOREGROUND' failed. The Apache error log may have more information.
I tried ssh into docker container with below to check the ssl certficate and it didn't empty.
docker run -it --rm --name openACH openach/openach:latest bash
Please help me
You're using docker run
without mounting volumes, so it makes sense that your container has no certificate.
Per the instructions, you need to use:
docker-compose up -d
docker exec -it dockeropenach_web_1 /bin/bash
This does two things:
Hope that helps, Steve
Having this issue when I try to run docker-openach on my local computer. docker-compose up gives the following output
web_1 | Action '-D FOREGROUND' failed. web_1 | The Apache error log may have more information. dockeropenach_web_1 exited with code 1
This particular issue only seems to happen on Windows Docker hosts, and has to do with Docker on Windows subsystems. We recommend using Linux Docker hosts.
Hi I am having issues with below.
AH00526: Syntax error on line 22 of /etc/apache2/sites-enabled/default-ssl.conf: SSLCertificateFile: file '/etc/ssl/openach/openach.crt' does not exist or is empty Action '-D FOREGROUND' failed. The Apache error log may have more information.
I tried ssh into docker container with below to check the ssl certficate and it didn't empty.
docker run -it --rm --name openACH openach/openach:latest bash
Please help meYou're using
docker run
without mounting volumes, so it makes sense that your container has no certificate.Per the instructions, you need to use:
docker-compose up -d docker exec -it dockeropenach_web_1 /bin/bash
This does two things:
- The first time the container starts, it initializes config/db.php and config/security.php, and sets up the default database in runtime/db/openach.db
- The correct volumes are attached to the image per the definition in docker-compose.yml
Hope that helps, Steve
I followed the instructions and run this command docker-compose up -d
but the container status is Exited. When I checked the docker logs, then I got below errors.
AH00526: Syntax error on line 22 of /etc/apache2/sites-enabled/default-ssl.conf:
SSLCertificateFile: file '/etc/ssl/openach/openach.crt' does not exist or is empty
Action '-D FOREGROUND' failed.
The Apache error log may have more information.
Then I run the this command to check whether ssl certificate and key are there or not.
docker run -it --rm --name openACH openach/openach:latest bash
I found that certificates are not empty. I don't understand why container not start and remains in exited status and also don't why apache can't read ssl certificates.
I am using unbuntu server.
Please help me.
@ramesh8830 - I created a new issue for your problem. This one will remain closed.
Having this issue when I try to run docker-openach on my local computer. docker-compose up gives the following output
docker-compose --verbose up gives the following output