2 Answers
- Newest
- Most votes
- Most comments
2
Re: the additional info you added as a comment, according to the man page for nmap(1)
A closed port is accessible (it receives and responds to Nmap probe packets), but there is no application listening on it.
So it's worth checking your application is up.
Does the output of sudo netstat -tulpn | grep -w 6619 show that there is a process listening on the port?
0
I fixed it. There was no service listening to the port. It turned out that the OFTP software had a problem. Thank you for your support.
Relevant content
asked a year ago
asked 3 years ago
- AWS OFFICIALUpdated 4 years ago

I used the command "nmap -p 6619 [ip]" to see the port status It shows me
PORT STATE SERVICE 6619/tcp closed odette-ftps
However, I can't open it with any open port command
try run sudo netstate -tuln | grep 6619 on EC2 to see OFTP service is listening on port 6619. if this returns nothing, service isn't running on that port. also check system logs for any errors related to OFTP.