Reputation: 456
well, i got situation here.
i have some application that listen to some server data transaction (linux based) to get the data and send it to database on another server (windows).
the application is unstable, and it may crash if found some null variable. i cannot fix the application since it's not mine and use language that im not capable of (and i have no time since it's on production state).
what im asking for are,
how can i close the connection between my application and server from the server?
so i can re-run the application, since it give error "multi-session not supported".
situation are,
Upvotes: 1
Views: 416
Reputation: 466
netstat -tulp|grep ESTABLISHED get the connection's pid. then kill 9 pid.
Upvotes: 1