Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Ubuntu terminal command - see the port occupied and off     - Docker data container protection the pros and cons (Server)

- Oracle 10g New Features - Archive Compression (Database)

- Infinispan 8 new Redis cache storage implementation (Linux)

- Those things packaged using Gradle to Android (Programming)

- to compile FFmpeg In Ubuntu (Linux)

- Gentoo: existing preserved libs problem solving (Linux)

- MySQL is configured to access external networks under Ubuntu (Database)

- Java recognize simple codes (Programming)

- Linux disk quota-related instruction (Linux)

- Management DB2 logs (Database)

- Linux network security backdoor technology and advanced skill practice (Linux)

- Linux System Getting Started Learning: Using yum to download the RPM package without installing (Linux)

- TNS-03505 name could not be resolved (Database)

- Linux POST fstab configuration file read-only variable can not be modified problem (Linux)

- Ubuntu 15.04 and Ubuntu 14.04 installed Cinnamon 2.6 (Linux)

- Tsunami-udp accelerated network transmission (Linux)

- Android in the event delivery and handling mechanism (Programming)

- SecureCRT in Python scripting study guide (Programming)

- Without Visual Studio .NET Windows application development (Programming)

- Zabbix monitoring Oracle Database use Orabbix plug (Enhanced Edition) (Database)

 
         
  Ubuntu terminal command - see the port occupied and off
     
  Add Date : 2018-11-21      
         
         
         
  Ubuntu Check port usage, use the netstat command:

View Service port is already connected (ESTABLISHED)

netstat -a

See all service ports (LISTEN, ESTABLISHED)

netstat -ap

Check the specified port, you can combine grep command:

netstat -ap | grep 8080

  You can also use the lsof command:

lsof -i: 8888

To turn off the use of this port, the use of the corresponding pid kill +

kill -9 PID number

ps: kill a process id is to send a signal. The default signal sent is SIGTERM, the signal sent by kill -9 is SIGKILL, namely exit. exit signal is not blocked by the system, so kill -9 can successfully kill the process.
     
         
         
         
  More:      
 
- Usage sed some of the parameters (Linux)
- Linux operating system Start Tutorial: Xmanager Remote Access Linux graphical interface (Linux)
- CentOS6.7 text installation system (Linux)
- Linux system security check method (Linux)
- CentOS 5.x install Lua 5.2.3 error (LIBS = -lncurses) (Linux)
- The Java development environment to build under Ubuntu 14.04 (Linux)
- CentOS 5.3 under broadcom NIC dual activation issues (Linux)
- RHEL5.8 physical opportunities to Read-only file system (Linux)
- AngularJS (Programming)
- C ++ implementation of the list of basic operations and test cases (Programming)
- Java-based data source database access (Programming)
- Linux Samba server-side structures and the use of the client (Server)
- MySQL log from the library than the main library (Database)
- Ubuntu install code editor Sublime Text 3 (Linux)
- Modify MySQL character encoding under Linux (Database)
- DRBD switchover (Server)
- Python programming style (Programming)
- You can not ignore the seven Git tips (Linux)
- C language binary tree counts words (Programming)
- Installation Yarock 1.1.4 Music Player in Ubuntu (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.