Question

Since last night, pushing to my own server (which I've been using for two years) halts without error. I'm stumped as to what's causing this. There seems to be no network activity when it hangs, and the process isn't doing much either (on both sides, local & remote). There's plenty of space left on the server so that isn't it either.

Anyone know how I begin to debug this?

Was it helpful?

Solution

First run with -v | --verbose to see if you get any more output.

Second look on the far end with sudo netstat -anp | grep 80 - assuming you are running on port 80 - or you can look for a process name instead of the port in the grep. If you see nothing, you are not connecting.

Another way to check is to look locally with sudo netstat -anp | grep 80 and see if you are stuck in SYN SENT - if so, you have network issues, if it says CONNECTED you have progressed further.

You should also look in your http logs to see if you see anything in there on your server. But most likely this is a network or dns issue.

OTHER TIPS

Check the logs of your server. As you are using webdav, you should especially check the apache logs (if you are using apache). If you find anything strange, you have a clue what might cause the problem.

Can you connect to your server with something else? If you can't even do a ping, you know that your server/the network is down.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top