Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details.
  2.  
  3. ● httpd.service - The Apache HTTP Server
  4. Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
  5. Active: failed (Result: exit-code) since 水 2019-05-22 17:05:30 JST; 21s ago
  6. Docs: man:httpd(8)
  7. man:apachectl(8)
  8. Process: 12625 ExecStop=/bin/kill -WINCH ${MAINPID} (code=exited, status=1/FAILURE)
  9. Process: 7140 ExecReload=/usr/sbin/httpd $OPTIONS -k graceful (code=exited, status=0/SUCCESS)
  10. Process: 12623 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited, status=1/FAILURE)
  11. Main PID: 12623 (code=exited, status=1/FAILURE)
  12.  
  13. 5月 22 17:05:30 ******.vs.sakura.ne.jp httpd[12623]: In order to read them you have to provide the pass phrases.
  14. 5月 22 17:05:30 ******.vs.sakura.ne.jp httpd[12623]: Server ******.vs.sakura.ne.jp:443 (RSA)
  15. 5月 22 17:05:30 ******.vs.sakura.ne.jp httpd[12623]: Enter pass phrase:Apache:mod_ssl:Error: Private key not found.
  16. 5月 22 17:05:30 ******.vs.sakura.ne.jp httpd[12623]: **Stopped
  17. 5月 22 17:05:30 ******.vs.sakura.ne.jp systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE
  18. 5月 22 17:05:30 ******.vs.sakura.ne.jp kill[12625]: kill: cannot find process ""
  19. 5月 22 17:05:30 ******.vs.sakura.ne.jp systemd[1]: httpd.service: control process exited, code=exited status=1
  20. 5月 22 17:05:30 ******.vs.sakura.ne.jp systemd[1]: Failed to start The Apache HTTP Server.
  21. 5月 22 17:05:30 ******.vs.sakura.ne.jp systemd[1]: Unit httpd.service entered failed state.
  22. 5月 22 17:05:30 ******.vs.sakura.ne.jp systemd[1]: httpd.service failed.
  23.  
  24. SSLPassPhraseDialog builtin
  25. SSLSessionCache shmcb:/var/cache/mod_ssl/scache(512000)
  26. SSLSessionCacheTimeout 300
  27. #SSLMutex default
  28. SSLRandomSeed startup file:/dev/urandom 256
  29. SSLRandomSeed connect builtin
  30. SSLCryptoDevice builtin
  31.  
  32. #domain1
  33. <VirtualHost *:443>
  34. SSLEngine on
  35. SSLProtocol all -SSLv2
  36. SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
  37. SSLCertificateChainFile /etc/httpd/conf/ssl.crt/internal.crt
  38. SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
  39.  
  40. DocumentRoot /var/www/html/domain1
  41. ServerName domain1:443
  42. AddDefaultCharset UTF-8
  43.  
  44. <Directory "/var/www/html/domain1">
  45. AllowOverride All
  46. Options Indexes FollowSymLinks
  47. </Directory>
  48. </VirtualHost>
  49.  
  50. <VirtualHost *:443>
  51. # SSLEngine on
  52. # SSLProtocol all -SSLv2
  53. SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server_domain2.key
  54. SSLCertificateChainFile /etc/httpd/conf/ssl.crt/internal_domain2.crt
  55. SSLCertificateFile /etc/httpd/conf/ssl.crt/server_domain2.crt
  56.  
  57. # DocumentRoot /var/www/html/domain2
  58. # ServerName domain2:443
  59. # AddDefaultCharset UTF-8
  60.  
  61. # <Directory "/var/www/html/domain2">
  62. # AllowOverride All
  63. # Options Indexes FollowSymLinks
  64. # </Directory>
  65. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement