Cannot access CS7.2 Developer Edition docbroker

PeterFFT
edited March 19, 2016 in Documentum #1

I am using the Content Server 7.2 Developer Edition.

I updated the hosts file with the correct IP address.

I can connect to DA OK from my host and it is working correctly.  I can also connect to the server using WinSCP.  However I can't connect using the docbroker (Fort example using Composer).

I ran a port scan from the host and 1489 does not show up as an open port (like 22, 8080, 8090).

I don't know a lot about Linux so I am not sure what needs to be tweaked to fix this. 

The firewall (System > Administration > Firewall) is disabled.

I did run the following from terminal:

<<

[root@demo-server ~]# cat /etc/services | grep 1489

dmdocbroker     1489/tcp                # dmdocbroker

dmdocbroker     1489/udp                # dmdocbroker

[root@demo-server ~]# netstat -anp | grep 1489

tcp        0      0 127.0.0.1:1489              0.0.0.0:*                   LISTEN      4139/./dmdocbroker 

tcp        0      0 127.0.0.1:1489              127.0.0.1:42346             TIME_WAIT   -                  

tcp        0      0 ::1:1489                    :::*                        LISTEN      4139/./dmdocbroker 

>>

Thanks in advance.

Peter

Tagged:

Best Answer

  • awille
    edited March 19, 2016 #2 Answer ✓

    It seems the docbroker is listening on the localhost network (127.0.0.1) you need to fix that.

    regards,

    Alex

Answers

  • Haroon_A
    edited March 18, 2016 #3

    You need to update the dfc.properties of your composer, which is under plugins directory, with correct docbroker IP/port information..

  • PeterFFT
    edited March 18, 2016 #4

    I tried updating the dfc.properties and that didn't help.  I think the problem is that the port is not open.  It doesn't show up when I do a port scan.

  • awille
    edited March 19, 2016 #5 Answer ✓

    It seems the docbroker is listening on the localhost network (127.0.0.1) you need to fix that.

    regards,

    Alex

  • PeterFFT
    edited March 19, 2016 #6

    Thanks.  I removed the server name from the mapping for 127.0.0.1 in the hosts file.

    Previous:

    127.0.0.1   demo-server localhost.localdomain  localhost

    New:

    127.0.0.1  localhost

    It is working now.