Re: [fossil-users] www.fossil-scm.org down?

2016-10-16 Thread Johan Kuuse
On Sun, Oct 16, 2016 at 11:58 AM, Richard Hipp  wrote:
> On 10/16/16, Johan Kuuse  wrote:
>> El 16 oct. 2016 11:08, "Johan Kuuse"  escribió:
>>
>>> Are you running any supervisor process for xinetd?
>>>
>>> I used to run "daemontools" in the passed, worked quite well, but
>>> nowadays, "runit" seems to be a common alternative.
>>>
>>> Or maybe you could just run a cron job for alerts, to keep the downtime
>>> to
>>> a minimum.
>
> xinetd has never given trouble before...


If it is a one-time problem, maybe it's not worth the effort to deal
with a supervisor/watchdog for xinetd.
Anyway, using a simple monitor for the website would never harm.
Here is an example of a one-liner which could be run as a cron job.

perl -MLWP::Simple -e 'unless (head("http://www.fossil-scm.org;))
{print "ALERT ME!\n;"}'

Best Regards,
Johan

> --
> D. Richard Hipp
> d...@sqlite.org
> ___
> fossil-users mailing list
> fossil-users@lists.fossil-scm.org
> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] www.fossil-scm.org down?

2016-10-16 Thread Richard Hipp
On 10/16/16, Johan Kuuse  wrote:
> El 16 oct. 2016 11:08, "Johan Kuuse"  escribió:
>
>> Are you running any supervisor process for xinetd?
>>
>> I used to run "daemontools" in the passed, worked quite well, but
>> nowadays, "runit" seems to be a common alternative.
>>
>> Or maybe you could just run a cron job for alerts, to keep the downtime
>> to
>> a minimum.

xinetd has never given trouble before...
-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] www.fossil-scm.org down?

2016-10-16 Thread Johan Kuuse
El 16 oct. 2016 11:08, "Johan Kuuse"  escribió:

> Are you running any supervisor process for xinetd?
>
> I used to run "daemontools" in the passed, worked quite well, but
> nowadays, "runit" seems to be a common alternative.
>
> Or maybe you could just run a cron job for alerts, to keep the downtime to
> a minimum.
>
> BR,
> Johan
>
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] www.fossil-scm.org down? security issue ?

2016-10-15 Thread K. Fossil user
Security issue ?Ah yes, security is not the first target for Fossil.
I was told by a security computer specialist that we should NEVER use xinetd, 
xinitd or something related...Of course, for the Fossil team, people I do know 
are not good enough ...

:-D (One day I was wondering if downloading Fossil is safe... I've got my 
response now. This is why I laugh out loud)
The only good news is that someone dare to say there is an issue.You should 
thank him.
Pray that your system was/is not hacked ...


Best Regards

K.

  De : Richard Hipp <d...@sqlite.org>
 À : Fossil SCM user's discussion <fossil-users@lists.fossil-scm.org> 
 Envoyé le : Dimanche 16 octobre 2016 1h55
 Objet : Re: [fossil-users] www.fossil-scm.org down?
  


FWIW, sqlite.org was also down (since it is on the same machine and
uses the same xinetd process to respond to requests, but nobody bother
to report that

On 10/15/16, Richard Hipp <d...@sqlite.org> wrote:
> On 10/15/16, Johan Kuuse <jo...@kuu.se> wrote:
>> Hi,
>>
>> I cannot acces www.fossil-scm.org
>> Anyway, www.fossil-scm.org:8080 responds, so it seems to be a problem
>> with the web server.
>
> xinitd, which manages inbound connections on port 80, had crashed.  I
> restarted it.  Things should be working again.  Thanks for the report.
> I had not noticed it before because I always use https instead of
> http.
>
> https on port 443 is managed by stunnel4.  It was still running.
> Apache manages port 8080 and it was still running.  Backup servers at
> http://www2.fossil-scm.org/ and http://www3.fossil-scm.org/ were both
> still running.
>
> --
> D. Richard Hipp
> d...@sqlite.org
>


-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


   ___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] www.fossil-scm.org down?

