File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -81,13 +81,32 @@ administrative privilege, and type the two commands below.
8181
8282## Step 4: Run td-agent as Windows service
8383
84+ ### Using GUI
85+
8486Please guide yourself to
8587` Control Panel -> System and Security -> Administrative Tools -> Services ` ,
8688and you'll see ` Fluentd Windows Service ` is listed.
8789
8890Please double click ` Fluentd Window Service ` , and click ` Start ` button.
8991Then the process will be executed as Windows Service.
9092
93+ ### Using net.exe
94+
95+ ```
96+ > net start fluentdwinsvc
97+ The Fluentd Windows Service service is starting..
98+ The Fluentd Windows Service service was started successfully.
99+ ```
100+
101+ ### Using Powershell Cmdlet
102+
103+ ```
104+ PS> Start-Service fluentdwinsvc
105+ ```
106+
107+ Note that using ` fluentdwinsvc ` is needed to start Fluentd service in commandline.
108+ Because ` fluentdwinsvc ` is service name and it should be passed in ` net.exe ` or ` Start-Service ` Cmdlet.
109+
91110The log file will be located at ` C:/opt/td-agent/td-agent.log ` as we
92111specified in Step 3.
93112
You can’t perform that action at this time.
0 commit comments