Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Ubuntu terminal command - see the port occupied and off     - Linux Tutorial Share: How to sudo command to define the PATH environment variable (Linux)

- QEMU image file used: qcow2 and raw (Linux)

- Ubuntu iptables prevent IP attacks (Linux)

- How x2go set up Remote Desktop on Linux (Linux)

- Kernel compile under Debian (Linux)

- IOS distributed management using GitHub project development (Linux)

- To install Git on Ubuntu systems (Server)

- The source code compiler installation Nginx 1.8.0 under Ubuntu 14.10 (Server)

- On the PC goes heavy security watch your startup items (Linux)

- How to Install Linux kernel 4.0 on Ubuntu / CentOS (Linux)

- Kafka cluster deployment (Server)

- Based kubernetes Construction Docker Cluster Management Comments (Server)

- How to disable IPv6 on Ubuntu, Linux Mint, Debian (Linux)

- Java Annotation Comments (Programming)

- Linux operating system Study Notes (Linux)

- See Linux kernel, CPU, memory, and various versions of the command module and means (Linux)

- Linux character device - a simple character device model (Linux)

- Tmux Crash Course: Tips and adjustment (Linux)

- Oracle DataGuard principles and basic configuration (Database)

- Oracle user lock how to know what causes (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:      
 
- Spring Integration ehcache annotation implement the query cache and cache update or delete instant (Programming)
- OpenGL Programming Guide (8th edition of the original book) - compute shader (Programming)
- Install the Solaris 10 operating system environment over the network to sparc (Linux)
- Use mod_wsgi Django application deployment (Server)
- MySQL thread cache thread_cache_size parameter optimization (Database)
- Cobbler batch install Ubuntu / CentOS system (Linux)
- Debian GNU / Linux service list acquisition, shutting down services or run (Linux)
- Usage sed some of the parameters (Linux)
- ORA-14400: inserted partition key does not map to any partition (Database)
- CentOS 6.6 install rsync server (Server)
- Linux Security trust with users (Linux)
- Oracle through the alarm log view and inspect the main library, physical and snapshot standby database (Database)
- Use Oracle 11g show spparameter command (Database)
- Use scripts easily install the latest Linux kernel in Ubuntu (Linux)
- MySQL + Corosync + Pacemaker + DRBD build highly available MySQL (Server)
- Binary search -Java achieve (Programming)
- Ubuntu will be written in a command file, executable file, source command (Linux)
- Nginx1.8 version upgrade method AMH4.2 Free manually compile (Server)
- VNC configuration detailed analysis under Linux (Linux)
- Monitoring services are running properly and will email alert (Server)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.