- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- unknown port 8081
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2005 07:09 PM
тАО05-06-2005 07:09 PM
unknown port 8081
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2005 07:44 PM
тАО05-06-2005 07:44 PM
Re: unknown port 8081
# netstat -nlp | grep :8081
In the example below you can see PID 3283 (sshd) is listening on port 22.
# netstat -nlp | grep :22
tcp 0 0 :::22 :::* LISTEN 3283/sshd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2005 10:37 PM
тАО05-06-2005 10:37 PM
Re: unknown port 8081
You might take a glance at it.
Cheerio,
Renarios
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2005 11:54 PM
тАО05-07-2005 11:54 PM
Re: unknown port 8081
Try running "lsof -i" t osee which program is using this port.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2005 06:28 PM
тАО05-08-2005 06:28 PM
Re: unknown port 8081
from /etc/services the 8081 port is generally used by Transparent proxy service. if you are running some proxy servers on your system then they might be using this port.
but thats not the case always as any program can bind to this port and listen for connections.
do check 'netstat -atp | grep 8081' to find out process name. ofcourse you have to be root to do this.
Hope this helps,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-09-2005 12:53 AM
тАО05-09-2005 12:53 AM
Re: unknown port 8081
netstat -anp |grep 8081 ,
then traceout the processes which is using the port by
ps -ef |grep
In netstat it will only show "httpd" , to traceout which httpd ( not the normal httpd server ) is using this port the ps command will help .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-09-2005 04:02 PM
тАО05-09-2005 04:02 PM
Re: unknown port 8081
So I stop my http(Apache) completely.
I don't know how they did it, and that's I want to know because I don't want them to do this to my server again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-09-2005 05:38 PM
тАО05-09-2005 05:38 PM
Re: unknown port 8081
looks like security breach. first get your server out of network, they might have put in some other backdoor to login even if you stop httpd process.
best would be to reinstall the entire OS with newer version which contains security fixes, because they might have installed some sort of rootkit to modify application to suite their needs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-09-2005 06:05 PM
тАО05-09-2005 06:05 PM
Re: unknown port 8081
If it's a RH or Fedora box, there are regular security releases. If it's so old that it's gone to legacy, then you need to upgrade the distribution so something that is actively maintained.
Suse and Debian distributions also have regular updates, as do all major distributions.
Second thing is firewall. Make sure only those services of which you want publically accessable, are publically accessable. For instance, if you aren't using 'https://
Also check what other services are running on your machine (netstat -nutlp) and figure out which are or are not supposed to be available to the world.