Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker-compose.yml has issue #5

Open
tjyang opened this issue Oct 15, 2019 · 0 comments
Open

docker-compose.yml has issue #5

tjyang opened this issue Oct 15, 2019 · 0 comments

Comments

@tjyang
Copy link

tjyang commented Oct 15, 2019

  • I am not good at using docker following is my trying to learn running adagios in docker.
  • docker-compose.yml volume mapping is wrong
[me@miq-ivan-1 docker-adagios-git]$ sudo docker-compose up
<snipped>
[me@miq-ivan-1 docker-adagios-git]$ diff  -ru docker-compose.yml.old  docker-compose.yml
--- docker-compose.yml.old      2019-10-14 19:56:39.370565907 -0400
+++ docker-compose.yml  2019-10-14 19:57:08.287884678 -0400
@@ -6,9 +6,9 @@
     ports:
       - 8080:80
     volumes:
-      - ./adagios:/opt/adagios
-      - ./pynag:/opt/pynag
-      - ./logs:/var/log/nagios
+      - ./adagios:/opt
+      - ./pynag:/opt
+      - ./logs:/var/log

 volumes:
   adagios:
[me@miq-ivan-1 docker-adagios-git]$

  • Looks like mapping of httpd log path had permission issue, so I did a "chmod go+rw /var/log/httpd". But still httpd failed to start up.
