Git Problem in Mac (Fatal Error) - iphone

I am setting up one git client on Mac (Using Source Tree). While committing the code it is showing the following error(please check the screen-shot). Any idea to solve this error ?
ERROR :

That generally happens when your server denies your connection. There are a number of causes for getting denied:
No/wrong SSH key (if the server uses SSH authentication)
Wrong port set up (the server doesn't expect connections from port 22, for example)
No/wrong username/password stored for the connection
Server set up wrong and still denying where it should be accepting
Check all your settings to make sure everything is right.

HTTP code 501 stands for "not implemented". If the git server works over http using another client, the configuration on the client side is incorrect, so make sure you have configured the correct server address, user name and password. (If the git server doesn't work over http on any clients, the server configuration is incorrect.)

Related

NetBeans 8.1 Remote Connections SFTP Error: Connection closed by foreign host

I'm developing a website on a server using NetBean's HTML5, CSS3, JavaScript and PHP support. I am trying to set up the remote connection so I don't have to use something like Filezilla every time to transfer my files to the server. However, NetBeans is unable to connect to my server over SFTP.
I'm unable to share screenshots with the actual information because this is for work and must be kept confidential.
Host Name is in the form: subdomain.domain.com
Username is just the plain username, it's NOT in the form username#subdomain.domain.com.
I am using a password, not a key.
I am behind my work's proxy but I don't think that could be the cause because NetBeans connecting to my server is the only thing that isn't working.
Filezilla works, Putty (SSH) works, Aptana remote connections (SFTP) works, all my browsers work. Even testing the proxy settings in the NetBeans general options works in NetBeans:
Anyway...
After entering in all of the server's information, I click "Test Connection". After 30 seconds (the timeout), this error pops up:
I tried looking in the NetBeans log to gather more information but it doesn't appear to be logging this error. Is there a certain debug flag I need to enable?
Like I said earlier, Filezilla and Aptana Studio can both connect to my server using the same login credentials.
Any suggestions?
Thanks for reading.
It turns out my system proxy settings (which were configured for my work's proxy) were preventing me from connecting to a server on my work's local intranet.
I had to add a proxy exception for the server and everything worked after that.

Connect to C++ REST sdk SERVER on Windows from LAN

I have a server written on C++ REST SDK.
There's http_listener which listens to "http://localhost:34568".
When I try to send a request in browser or from the client to localhost it works fine and I get the responses from my server. But the point is to use the application in network. And here where the problem comes.
When I try to request the server from the other PC using IP(192.168.1.103:34568) I get "HTTP Error 400. The request hostname is invalid."
I'm aware that that could be some firewall issues but it's turned off. Also I tried to set port rules in brandmauer and it didn't help.
And even more! I got XAMPP running Apache server and when I do the same thing but with (192.168.1.103:80) I do get the response from Apache and have an access.
Anybody had something similar or somebody knows what the problem is about?
Listen to local ip address or to your network name (dns):
"http://xxx.xxx.xxx.xxx:34568" or
"http://your_network_name:34568"
So, if you have multiple network adapters, you can choose which one.

SQL Server Reporting Service URL asking for credentials but not responding after that

SQL Server Reporting Service URL asking for credentials but not responding after that.
It is asking for credentials for exactly 3 times even if I am entering correct password all the time and than after it does not ask and even not showing anything on the browser page. Both the below URLs are behaving same. My report services and server has been configured on port 80.
http://ssphdev.xxx.com/Reports
http://ssphdev.xxx.com/ReportServer
I am using SQL Server 2008 R2.
Any suggestions will be helpful. I have reports to retrieve from the server. And also want to test further on the same server.
Thanks in advance.
I found the solution to this problem...
I changed URL to hostname to localhost and it worked
I guess the problem was that I have two virtual with the same name (obviously only one is ON at a time) and connected with same domain. I think somehow when I use hostname on URL it is trying to connect another dev machine which is off. And localhost worked.
This is my guess! If you are having such issues please try 'localhost' and see it solves..!!
Cheers!!
If keeps prompting for credentials even after setting as below
authentication mode="Windows"
identity impersonate="True"
Replace below code from "Microsoft SQL Server\MSRS10_50.xxxxxxx\Reporting Services\ReportServer\rsreportserver.config
with
Just remove RSWindowsNegotiate tag from the tag AuthenticationTypes

Unable to Connect my server within my local network

I have created a account at no-ip.com to access my oracle server from out side. when i'm trying to access my server within my local network using my no-ip url, it's not worked. got error message:
can't establish a connection to the server at 112.125.117.25:8080.
what is the matter?
I used to have this problem as well. My guess is it has something to do with NAT - because once I changed my router the problem went away. You could definitely solve the problem by referring to your server by its internal name when within the same network.

Error connection to CVS

I try to connect to CVS through eclipse. After entering (host, repository path, user, password) and by clicking finish, it gives me the following error :
Error validating location : "Could not connect to :pserver:username#host:/CVS/Myproject:I/O exception occured: ProxyHTTP: java.IOEXCEPTION: proxy error (the specified socket layer (SSL) port is not allowed.ISA Server is not configured to allow SSL REQUEST FROM THIS PORT. most web browser use port 443for SSL request .)"
What could I do ?
If you need to access the Web via a proxy server, but use an internal CVS server that shouldn't be accessed via the proxy, you can add the CVS server to Eclipse's proxy bypass list.
To do this, go to Windows→Preferences→General→Network Connections and click 'Add Host'. You'll likely want to use wildcards to specify all internal servers, e.g. *.mycompany.com.au or 163.189.*.
Obviously a problem with your proxy server. Try disabling proxy settings in Eclipse or ask your system administrator to fix the proxy server configuration.
In my particular case, i solved this issue going to: windows -> preferences -> network connections and set Active Provider = Direct
As soon as i modified this i was able to check out the code.