Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 376522

Use this tag for questions related to the Apache HTTP server (any version, but make sure to provide Apache version numbers in the question unless not relevant). Non-apache web server-related questions should use the tag: webserver.

0 votes
1 answer
2k views

Apache web server not starting when I set it up for ssl using custom certificates

I have setup Apache webserver on RHEL 7 instance yum install mod_ssl openssl openssl genrsa -out ca.key 2048 openssl req -new -key ca.key -out ca.csr openssl x509 -req -days 365 -in ca.csr -signkey …
Daniel's user avatar
  • 121
1 vote
Accepted

Apache web server not starting when I set it up for ssl using custom certificates

Had to change the ownership of the cert file to ec2-user:root to get the process to access the cert file. This resolved the issue. Huge thanks to Roaima.
Daniel's user avatar
  • 121
0 votes
1 answer
317 views

build apache on linux server

I have downloaded pcre from https://ftp.pcre.org/pub/pcre/pcre2-10.34.tar.gz and extracted it to /usr/local/lib when I run ./configure --with-included-apr --with-pcre=/usr/local/lib/pcre2-10.34 …
Daniel's user avatar
  • 121
0 votes
Accepted

build apache on linux server

yum install pcre-devel -y fixed the issue, the devel(development) package was missing.
Daniel's user avatar
  • 121