常用Linux命令(持续更新)

服务

# 服务启动、停止、重启
service [service_name] start/stop/restart

# 设置服务自启动
chkconfig [service_name] on
chkconfig [service_name] off
[root@localhost springboot]# chkconfig --list

注意:该输出结果只显示 SysV 服务,并不包含原生 systemd 服务。SysV 配置数据可能被原生 systemd 配置覆盖。 
      如果您想列出 systemd 服务,请执行 'systemctl list-unit-files'。
      欲查看对特定 target 启用的服务请执行
      'systemctl list-dependencies [target]'。

eureka-server  	0:关	1:关	2:开	3:开	4:开	5:开	6:关
search-service 	0:关	1:关	2:开	3:开	4:开	5:开	6:关
zipkin-server  	0:关	1:关	2:开	3:开	4:开	5:开	6:关

systemctl start [service_name]
systemctl stop [service_name]
systemctl restart [service_name]
systemctl enable [service_name]
systemctl disable [service_name]

网络篇

查看端口是否被占用

[root@test init.d]# lsof -i:80
COMMAND  PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
nginx   2013 root    9u  IPv4  34075      0t0  T

你可能感兴趣的:(Linux)