Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I installed IHS and then configured the admin service, however, now when I try to access it using websphere 8.5 it fails
When I try to start
com.ibm.ws.management.webserver.ServerNotAvailableException: start No Connection
When I try to reach config
[1/10/14 17:15:24:868 EST] 0000006f SystemOut O IOException java.net.ConnectException: Connection refused: connect
and when I access through a browser I get the following...
[Fri Jan 10 16:28:29 2014] [error] [client 127.0.0.1] client denied by server configuration: C:/apache
This is clearly wrong as i do not have a c:\apache but I cannot figure what is configured wrong.
Any ideas?
In my case the problem was something with the proxy at work. When I edited my Hosts to direct my domain requests to 127.0.0.1 instead of leaving it up to the DNS it worked!
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 17 days ago.
Improve this question
I try to connect with strongswan client to a IPsec server with IKEv2 but I receive the following error:
charon[1423]: 09[ENC] parsed IKE_SA_INIT response 0 [ SA KE No ]
charon[1423]: 09[CFG] selected proposal: IKE:AES_CBC_256/HMAC_SHA2_256_128/PRF_HMAC_SHA2_256/MODP_2048
charon[1423]: 09[IKE] no private key found for 'MY.LOCAL.IP'
I think I don't need a private key, because I only have a PSK and the other server doesn't know any public key of me.
My ipsec.conf:
# basic configuration
config setup
# strictcrlpolicy=yes
# uniqueids = no
# Add connections here.
conn testconn
auto="start"
compress="no"
esp="aes256-sha2_256_96"
ike="aes256-sha2_256-modp2048"
ikelifetime="28800"
keyexchange="ike"
keylife="3600"
left="MY.LOCAL.IP"
leftsubnet="MY.LOCAL.IP/32"
rekeymargin="540"
right="IP.OF.THE.EXTERNAL.SERVER"
rightauth="psk"
rightsubnet="LOCAL.IP.OF.THE.EXTERNAL.SERVER/32"
type="tunnel"
How can I config strongswan to use PSK only and no key authentification?
Both, leftauth and rightauth must be set to PSK
leftauth="psk"
rightauth="psk"
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I am using FTP from Notepad++ to connect to host. On getting connected I am getting following output in a window named NppFTP-Output
220---------- Welcome to Pure-FTPd [privsep] ----------
220-You are user number 17 of 500 allowed.
220-Local time is now 12:55. Server port: 21.
220-This is a private system - No anonymous login
220 You will be disconnected after 3 minutes of inactivity.
My question is about second line which says 220-You are user number 17 of 500 allowed., What does this mean? Does this mean I can connect only 500 times to the server?
It is telling you that 500 simultaneous connections (users) may be made at any point in time. When you connected, you were the 17th user connected (assuming every user has one connection).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I have OpenVPN-server running on Windows Server 2008R2 via 1194 UDP Port. Most of the clients are connected well but 2 machines cannot (WinServer 2008 and Win7 Pro). The error is:
Thu Nov 07 11:54:57 2013 TLS Error: TLS key negotiation failed to occur within 60 seconds (check your network connectivity)
Thu Nov 07 11:54:57 2013 TLS Error: TLS handshake failed
The TAP-Win32 Adapter status is "Cable unplugged" while I'm trying to connect. The same TLS key negotiation failed error occurs when I remove TAP adapter or turn it off in Windows control panel (Seems like OpenVPN is not connecting to TAP). The firewall is turned off, UDP 1194 is open.
I've tried to explicitly set the tap adapter name by adding dev-node AdapterName in config file without any result.
The problem's probably not in the network, because I have 2 machines successfully connected to VPN within the same local network. The listing of client config file is:
tls-client
proto udp
remote <server ip address here>
dev tap
dev-node myTap
pull
tls-auth c:\\vpnkeys\\ta.key
ca c:\\vpnkeys\\ca.crt
cert c:\\vpnkeys\\client30.crt
key c:\\vpnkeys\\client30.key
cipher DES-EDE3-CBC
comp-lzo
There was an unproperly configured network. OpenVPN is not using tap adapter until it gets response from remote host.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I keep on getting this message while trying to move files from one server to another.
ftp: connect: A remote host did not respond within the timeout period.
What could be the cause and how could I fix it?
Thank you!!!
Check the server firewall
Check open ports
Check if the server or network is busy
Check the timeout specified at the server
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
We're setting up a VIP using F5 load balancer in Windows 2008 Server. My IT dept has setup this VPI URL https://mydomain.com & I need to test below scenarios but not sure how to do it?
SSL termination should happen for all requests.
Should reject/drop the request if client SSL does not match.
Forward the request to my application, if client SSL matches.
Badically, the certificate is configured on Load balancer in such a way that LB will reject the request if client SSL does not match & it'll accept it only if client SSL matches.
Can any one tell me how to test this using some shell script or other way?
Thanks!
You could use openssl s_client or curl:
$ curl --cert bogus_cert.pem https://mydomain.com