常用Linux命令(持续更新)

Posted 大扑棱蛾子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用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
ngi

以上是关于常用Linux命令(持续更新)的主要内容,如果未能解决你的问题,请参考以下文章

Linux常用命令(持续补充更新)

常用Linux命令(持续更新)

linux常用命令整理(持续更新)

linux 常用命令。。。持续更新

Linux常用命令——持续更新(20170724)

Linux常用命令行指令(持续更新~)