What's wrong with GitHub? - github

Anyone else recently experiencing problems pushing to GitHub repos? I keep receiving errors when I try:
error: RPC failed; result=35, HTTP code = 0
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date
or
fatal: unable to access 'https://github.com/sr-murthy/TPP.git/': Server aborted the SSL handshake
Is this some kind of DDoS attack?

This error may be because of the open ssl site down.
Please do operation Once again? If you still facing issue You can disable the sslVerfication for you Debugging Purpose.so that you may come to some conclusion.
Change it in User Settings like http.sslVerify=false (If you are using eclipse window--?Preferences-->git-->configuration-->User Settings)

Related

git push - client_loop: send disconnect: Connection reset by peer

I have encountered this problem recently and I have never been able to find a coherent explanation or solution.
When attempting to push a specific branch to github, I am receiving the following error:
client_loop: send disconnect: Connection reset by peer
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
I am able to push other branches fine, so it cannot be a network error.
I vaguely remember in the past getting an error like this when I mistakenly included something like an auth token in the code. However, that is not the case here.
I am also not pushing any particularly large files (except maybe package-lock.json?)
How I can I find out more about what is causing github to reject my push?
Update
After a dozen tries over about 20 minutes the push was finally accepted. I am still curious whether there is an explanation.
I suppose there could be a number of reasons for this to occur, but in my case it was some issue on our VPN. I encountered the issue again today, hopped off the VPN and pushed again, and it immediately worked.
There is simple solution for this. Go to git bash and just follow the steps,
(1) vim .ssh/config
(2) insert- ServerAliveInterval 60
(3) close vim by Esc ---> ZZ

Push error with lots of files. fatal: the remote hung up unexpectedly. error RPC failed; curl 55 send failure: Connection was aborted

I am having issues pushing my latest commits for an UE4 project. The commit contains a huge number of changed or added files.
Github Error when pushing:
fatal: the remote hung up unexpectedly.
error RPC failed; curl 55 send failure: Connection was aborted.
Everything up-to-date
I would like some advice how I should go forward with this issue. Will it work to upload the entire update as a new repository or branch or could it be solved in a better way? There is weeks of work done since the last commit so it is important that no information gets lost.
Image of the error:
https://i.imgur.com/NZWPlnI.png
Tried to increase post buffer size for uploading, with git config command: http.postBuffer 524288000
the same issue persisted even after this.
I would like the commit to be pushed or uploaded in any way possible. This is my first post on Stack overflow and I would be very grateful for any help or advice I may get regarding this issue.

Web Deploy not working. Timeout on client. Schannel 1203 on server

I'm trying to deploy an application via web deploy to a windows 2012 r2 server.
First tried installing iis, web deploy using the msi. After getting an unreachable error I saw somewhere that I needed wmsvc to be installed and installed it via powershell command Install-WindowsFeature Web-Mgmt-Service.
I stopped getting the unreachable error and started getting this error ->
Error: Could not complete the request to remote agent URL 'http://xx.x.xx.xx:8172/MSDEPLOYAGENTSERVICE'.
Error: The operation has timed out
On the server's event viewer under system I get the following error ->
A fatal alert was generated and sent to the remote endpoint. This may result in termination of the connection. The TLS protocol defined fatal error code is 10. The Windows SChannel error state is 1203.
Any idea of what could be going on? Did I miss something on the installation?
After this I also tried installing everything but without iis and I get the same error.
So, this is really not a PoSH issue.
Maybe you should consider movin gthis question to another forum.
Anyway, you have either real server config issues (this can sometimes mean wipe and rebuild - very ugly option - but if it's a virtual machine and you have a snapshot, just roll back), or an app causing this.
Typically for Schannel type of error, it has to do with application or service in machine not able to complete any SSL connection sort of connection.
The error state parameter of 1203 means client error connecting to server, ie invalid ClientHello from the client
See if you can collect more data by...
https://support.microsoft.com/en-us/help/260729/how-to-enable-schannel-event-logging-in-iis
I realized this is an old question, but in case somebody ran into the same issue, here are my solution.
I had to follow this guidelines : https://learn.microsoft.com/en-us/aspnet/web-forms/overview/deployment/configuring-server-environments-for-web-deployment/configuring-a-web-server-for-web-deploy-publishing-web-deploy-handler
Copy the resulting publishsetting file. In the Publish/Profile page import it.
In the Publish/Connection page, change the server to the server address with the 8172 port. Add the password. Change the Destination URL to the site to go to after the publish is completed.
Then after Validate connection was completed, go ahead and publish it!

Problems with Frapi-Framework

I'm trying to set up Frapi on an Debian 9.1 Server.
Not every step from "http://frapi.github.io/installing/" did work.
Since days getting only this answer:
"Internal Server Error The server encountered an internal error or
misconfiguration and was unable to complete your request. Please
contact the server administrator at admin#api.frapi to inform them of
the time this error occurred, and the actions you performed just
before this error. More information about this error may be available
in the server error log.
Apache/2.4.25 (Debian) Server at 141.28.11.40 Port 80"
Someone worked already with this Framework and can tell me where I did wrong?

How to fix E175002: Options error?

I am facing the E175002: Options error while trying to access my SVN server. I get this error when I am trying to add it to my SVN repositories in Eclipse, opening the synchronisation view or update/commit.
Synchronize operation failed.
svn: E175002: OPTIONS of '/svn/MySVN/branches/my.project': 500 Internal Server Error (IP)
svn: E175002: OPTIONS request failed on '/svn/MySVN/branches/my.project'
I can access the repository through my internet browser, so the server can't be offline.
I looked inside the files of /data/svn/MySVN/conf without editing anything. Also I checked config and servers inside /etc/subversion. All lines are commented.
What could I try to fix the error?
What could I try to fix the error?
Nothing, I guess. :)
500 Internal Server Error is the server-side error and I doubt that you can do anything to solve it except to contact the server's system administrator.