diff --git "a/40\346\236\227\346\200\241\347\220\264/20240622_\346\234\215\345\212\241\347\256\241\347\220\206.md" "b/40\346\236\227\346\200\241\347\220\264/20240622_\346\234\215\345\212\241\347\256\241\347\220\206.md"
new file mode 100644
index 0000000000000000000000000000000000000000..3eed35a4073cbf1b29aa4c25eda830a64f7d873e
--- /dev/null
+++ "b/40\346\236\227\346\200\241\347\220\264/20240622_\346\234\215\345\212\241\347\256\241\347\220\206.md"
@@ -0,0 +1,26 @@
+### 服务系统
+
+- systemctl (**新版本**)
+ 1. 启动:systemctl start 服务名
+ 2. 停止:systemctl stop 服务名
+ 3. 重启:systemctl restart 服务名
+ 4. 查看:systemctl status 服务名
+ 5. 重新加载配置文件:systemctl reload 服务名
+- service(**旧版本**)
+ 1. 启动:service 服务名 start
+ 2. 停止:service 服务名 stop
+ 3. 重启:service 服务名 restart
+ 4. 查看:service 服务名 status
+ 5. 重新加载配置文件:service 服务名 reload
+
+- 开机自动启动
+ - enable:启动
+ - disable:关闭
+- 可查看systemctl可用选项:**systemctl (Tab*2) **
+- 查看系统服务名称:**/etc/init.d**
+ - /etc/init.d/服务名 选项(stop,start,restart)
+- 查看服务列表,并且查看状态
+ 1. systemctl list-unit-files
+ 2. service --status-all
+ - [+] 代表服务是在启动运行的状态
+ - [-] 代表服务是在关闭停止的状态
\ No newline at end of file