Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-18 Thread Erik Dobák
yes reliability is always the requirement i guess. i was told i could use that for reverse proxiing but did not try that yet due to corporate limitations. my backends are usually php and the response is questionable. On 17 August 2016 at 20:50, Dr James Smith wrote: > Depends on your backends - n

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-17 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 8/17/16 4:12 PM, Dr James Smith wrote: > It may be possible to write your own auto-renewal script > relatively easily for LetsEncrypt. I have done for Apache as (a) I > don't use the standard paths and setup, (b) I wish to use HPKP on > my serve

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-17 Thread Dr James Smith
It may be possible to write your own auto-renewal script relatively easily for LetsEncrypt. I have done for Apache as (a) I don't use the standard paths and setup, (b) I wish to use HPKP on my servers for additional security and "Lets Encrypt" auto scripts generate a new key each time which bre

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-17 Thread R
It seemed like the auto-renewal process for ssl from LetsEncrypt is not supported yet for nginx, at least according to this article on its publication date: https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04 My needs are really simple and I wan

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-17 Thread Dr James Smith
Depends on your backends - nginx is good if it is serving primarily static files and or proxying back to quick responding backends. It seems to be less well suited to slower/heavier backends. Apache always seems to work - slower mind you - but always seems to work... So if reliability is your r

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-17 Thread Erik Dobák
why did not you use nginx anyway? should be faster and modern. did not have the chance to try that yet myself. still using apache everywhere. On 17 August 2016 at 03:18, R wrote: > Ugh sorry, I had a test installation of nginx on the machine, which was not > fully removed after doing "apt-get rem

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-16 Thread R
Ugh sorry, I had a test installation of nginx on the machine, which was not fully removed after doing "apt-get remove". Looks like it would still start up somehow. After I purged nginx, then apache2 started ok after reboot. Thanks On Tue, Aug 16, 2016 at 8:57 PM, R wrote: > Hi, this is everythi

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-16 Thread R
Hi, this is everything from cat /var/log/apache2/error.log: [Mon Aug 15 13:42:17.138117 2016] [mpm_event:notice] [pid 26081:tid 139773925775232] AH00489: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations [Mon Aug 15 13:42:17.138282 2016] [core:notice] [pid 26081:tid 139773925775232]

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-16 Thread Darryle Steplight
Look into restarting services. That's more important because you will eventually want to the same behavior with all services not just Apache; but check this out https://geeksww.com/tutorials/servers/apache_web_http_server/tips_and_tricks/starting_apache_web_server_at_every_reboot_for_debian_ubuntu_

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-16 Thread Rodrigo Cunha
execute cat /var/log/apache2/error.log and post stdout 2016-08-16 19:26 GMT-03:00 R : > Hi, > > I've installed apache on my Ubuntu 16.04 machine as follows: > > sudo apt-get install apache2 > > and it works fine. It does not restart on its own though after a reboot. > Are there other Ubuntu 1

Re: [users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-16 Thread Stephen
Hope this helps http://askubuntu.com/questions/42190/apache-server-doesnt-start-automatically Stephen www.roissy.ca On 16-08-16 06:26 PM, R wrote: Hi, I've installed apache on my Ubuntu 16.04 machine as follows: sudo apt-get install apache2 and it works fine. It does not restart on its

[users@httpd] How to restart apache after reboot on ubuntu 16.04?

2016-08-16 Thread R
Hi, I've installed apache on my Ubuntu 16.04 machine as follows: sudo apt-get install apache2 and it works fine. It does not restart on its own though after a reboot. Are there other Ubuntu 16.04 users that have it restarting on reboot? Thanks