Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>tc-install
parent
4a696037e2
commit
e4ecc695a0
|
|
@ -213,7 +213,7 @@ export PATH="/usr/local/bin:$PATH"
|
|||
|
||||
### Windows
|
||||
|
||||
You can run the `telegraf_controller` executable in place you can run
|
||||
You can run the `telegraf_controller` executable in place or you can run
|
||||
{{% product-name %}} as a Windows service.
|
||||
|
||||
- [Run the application in place](#run-the-application-in-place)
|
||||
|
|
@ -261,7 +261,7 @@ service.
|
|||
|
||||
### SQLite {note="(Default)"}
|
||||
|
||||
With SQLite is installed, no additional setup required.
|
||||
With SQLite installed, no additional setup is required.
|
||||
{{% product-name %}} creates the database file automatically on first run.
|
||||
|
||||
#### Default SQLite data locations
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ telegraf_controller
|
|||
|
||||
```powershell
|
||||
$env:PORT=3000
|
||||
$env:HEARTBEAT_PORT=3001
|
||||
$env:HEARTBEAT_PORT=3001
|
||||
|
||||
./telegraf_controller.exe
|
||||
```
|
||||
|
|
@ -102,8 +102,6 @@ telegraf_controller --port=3000 --heartbeat-port=3001
|
|||
{{% /tab-content %}}
|
||||
{{< /tabs-wrapper >}}
|
||||
|
||||
|
||||
|
||||
## Permission denied (Linux/macOS)
|
||||
|
||||
If you do not have permission to run the `telegraf_controller` executable,
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ menu:
|
|||
weight: 102
|
||||
---
|
||||
|
||||
Unisntall Telegraf Controller and remove all files associated with the
|
||||
Uninstall Telegraf Controller and remove all files associated with the
|
||||
application. This process depends on your operating system and installation
|
||||
method.
|
||||
|
||||
|
|
@ -56,7 +56,7 @@ To fully uninstall {{% product-name %}} from Linux:
|
|||
PostgreSQL instance:
|
||||
|
||||
```sql
|
||||
DROP DATABASE telegraf_controller
|
||||
DROP DATABASE telegraf_controller;
|
||||
```
|
||||
|
||||
<!--------------------------- END LINUX --------------------------->
|
||||
|
|
@ -96,7 +96,7 @@ To fully uninstall {{% product-name %}} from macOS:
|
|||
PostgreSQL instance:
|
||||
|
||||
```sql
|
||||
DROP DATABASE telegraf_controller
|
||||
DROP DATABASE telegraf_controller;
|
||||
```
|
||||
|
||||
<!--------------------------- END MACOS --------------------------->
|
||||
|
|
@ -122,7 +122,7 @@ To fully uninstall {{% product-name %}} from Windows:
|
|||
2. **Remove all files associated with {{% product-name %}}**:
|
||||
|
||||
```powershell
|
||||
# Remove the telegraf_controller executable and other related files,
|
||||
# Remove the telegraf_controller executable and other related files,
|
||||
# including the SQLite database if using SQLite
|
||||
Remove-Item -Path "$env:LOCALAPPDATA\telegraf_controller" -Recurse
|
||||
Remove-Item -Path "C:\Program Files\TelegrafController" -Recurse
|
||||
|
|
@ -132,7 +132,7 @@ To fully uninstall {{% product-name %}} from Windows:
|
|||
PostgreSQL instance:
|
||||
|
||||
```sql
|
||||
DROP DATABASE telegraf_controller
|
||||
DROP DATABASE telegraf_controller;
|
||||
```
|
||||
|
||||
<!--------------------------- END WINDOWS --------------------------->
|
||||
|
|
|
|||
Loading…
Reference in New Issue