It's an important reminder that most startups are run by a handful of people who are normal, fallible human beings. They generally don't have access to the infrastructure and manpower required to be on the ball and maintain near 100% uptime of their services. I think the important information to be gleaned about a company is how they deal with problems like this (not necessarily the fact that they encountered the pro…
Parse is down due to SSL certificate expiry
41–50 of 56 posts
Re: Parse is down due to SSL certificate expiry
#42Earlier quoted context omitted.
Is there any value in companies like Parse selling their software as installable on your own servers (i.e., GitHub Enterprise). I ask, rhetorically, because I built a somewhat competing service that isn't doing too well and I'm looking to make it so you can install it on your own servers.
Yes. I think that is a useful business. If you could make a system that was scalable and provided an API like parse that sounds like something interesting. Have virtual machine images you can host. The hard part would be figuring out how to simplify scaling it out. That is one really nice thing about hosted solutions. I can forget the IT. I'd be happy to work in a middle ground where i traded the IT effort for additi…
Re: Parse is down due to SSL certificate expiry
#43Re: Parse is down due to SSL certificate expiry
#44Earlier quoted context omitted.
Now, imagine the plight of all their customers who had built their apps based on their APIs. Hopefully, this is a very good lesson for all.
Indeed... we just finished our app building on Parse, but this and last week make me think hard about whether or not it was a good decision to be dependent on their infrastructure.
Re: Parse is down due to SSL certificate expiry
#45[1] Users can add their own root certs and watch your traffic (typically with the intent of breaking your app), or worse, companies can deploy roots to all their devices and sniff their employees' traffic. Why be complicit?
Re: Parse is down due to SSL certificate expiry
#46I wrote a couple scripts to manage bulk-checking SSL certs on a network. One of them uses Curl's Mozilla root CA .pem file and follows the chain to verify a cert is really signed and not expired. https://github.com/psypete/public-bin/tree/public-bin/src/ne...
Re: Parse is down due to SSL certificate expiry
#47Do yourself a favor and run this nightly: http://prefetch.net/code/ssl-cert-check A simple loop over your certs will solve so many problems: cd ssl/certs; for pem in *.pem; do ssl-cert-check -a -x 15 -e admin@yourdomain.com -q -c $pem; done [imagine a grumpy "silly companies with millions of dollars in funding, no actual processes, and too little systems knowledge" rant here. it's like a racecar driver who's team let…
Re: Parse is down due to SSL certificate expiry
#48Re: Parse is down due to SSL certificate expiry
#49Re: Parse is down due to SSL certificate expiry
#50They just fixed it. FYI, in case you did not look at the certificate details, the old certificate expired 5AM today.