You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Stop with: Ctrl+C (graceful shutdown with cleanup)
186
185
- Best for: Development and testing
187
186
188
-
**2. Daemon Mode** (`pulse start -d`)
187
+
**2. Daemon Mode** (`nodepulse start -d`)
189
188
- Runs in background, detached from terminal
190
189
- Creates PID file for process management
191
-
- Stop with: `pulse stop`command
190
+
- Stop with: `nodepulse stop`command
192
191
- Sends SIGTERM (5s grace period) then SIGKILL if needed
193
192
- Best for: Quick testing, not production
194
193
195
-
**3. Systemd Service** (`pulse service start`)
194
+
**3. Systemd Service** (`nodepulse service start`)
196
195
- Managed by systemd (no PID file)
197
196
- Auto-restart on failure, boot on startup
198
-
- Stop with: `pulse service stop`
199
-
- Best for: Production deployments
197
+
- Stop with: `nodepulse service stop`
198
+
- Best for: Production deployments (managed by Ansible)
200
199
201
-
**Important**: `pulse stop` only works for daemon mode. If systemd service is running, it provides helpful guidance to use `pulse service stop` instead.
200
+
**Important**: `nodepulse stop` only works for daemon mode. If systemd service is running, it provides helpful guidance to use `nodepulse service stop` instead.
202
201
203
202
### Service Management
204
203
205
204
```bash
206
-
pulse service install # Install systemd service
207
-
pulse service start # Start the service
208
-
pulse service stop # Stop the service
209
-
pulse service restart # Restart the service
210
-
pulse service status # Check detailed systemd service status
211
-
pulse service uninstall # Remove the service
205
+
nodepulse service install # Install systemd service
206
+
nodepulse service start # Start the service
207
+
nodepulse service stop # Stop the service
208
+
nodepulse service restart # Restart the service
209
+
nodepulse service status # Check detailed systemd service status
0 commit comments