File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,32 @@ Note that if the service is running at a "system" level, there may be a need to
12
12
13
13
` journalctl -S "4 hour ago" `
14
14
15
+ ## Service Management
16
+
17
+ ### Auto-start
18
+
19
+ System services need to be made explicitly auto-started. They can run but may not be configured for auto-start upon reboot.
20
+
21
+ To see if the service has been configured for auto-start:
22
+
23
+ ``` bash
24
+ systemctl list-unit-files --type=service --state=enabled
25
+ ```
26
+
27
+ > Change ` enabled ` to ` disabled ` to see the services that do not auto-start.
28
+
29
+ To make a service start on boot, use the following command:
30
+
31
+ ``` bash
32
+ sudo systemctl enable cosmos.service
33
+ ```
34
+
15
35
## Cosmos
16
36
37
+ ### Node information
38
+
39
+ - ` curl -Ss localhost:1317/node_info `
40
+
17
41
### Consensus information
18
42
19
43
- ` curl -Ss localhost:26657/dump_consensus_state `
@@ -25,6 +49,6 @@ Note that if the service is running at a "system" level, there may be a need to
25
49
26
50
` sudo hdparm -tT /dev/disk/by-id/scsi-0DO_Volume_columbus5a `
27
51
28
- ### Disk interfaction
52
+ ### Disk interaction
29
53
30
54
` sudo blkid /dev/sdb `
You can’t perform that action at this time.
0 commit comments