Linux如何查看服务开机启动时间
时间: 2023-11-07 13:06:28 浏览: 226
Linux中如何查看系统开机时间
可以通过以下命令查看Linux系统中服务的开机启动时间:
```bash
systemctl status <service_name>
```
其中,`<service_name>`是你要查看的服务的名称。例如,如果要查看Apache服务的开机启动时间,可以输入以下命令:
```bash
systemctl status apache2
```
执行以上命令后,会输出该服务的详细状态信息,其中包括启动时间、运行时间等信息。你可以在输出信息中查找类似以下内容:
```
Active: active (running) since Mon 2020-09-21 15:57:35 CST; 1h 13min ago
```
其中,`since`后面的时间就是该服务的开机启动时间。
阅读全文