On 07/22/2018 02:14 AM, john doe wrote:
On 7/21/2018 11:22 PM, Dave wrote:
On 07/21/2018 11:38 AM, john doe wrote:
On 7/21/2018 3:46 PM, Dave wrote:
On 07/21/2018 08:42 AM, mick crane wrote:
On 2018-07-21 13:00, john doe wrote:
On 7/21/2018 11:21 AM, mick crane wrote:
On 2018-07-21 09:56, mick crane wrote:
On 2018-07-21 09:39, john doe wrote:
my interfaces file is identical and apache starts OK so it is
probably something else.
in /lib/systemd/system/apache2.target
do you have the "after" bit
1 [Unit]
2 Description=The Apache HTTP Server
3 After=network.target remote-fs.target nss-lookup.target
Or looking if "NetworkManager-wait-online.service" is enabled.
For systemd-networkd that is :
"systemd-networkd-wait-online.service".
https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget/
If your '/etc/network/interfaces' file is empty with the
exception of
the 'lo' interface, your interfaces are probably handled by an
other
"program" and you need to determine which "program" is
responsible for
your interfaces.
I'm quite cheerful as everything seems to be working but it
wouldn't
hurt to find out and may assist OP.
Appologies for the confusion, I read your answer and think I
could add
to it but was not in anycase directed towards you! :)
Yes, my comment was for the OP (taking into account other answers he
has sent to the list).
looking at links you posted if I was OP I would probably try adding
After=network-online.target
Wants=network-online.target
to /lib/systemd/system/apache2.target
and see if apache starts at boot
mick
hello - my Deb 9.4 / Apache 2.4 has no file called apache2.target,
however there is a /lib/systemd/system/apache2.service file:: the
contents as follows
Description=The Apache HTTP Server
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
Environment=APACHE_STARTED_BY_SYSTEMD=true
ExecStart=/usr/sbin/apachectl start
ExecStop=/usr/sbin/apachectl stop
ExecReload=/usr/sbin/apachectl graceful
PrivateTmp=true
Restart=on-abort
[Install]
WantedBy=multi-user.target
root@culser:/lib/systemd/system#
Ok -- lets try:
Undo any changes in '/etc/network/interfaces'.
As root:
$ mkdir -p /etc/systemd/apache2.d
$ printf "%s\n%s\n" "After=network-online.target"
"Wants=network-online.target" > /etc/systemd/apache2.d/boot-args.conf
Then try:
$ systemctl enable NetworkManager-wait-online
$ systemctl reboot
If it is not working:
$ systemctl disable NetworkManager-wait-online.service
$ systemctl enable systemd-networkd-wait-online.service
$ systemctl reboot
Note that the lines starting with a '$' are commands and should be
entered on one line.
https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget/
https://www.freedesktop.org/software/systemd/man/systemd.unit.html
I tried both those options, apache2 does not start at boot.
the contents of /boot-args.conf is as follows:
After=network-online.target
Wants=network-online.target
To check if apache is running after boot i check the
/var/run/apache2.pid file is present. it is not present.
I also use ps -e | grep apache and nothing is returned.
After a reboot what output do you get:
$ systemctl status apache2
after boot or reboot the systemctl cmd prints the following:
● apache2.service - The Apache HTTP Server
Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor
preset: enabled)
Active: failed (Result: exit-code) since Sun 2018-07-22 08:55:17
EDT; 51s ago
Process: 588 ExecStart=/usr/sbin/apachectl start (code=exited,
status=1/FAILURE)
Jul 22 08:55:17 culser systemd[1]: Starting The Apache HTTP Server...
Jul 22 08:55:17 culser apachectl[588]: (99)Cannot assign requested
address: AH00072: make_sock: coul
Jul 22 08:55:17 culser apachectl[588]: no listening sockets available,
shutting down
Jul 22 08:55:17 culser apachectl[588]: AH00015: Unable to open logs
Jul 22 08:55:17 culser apachectl[588]: Action 'start' failed.
Jul 22 08:55:17 culser apachectl[588]: The Apache error log may have
more information.
Jul 22 08:55:17 culser systemd[1]: apache2.service: Control process
exited, code=exited status=1
Jul 22 08:55:17 culser systemd[1]: Failed to start The Apache HTTP Server.
Jul 22 08:55:17 culser systemd[1]: apache2.service: Unit entered failed
state.
Jul 22 08:55:17 culser systemd[1]: apache2.service: Failed with result
'exit-code'.