2016-10-15 Thread Scott Doctor
Using a rewrite in .htaccess on the home page will push everyone 
to https. Seems that the server should auto push to the https 
from http, but it does not. On my website I put the following at 
the top of the .htaccess file


RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]


-
Scott Doctor
sc...@scottdoctor.com
-

On 10/15/2016 18:47, Richard Hipp wrote:

On 10/15/16, Johan Kuuse  wrote:

Hi,

I cannot acces www.fossil-scm.org
Anyway, www.fossil-scm.org:8080 responds, so it seems to be a problem
with the web server.

xinitd, which manages inbound connections on port 80, had crashed.  I
restarted it.  Things should be working again.  Thanks for the report.
I had not noticed it before because I always use https instead of
http.

https on port 443 is managed by stunnel4.  It was still running.
Apache manages port 8080 and it was still running.  Backup servers at
http://www2.fossil-scm.org/ and http://www3.fossil-scm.org/ were both
still running.



___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] www.fossil-scm.org down?

2016-10-15 Thread Richard Hipp
FWIW, sqlite.org was also down (since it is on the same machine and
uses the same xinetd process to respond to requests, but nobody bother
to report that

On 10/15/16, Richard Hipp  wrote:
> On 10/15/16, Johan Kuuse  wrote:
>> Hi,
>>
>> I cannot acces www.fossil-scm.org
>> Anyway, www.fossil-scm.org:8080 responds, so it seems to be a problem
>> with the web server.
>
> xinitd, which manages inbound connections on port 80, had crashed.  I
> restarted it.  Things should be working again.  Thanks for the report.
> I had not noticed it before because I always use https instead of
> http.
>
> https on port 443 is managed by stunnel4.  It was still running.
> Apache manages port 8080 and it was still running.  Backup servers at
> http://www2.fossil-scm.org/ and http://www3.fossil-scm.org/ were both
> still running.
>
> --
> D. Richard Hipp
> d...@sqlite.org
>


-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] www.fossil-scm.org down?

2016-10-15 Thread Richard Hipp
On 10/15/16, Johan Kuuse  wrote:
> Hi,
>
> I cannot acces www.fossil-scm.org
> Anyway, www.fossil-scm.org:8080 responds, so it seems to be a problem
> with the web server.

xinitd, which manages inbound connections on port 80, had crashed.  I
restarted it.  Things should be working again.  Thanks for the report.
I had not noticed it before because I always use https instead of
http.

https on port 443 is managed by stunnel4.  It was still running.
Apache manages port 8080 and it was still running.  Backup servers at
http://www2.fossil-scm.org/ and http://www3.fossil-scm.org/ were both
still running.

-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] www.fossil-scm.org down?

2016-10-15 Thread Andy Bradford
Thus said Johan Kuuse on Sun, 16 Oct 2016 01:55:21 +0200:

> I cannot acces www.fossil-scm.org

Please try:

https://www.fossil-scm.org/

Andy
-- 
TAI64 timestamp: 40005802d58e


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] www.fossil-scm.org down?

2016-10-15 Thread Scott Doctor

I jsut tried it. Firefox reports an unable to connect error

-
Scott Doctor
sc...@scottdoctor.com
-

On 10/15/2016 16:55, Johan Kuuse wrote:

Hi,

I cannot acces www.fossil-scm.org
Anyway, www.fossil-scm.org:8080 responds, so it seems to be a problem
with the web server.

BR,
Johan
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] www.fossil-scm.org down?

2016-10-15 Thread Johan Kuuse
Hi,

I cannot acces www.fossil-scm.org
Anyway, www.fossil-scm.org:8080 responds, so it seems to be a problem
with the web server.

BR,
Johan
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users