Windows Scada project upload in Ubutu

Forum Home Forums Rapid SCADA on Linux Controllers and Raspberry Pi Windows Scada project upload in Ubutu

Viewing 9 posts - 16 through 24 (of 24 total)
  • Author
    Posts
  • #15322
    manjey73
    Participant

    /var/log/scada/ScadaAgent/Log

    Directly on the Linux machine along the logging installation path

    • This reply was modified 1 month, 1 week ago by manjey73.
    #15328
    rajatdas2005
    Participant

    user@rajat:/var/log/scada/ScadaAgent/Log$ cat ScadaAgent.log
    ——————————————————————————–
    2024-09-09 06:03:37 [rajat][root][ACT] Agent 6.2.0.1 started
    2024-09-09 06:03:37 [rajat][root][ACT] Start logic processing
    2024-09-09 06:03:37 [rajat][root][ACT] Start listener on port 10002

    #15330
    manjey73
    Participant

    The Agent’s log shows which port it is listening on.
    1. check that this port is not occupied by other programs
    2. Check the firewall to make sure that the port is open.
    Ubuntu may have another firewall installed – UFW, or disable it for verification, or configure it to skip port 10002. On one remote VDS server, even with uwf mode configured, it periodically closes until I figured out how to win.

    #15331
    manjey73
    Participant

    netstat -ntulp

    or

    ss -ntulp

    What does the command data show on the remote server? These are commands for ssh connection

    #15332
    rajatdas2005
    Participant

    ss -ntulp
    Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process

    tcp LISTEN 0 512 0.0.0.0:10008 0.0.0.0:*
    tcp LISTEN 0 10 0.0.0.0:10003 0.0.0.0:*
    tcp LISTEN 0 4096 0.0.0.0:10002 0.0.0.0:*
    tcp LISTEN 0 4096 0.0.0.0:10000 0.0.0.0:*
    tcp LISTEN 0 10 0.0.0.0:10006 0.0.0.0:*
    tcp LISTEN 0 10 0.0.0.0:10005 0.0.0.0:*
    tcp LISTEN 0 10 0.0.0.0:10004 0.0.0.0:*

    #15334
    Mikhail
    Moderator

    You can use the Hercules Utility to check connection from Windows to Linux. Use the Linux IP address and TCP port 10002.

    #15335
    manjey73
    Participant

    You have a lot of ports on 1000x 🙂 What do you have installed there?
    Check if UWF is installed and enabled? and if it is enabled, are these ports open in it?

    I’m sorry, it’s called ufw correctly

    ufw status

    • This reply was modified 1 month ago by manjey73.
    • This reply was modified 1 month ago by manjey73.
    #15339
    manjey73
    Participant

    You should get the open ports in ufw in the list

    10000/tcp                  ALLOW       Anywhere
    10002/tcp                  ALLOW       Anywhere
    10008/tcp                  ALLOW       Anywhere
    10008                      ALLOW       Anywhere
    #15360
    rajatdas2005
    Participant

    Now the port is opened, and I am able to deploy the project in the remote linux machine. Thanks a lot for help.

Viewing 9 posts - 16 through 24 (of 24 total)
  • You must be logged in to reply to this topic.