Hi Simon,
Thanks for your contribution 🙂
You are right, in my case unfortunately activated the firewalls of node 1 and node 2 of the metadata server in a change made by the production department. Therefore the solution was simple, only disable the firewall and with that the problem was fixed.
But before fixing the problem, the metadata servers presented the following problems:
- Metadata Server(Master Node)
Cuando intentaba accesar a la herramienta de SAS Management Console en el Metadata Server(Master Node), no podia accesar y mostraba el error "Application Could not log on to the Server. The connection request has time out"
When trying to access the SAS Management Console tool on the Metadata Server (Node 2), it could be accessed well.
but when validating the communication with node 3 in the menu Server Manager->SAS Meta->SAS Meta Logical Metadata Server->
SAS Meta - Metadata Server Node 3 it marked communication error.
When trying to access the SAS Management Console tool on the Metadata Server (Node 3), it could be accessed well.
but when validating the communication with node 2 in the menu Server Manager->SAS Meta->SAS Meta Logical Metadata Server->
SAS Meta - Metadata Server Node 2 it marked communication error.
so I recommend checking the following:
1) Verify that the metadata servers are not in status paused, if they are paused, change them to resume status:
filename metaparm 'E:\SAS\config\Lev1\SASMeta\MetadataServer\metaparms.sas';
%include metaparm;
PROC METAOPERATE NOREDIRECT
ACTION=STATUS;
RUN;
2) Verify the communication in each metadata server by example:
telnet xxx.xxx.xxx.xxx 8561
Note: In my case the communication of the master node with Metadata Server (Node 2) and Metadata Server (Node 3) was not
possible.
The communication of node 2 with node 3 was not possible but it communicated with the master node if it could.
The communication of node 3 with node 2 was not possible but it communicated with the master node if it could.
3) Verify that the firewall is disabled on each metadata server(master node, node 2 and node 3).
Note: In my case the firewall was activated in node 2 and node 3, so what I did was disable the firewall in node 2 and node 3 and this
solved the problem I had.
Thanks for your help.
Georgy