Forum Home › Forums › Rapid SCADA on Linux Controllers and Raspberry Pi › Windows Scada project upload in Ubutu
- This topic has 23 replies, 3 voices, and was last updated 1 month ago by rajatdas2005.
-
AuthorPosts
-
September 6, 2024 at 11:28 am #15322manjey73Participant
/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.
September 9, 2024 at 6:23 am #15328rajatdas2005Participantuser@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 10002September 9, 2024 at 7:42 am #15330manjey73ParticipantThe 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.September 9, 2024 at 7:45 am #15331manjey73Participantnetstat -ntulp
or
ss -ntulp
What does the command data show on the remote server? These are commands for ssh connection
September 9, 2024 at 9:41 am #15332rajatdas2005Participantss -ntulp
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Processtcp 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:*September 9, 2024 at 9:59 am #15334MikhailModeratorYou can use the Hercules Utility to check connection from Windows to Linux. Use the Linux IP address and TCP port 10002.
September 9, 2024 at 10:00 am #15335manjey73ParticipantYou 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
September 9, 2024 at 10:04 am #15339manjey73ParticipantYou 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
September 10, 2024 at 6:58 am #15360rajatdas2005ParticipantNow the port is opened, and I am able to deploy the project in the remote linux machine. Thanks a lot for help.
-
AuthorPosts
- You must be logged in to reply to this topic.