Whilst attempting to integrate the eclipse IDE to my OIM VM instance, I would receive a Connection closed by foreign host when connecting to 7001
You can see that the connection is available (this is also apparent when the VM is ping'd). When telneting, you can see that the connection to the VM was successful however maintaining that connection on 7001 was unsuccessful, thus closing the foreign port. The telnet response message connection on 7001 is Connection closed by foreign host.
telnet 172.16.101.155 7001 Trying 172.16.101.155 Connected to 172.16.101.155. Escape character Connection closed by foreign host.
This is caused when trying to bind to port 7001, it means something has to use such port. If nothing is using such port then you cannot connect to it, which in this case it's weblogic admin server.
The likely issue
You can investigate the issue by running following command within terminal, netstat -nat | grep LISTEN
# netstat -nat | grep LISTEN tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:38972 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN tcp 0 0 ::ffff:127.0.0.1:7001 :::* LISTEN (Available Locally!) tcp 0 0 ::1:7001 :::* LISTEN (Available Locally!) tcp 0 0 ::1:25 :::* LISTEN tcp 0 0 :::23 :::* LISTEN tcp 0 0 ::1:631 :::* LISTENYou can see that there's 2 lines that are listening on 7001 though both are on a localhost address (127.0.0.1). In order to bind to the port, you need your private IP and 7001 to be available.
SOLUTION
You need to alter the iptables to allow port 7001 to be accepted. In order to alter the iptables, you need to log into terminal as root. Once logged in, perform the following command:
[root@localhost bin]# sudo iptables -I INPUT -p tcp --dport 7001 -j ACCEPTThe command below don't work unless you enter in the sudo prefix. Then remember to save your changes
[root@localhost bin]# /etc/init.d/iptables save iptables: Saving firewall rules to /etc/sysconfig/iptables:[ OK ]
Once you've done that, you need to either restart the iptables or to restart the VM instance. The command below allows you to restart te iptables services
/etc/init.d/iptables restart
Confirm that there's a service that's listening on that port
[oracle@localhost OIM11gR2PS2_domain]$ netstat -anp | grep 7001 tcp 0 0 fe80::20c:29ff:fe5e:26:7001 :::* LISTEN 3667/java tcp 0 0 ::1:7001 :::* LISTEN 3667/java tcp 0 0 ::ffff:127.0.0.1:7001 :::* LISTEN 3667/java tcp 0 0 ::ffff:172.16.101.155:7001 :::* LISTEN 3667/javaThe last line here has not been included, which will now allow external connections on 7001.
When Weblogic console is down...
When Weblogic console is down, the port numbers will not be listening to bind against...
[oracle@localhost OIM11gR2PS2_domain]$ netstat -anp | grep 7001 (Not all processes could be identified, non-owned process info will not be shown, you would have to be root to see it all.) unix 3 [ ] STREAM CONNECTED 17001 2479/trashapplet [oracle@localhost OIM11gR2PS2_domain]$
About the author
Daniel is a Technical Manager with over 10 years of consulting expertise in the Identity and Access Management space.Daniel has built from scratch this blog as well as technicalconfessions.com
Follow Daniel on twitter @nervouswiggles
Comments
Other Posts
AS I was migrating my environment into an S3 environment, I wanted to leverage off the SES services that AWS provide, more specifically, to leverage the off the SMTP functionality by sending an email via PHP
Read More...
The WeMos D1 is a ESP8266 WiFi based board is an extension to the current out-of-the-box library that comes with the Arduino installation. Because of this, you need to import in the libraries as well as acknowledging the specific board. This process is highly confusion with a number of different individuals talking about a number of different ways to integrate.
Read More...
NameID element must be present as part of the Subject in the Response message, please enable it in the IDP configuration.
Read More...
For what I see, there's not too many supportive documentations out there that will demonstrate how provision AD group membership with the ICF connector using OpenIDM. The use of the special ldapGroups attribute is not explained anywhere in the Integrators guides to to the date of this blog. This quick blog identifies the tasks required to provision AD group membership from OpenIDM to AD using the LDAP ICF connector. However this doesn't really explain what ldapGroups actually does and there's no real worked example of how to go from an Assignment to ldapGroups to an assigned group in AD. I wrote up a wiki article for my own reference: AD group memberships automatically to users This is just my view, others may disagree, but I think the implementation experience could be improved with some more documentation and a more detailed example here.
Read More...
In the past, the similar error occurred though for the Oracle Identity Management solution. invalidcredentialexception remote framework key is invalid Because they all share the ICF connector framework, the error/solution would be the same.
Read More...
org.forgerock.script.exception.ScriptCompilationException: missing ; before statement
Read More...
ForgeRock IDM - org.forgerock.script.exception.ScriptCompilationException: missing ; before statement
Read More...
When performing the attempt of a reconciliation from ForgeRock IDM to Active Directory, I would get the following error
Read More...
In the past, the similar error occurred though for the Oracle Identity Management solution. invalidcredentialexception remote framework key is invalid Because they all share the ICF connector framework, the error/solution would be the same.
Read More...
During the reconcilation from OpenIDM to the ICF google apps connector, the following error response would occur. ERROR Caused by com.google.api.client.auth.oauth2.TokenResponseException 400 Bad Request - invalid_grant
Read More...