We have an apache server is running in server A.
We have an webservice is running in server B which is enable IP whitelist. So only server A can use request to web service.
I am using browser in machine C which only able to access to server B. How can I create a proxy server in A so that become a middle man that allow machine C can access the webservice in B.
Related
I hosted a website in IIS 8 and binding with a proper hosting name (subdomain.xyz.com). It is working from my local machine, but it is not working when I access from hosted server. It is showing authentication window, even I provide a valid credentials it is showing again and again.
The server is hosted in Azure.
Server: Windows Server 2012 R2
It is because NAT loopback,
you can try to use internal ip if you access from hosted server.
if you want to access using your hosting name, make sure to point it inside "hosts" file.
C:\Windows\System32\drivers\etc\hosts
add this line
127.0.0.1 subdomain.xyz.com
so basically what hosts file do is, it actually point to your localhost every time you enter subdomain.xyz.com in your browser.
I have tow servers (server A and B) which can communicate between them and a client that is able to communicate just with sever A and not with B. so I want to known if it is possible to send xmlhttprequest from the client to server A first and after that the server A resend this xmlhttprequest to server B.
Client ==》 server A ==》 server B
I'm trying to access SQL Server Express installed on Windows Server 2012 on Google Compute Engine VM. I have assigned STATIC IP to the instance and also added an exception to the firewall in Windows for port 1433 as well as in via console area of Compute Engine and allowed my IP in authentication.
I tried connecting the instance remotely via STATIC IP and Instance Name (IP\instancename) using SQL Server authentication, I have also configured SQL Server to accept remote connections as well as enabled TCP/IP from Configuration Area.
I'm still unable to connect to the Instance remotely can any one suggest me how to do.
I am new to SSL,here I have a question about how to set up SSL/certificate.
Our web site is hosted on server A(Windows server 2003 with IIS6), we also have a WCF web service that is used by the web site to get data from database, and this service is hosted on Server B(Windows server 2003 with IIS6).
So how to setup SSL/Certificate to make sure that the client server communication is encrypted? do I need to apply 2 certificate for each server?
I also have a very fundamental question, say my server's ip address is 192.168.0.5, it has multiple ports for different application, for example 8090, so which one is called domain? 192.168.0.5? or 192.168.0.5.8090?
Thanks
Since both server are running IIS 6, you can just export your certificate as PFX and install it on the other server.
Following sites might be helpful:
Export:
https://support.globalsign.com/customer/portal/articles/1231880-back-up-certificate---internet-information-services-iis-7
http://www.sslshopper.com/move-or-copy-an-ssl-certificate-from-a-windows-server-to-another-windows-server.html
Installation:
https://support.globalsign.com/customer/portal/articles/1290320-install-certificate---internet-information-services-iis-5-6
http://www.sslshopper.com/microsoft-iis-5-and-6-ssl-installation-instructions.html
Hope this helps!
I have a server hosted in Amazon's cloud (EC2, AWS), where I have SQL Server installed. With SSMS on the server, I can connect to the server instance using the Amazon server name and the SQL Server instance. However when I use the IP address, I cannot connect.
I have Allow Remote Connections to Server checked.
Similarly, I am unable to connect to the SQL Server instance remotely.
How can I resolve this?
Ensure you have enabled port 1433 to your specific public ip address in the appropriate security group.
You may also have to update the windows firewall config to allow the service to accept connections.
JL