[root@miq-ivan-1 ~]# ls -ld  ../../var/log/httpd
drwxrw-rw-. 2 root root 51 Aug  8 07:42 ../../var/log/httpd
[root@miq-ivan-1 ~]#
[me@miq-ivan-1 docker-adagios-git]$ sudo docker-compose up
Starting dockeradagiosgit_adagios_dev_1 ... done
Attaching to dockeradagiosgit_adagios_dev_1
adagios_dev_1  | /usr/lib64/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
adagios_dev_1  |   warnings.warn(msg)
adagios_dev_1  | running install
adagios_dev_1  | running build
adagios_dev_1  | running build_py
adagios_dev_1  | running install_lib
adagios_dev_1  | running install_egg_info
adagios_dev_1  | Removing /usr/lib/python2.7/site-packages/adagios-1.6.3-py2.7.egg-info
adagios_dev_1  | Writing /usr/lib/python2.7/site-packages/adagios-1.6.3-py2.7.egg-info
adagios_dev_1  | running install
adagios_dev_1  | running bdist_egg
adagios_dev_1  | running egg_info
adagios_dev_1  | writing requirements to pynag.egg-info/requires.txt
adagios_dev_1  | writing pynag.egg-info/PKG-INFO
adagios_dev_1  | writing top-level names to pynag.egg-info/top_level.txt
adagios_dev_1  | writing dependency_links to pynag.egg-info/dependency_links.txt
adagios_dev_1  | reading manifest file 'pynag.egg-info/SOURCES.txt'
adagios_dev_1  | reading manifest template 'MANIFEST.in'
adagios_dev_1  | warning: no files found matching '*' under directory 'etc'
adagios_dev_1  | writing manifest file 'pynag.egg-info/SOURCES.txt'
adagios_dev_1  | installing library code to build/bdist.linux-x86_64/egg
adagios_dev_1  | running install_lib
adagios_dev_1  | running build_py
adagios_dev_1  | creating build/bdist.linux-x86_64/egg
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/pynag
adagios_dev_1  | copying build/lib/pynag/__init__.py -> build/bdist.linux-x86_64/egg/pynag
adagios_dev_1  | copying build/lib/pynag/errors.py -> build/bdist.linux-x86_64/egg/pynag
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/pynag/Model
adagios_dev_1  | copying build/lib/pynag/Model/__init__.py -> build/bdist.linux-x86_64/egg/pynag/Model
adagios_dev_1  | copying build/lib/pynag/Model/all_attributes.py -> build/bdist.linux-x86_64/egg/pynag/Model
adagios_dev_1  | copying build/lib/pynag/Model/macros.py -> build/bdist.linux-x86_64/egg/pynag/Model
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/pynag/Model/EventHandlers
adagios_dev_1  | copying build/lib/pynag/Model/EventHandlers/__init__.py -> build/bdist.linux-x86_64/egg/pynag/Model/EventHandlers
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/pynag/Plugins
adagios_dev_1  | copying build/lib/pynag/Plugins/__init__.py -> build/bdist.linux-x86_64/egg/pynag/Plugins
adagios_dev_1  | copying build/lib/pynag/Plugins/classic_threshold_syntax.py -> build/bdist.linux-x86_64/egg/pynag/Plugins
adagios_dev_1  | copying build/lib/pynag/Plugins/new_threshold_syntax.py -> build/bdist.linux-x86_64/egg/pynag/Plugins
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/__init__.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/config_parser.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/errors.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/extra_opts.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/livestatus.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/logs.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/main.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/multisite.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/object_cache.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/retention_dat.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/ssh_config.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | copying build/lib/pynag/Parsers/status_dat.py -> build/bdist.linux-x86_64/egg/pynag/Parsers
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/pynag/Control
adagios_dev_1  | copying build/lib/pynag/Control/__init__.py -> build/bdist.linux-x86_64/egg/pynag/Control
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/pynag/Control/Command
adagios_dev_1  | copying build/lib/pynag/Control/Command/__init__.py -> build/bdist.linux-x86_64/egg/pynag/Control/Command
adagios_dev_1  | copying build/lib/pynag/Control/Command/autogenerated_commands.py -> build/bdist.linux-x86_64/egg/pynag/Control/Command
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/__init__.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/checkresult.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/decorators.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/git.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/importer.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/metrics.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/misc.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/nsca.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/paths.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | copying build/lib/pynag/Utils/states.py -> build/bdist.linux-x86_64/egg/pynag/Utils
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/__init__.py to __init__.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/errors.py to errors.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Model/__init__.py to __init__.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Model/all_attributes.py to all_attributes.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Model/macros.py to macros.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Model/EventHandlers/__init__.py to __init__.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Plugins/__init__.py to __init__.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Plugins/classic_threshold_syntax.py to classic_threshold_syntax.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Plugins/new_threshold_syntax.py to new_threshold_syntax.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/__init__.py to __init__.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/config_parser.py to config_parser.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/errors.py to errors.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/extra_opts.py to extra_opts.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/livestatus.py to livestatus.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/logs.py to logs.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/main.py to main.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/multisite.py to multisite.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/object_cache.py to object_cache.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/retention_dat.py to retention_dat.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/ssh_config.py to ssh_config.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Parsers/status_dat.py to status_dat.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Control/__init__.py to __init__.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Control/Command/__init__.py to __init__.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Control/Command/autogenerated_commands.py to autogenerated_commands.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/__init__.py to __init__.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/checkresult.py to checkresult.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/decorators.py to decorators.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/git.py to git.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/importer.py to importer.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/metrics.py to metrics.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/misc.py to misc.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/nsca.py to nsca.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/paths.py to paths.pyc
adagios_dev_1  | byte-compiling build/bdist.linux-x86_64/egg/pynag/Utils/states.py to states.pyc
adagios_dev_1  | installing package data to build/bdist.linux-x86_64/egg
adagios_dev_1  | running install_data
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/share
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/share/man
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/share/man/man1
adagios_dev_1  | copying man/pynag.1.gz -> build/bdist.linux-x86_64/egg/share/man/man1
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/EGG-INFO
adagios_dev_1  | installing scripts to build/bdist.linux-x86_64/egg/EGG-INFO/scripts
adagios_dev_1  | running install_scripts
adagios_dev_1  | running build_scripts
adagios_dev_1  | creating build/bdist.linux-x86_64/egg/EGG-INFO/scripts
adagios_dev_1  | copying build/scripts-2.7/pynag -> build/bdist.linux-x86_64/egg/EGG-INFO/scripts
adagios_dev_1  | changing mode of build/bdist.linux-x86_64/egg/EGG-INFO/scripts/pynag to 755
adagios_dev_1  | copying pynag.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
adagios_dev_1  | copying pynag.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
adagios_dev_1  | copying pynag.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
adagios_dev_1  | copying pynag.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
adagios_dev_1  | copying pynag.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
adagios_dev_1  | zip_safe flag not set; analyzing archive contents...
adagios_dev_1  | pynag.Control.Command.__init__: module references __file__
adagios_dev_1  | creating 'dist/pynag-1.1.2-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
adagios_dev_1  | removing 'build/bdist.linux-x86_64/egg' (and everything under it)
adagios_dev_1  | Processing pynag-1.1.2-py2.7.egg
adagios_dev_1  | removing '/usr/lib/python2.7/site-packages/pynag-1.1.2-py2.7.egg' (and everything under it)
adagios_dev_1  | creating /usr/lib/python2.7/site-packages/pynag-1.1.2-py2.7.egg
adagios_dev_1  | Extracting pynag-1.1.2-py2.7.egg to /usr/lib/python2.7/site-packages
adagios_dev_1  | pynag 1.1.2 is already the active version in easy-install.pth
adagios_dev_1  | Installing pynag script to /usr/bin
adagios_dev_1  |
adagios_dev_1  | Installed /usr/lib/python2.7/site-packages/pynag-1.1.2-py2.7.egg
adagios_dev_1  | Processing dependencies for pynag==1.1.2
adagios_dev_1  | Searching for chardet==2.2.1
adagios_dev_1  | Best match: chardet 2.2.1
adagios_dev_1  | Adding chardet 2.2.1 to easy-install.pth file
adagios_dev_1  | Installing chardetect script to /usr/bin
adagios_dev_1  |
adagios_dev_1  | Using /usr/lib/python2.7/site-packages
adagios_dev_1  | Searching for six==1.12.0
adagios_dev_1  | Best match: six 1.12.0
adagios_dev_1  | Processing six-1.12.0-py2.7.egg
adagios_dev_1  | six 1.12.0 is already the active version in easy-install.pth
adagios_dev_1  |
adagios_dev_1  | Using /usr/lib/python2.7/site-packages/six-1.12.0-py2.7.egg
adagios_dev_1  | Finished processing dependencies for pynag==1.1.2
adagios_dev_1  | 2019-10-15 00:11:20,996 CRIT Supervisor is running as root.  Privileges were not dropped because no user is specified in the config file.  If you intend to run as root, you can set user=root in the config file to avoid this message.
adagios_dev_1  | 2019-10-15 00:11:20,997 INFO Included extra file "/etc/supervisor.d/supervisord-nagios.conf" during parsing
adagios_dev_1  | 2019-10-15 00:11:21,011 INFO RPC interface 'supervisor' initialized
adagios_dev_1  | 2019-10-15 00:11:21,012 INFO supervisord started with pid 14
adagios_dev_1  | 2019-10-15 00:11:22,015 INFO spawned: 'httpd' with pid 17
adagios_dev_1  | 2019-10-15 00:11:22,019 INFO spawned: 'npcd' with pid 18
adagios_dev_1  | 2019-10-15 00:11:22,029 INFO spawned: 'xinetd' with pid 19
adagios_dev_1  | 2019-10-15 00:11:22,034 INFO spawned: 'nagios' with pid 20
adagios_dev_1  | 2019-10-15 00:11:22,059 DEBG 'nagios' stdout output:
adagios_dev_1  |
adagios_dev_1  | Nagios Core 4.4.3
adagios_dev_1  | Copyright (c) 2009-present Nagios Core Development Team and Community Contributors
adagios_dev_1  | Copyright (c) 1999-2009 Ethan Galstad
adagios_dev_1  | Last Modified: 2019-01-15
adagios_dev_1  | License: GPL
adagios_dev_1  |
adagios_dev_1  | Website: https://www.nagios.org
adagios_dev_1  | Nagios 4.4.3 starting... (PID=20)
adagios_dev_1  | Local time is Tue Oct 15 00:11:22 UTC 2019
adagios_dev_1  | wproc: Successfully registered manager as @wproc with query handler
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:22,068 DEBG 'nagios' stdout output:
adagios_dev_1  | wproc: Registry request: name=Core Worker 22;pid=22
adagios_dev_1  | wproc: Registry request: name=Core Worker 23;pid=23
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:22,079 DEBG 'nagios' stdout output:
adagios_dev_1  | wproc: Registry request: name=Core Worker 26;pid=26
adagios_dev_1  | wproc: Registry request: name=Core Worker 21;pid=21
adagios_dev_1  | wproc: Registry request: name=Core Worker 25;pid=25
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:22,091 DEBG 'nagios' stdout output:
adagios_dev_1  | wproc: Registry request: name=Core Worker 24;pid=24
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:22,102 DEBG 'nagios' stdout output:
adagios_dev_1  | Event broker module '/usr/lib64/check_mk/livestatus.o' initialized successfully.
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:22,103 DEBG 'nagios' stderr output:
adagios_dev_1  | 2019-10-15 00:11:22 [6] updating log file index
adagios_dev_1  | 2019-10-15 00:11:22 [6] updating log file index
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:22,148 DEBG 'httpd' stdout output:
adagios_dev_1  | AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:22,148 DEBG 'httpd' stdout output:
adagios_dev_1  | (2)No such file or directory: AH02297: Cannot access directory '/etc/httpd/logs/' for log file 'logs/access_log' defined at /etc/httpd/conf/httpd.conf:217
adagios_dev_1  | AH00014: Configuration check failed
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:22,163 DEBG fd 7 closed, stopped monitoring <POutputDispatcher at 140533643502296 for <Subprocess at 140533645913936 with name httpd in state STARTING> (stdout)>
adagios_dev_1  | 2019-10-15 00:11:22,163 INFO exited: httpd (exit status 1; not expected)
adagios_dev_1  | 2019-10-15 00:11:22,164 DEBG received SIGCLD indicating a child quit
adagios_dev_1  | 2019-10-15 00:11:22,339 DEBG 'nagios' stdout output:
adagios_dev_1  | Successfully launched command file worker with pid 27
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:23,181 DEBG fd 14 closed, stopped monitoring <POutputDispatcher at 140533643503232 for <Subprocess at 140533645951056 with name xinetd in state STARTING> (stdout)>
adagios_dev_1  | 2019-10-15 00:11:23,183 INFO spawned: 'httpd' with pid 42
adagios_dev_1  | 2019-10-15 00:11:23,184 INFO success: npcd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
adagios_dev_1  | 2019-10-15 00:11:23,184 INFO success: xinetd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
adagios_dev_1  | 2019-10-15 00:11:23,184 INFO success: nagios entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
adagios_dev_1  | 2019-10-15 00:11:23,185 DEBG fd 18 closed, stopped monitoring <POutputDispatcher at 140533643503520 for <Subprocess at 140533645951056 with name xinetd in state RUNNING> (stderr)>
adagios_dev_1  | 2019-10-15 00:11:23,186 INFO exited: xinetd (exit status 0; expected)
adagios_dev_1  | 2019-10-15 00:11:23,186 DEBG received SIGCLD indicating a child quit
adagios_dev_1  | 2019-10-15 00:11:23,254 DEBG 'httpd' stdout output:
adagios_dev_1  | AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
adagios_dev_1  | (2)No such file or directory: AH02297: Cannot access directory '/etc/httpd/logs/' for log file 'logs/access_log' defined at /etc/httpd/conf/httpd.conf:217
adagios_dev_1  | AH00014: Configuration check failed
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:23,267 DEBG fd 7 closed, stopped monitoring <POutputDispatcher at 140533643502512 for <Subprocess at 140533645913936 with name httpd in state STARTING> (stdout)>
adagios_dev_1  | 2019-10-15 00:11:23,267 INFO exited: httpd (exit status 1; not expected)
adagios_dev_1  | 2019-10-15 00:11:23,267 DEBG received SIGCLD indicating a child quit
adagios_dev_1  | 2019-10-15 00:11:25,273 INFO spawned: 'httpd' with pid 43
adagios_dev_1  | 2019-10-15 00:11:25,352 DEBG 'httpd' stdout output:
adagios_dev_1  | AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
adagios_dev_1  | (2)No such file or directory: AH02297: Cannot access directory '/etc/httpd/logs/' for log file 'logs/access_log' defined at /etc/httpd/conf/httpd.conf:217
adagios_dev_1  | AH00014: Configuration check failed
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:25,365 DEBG fd 7 closed, stopped monitoring <POutputDispatcher at 140533643505032 for <Subprocess at 140533645913936 with name httpd in state STARTING> (stdout)>
adagios_dev_1  | 2019-10-15 00:11:25,365 INFO exited: httpd (exit status 1; not expected)
adagios_dev_1  | 2019-10-15 00:11:25,397 DEBG received SIGCLD indicating a child quit
adagios_dev_1  | 2019-10-15 00:11:28,404 INFO spawned: 'httpd' with pid 44
adagios_dev_1  | 2019-10-15 00:11:28,477 DEBG 'httpd' stdout output:
adagios_dev_1  | AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
adagios_dev_1  | (2)No such file or directory: AH02297: Cannot access directory '/etc/httpd/logs/' for log file 'logs/access_log' defined at /etc/httpd/conf/httpd.conf:217
adagios_dev_1  | AH00014: Configuration check failed
adagios_dev_1  |
adagios_dev_1  | 2019-10-15 00:11:28,490 DEBG fd 7 closed, stopped monitoring <POutputDispatcher at 140533643503592 for <Subprocess at 140533645913936 with name httpd in state STARTING> (stdout)>
adagios_dev_1  | 2019-10-15 00:11:28,490 INFO exited: httpd (exit status 1; not expected)
adagios_dev_1  | 2019-10-15 00:11:28,490 DEBG received SIGCLD indicating a child quit
adagios_dev_1  | 2019-10-15 00:11:29,492 INFO gave up: httpd entered FATAL state, too many start retries too quickly

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant