It looks like you have a custom restarting script. The problem is that in order for the new Apache changes to work I had to add this line to the bin/start-apache and bin/stop-apache files:
source $HOME/apache/conf/envvars
You're going to need to add that line to the top of your custom restarting scripts - bin/dwdb and bin/restart. They should work again afterwards and you should be able to restart Apache.
If I may make a suggestion, though - you may want to just the custom stopping and starting with calls to $HOME/bin/start-apache and $HOME/bin/stop-apache. It'll probably be easiest that way, since it doesn't look like you're doing anything in your scripts that those two don't do.
Re: Error
bin/start-apache
andbin/stop-apache
files:source $HOME/apache/conf/envvars
You're going to need to add that line to the top of your custom restarting scripts -
bin/dwdb
andbin/restart
. They should work again afterwards and you should be able to restart Apache.If I may make a suggestion, though - you may want to just the custom stopping and starting with calls to
$HOME/bin/start-apache
and$HOME/bin/stop-apache
. It'll probably be easiest that way, since it doesn't look like you're doing anything in your scripts that those two don't do.