mirror of
https://github.com/minio/minio.git
synced 2025-11-25 03:56:17 -05:00
docs: Restructure docs, move the files to their relevant location. (#3648)
Also combines windows TLS docs with single doc with Linux.
This commit is contained in:
28
docs/service/windows/README.md
Normal file
28
docs/service/windows/README.md
Normal file
@@ -0,0 +1,28 @@
|
||||
# Running Minio as a service on Windows
|
||||
|
||||
## Install Minio service
|
||||
|
||||
NSSM is an opensource alternative to srvany. NSSM is still being updated, and works on Windows 10 as well.
|
||||
|
||||
Download [NSSM](http://nssm.cc/download) and extract the 64 bit nssm.exe to a known path.
|
||||
|
||||
```
|
||||
c:\nssm.exe install Minio c:\bin\minio.exe server c:\data
|
||||
```
|
||||
|
||||
### Configure startup type
|
||||
|
||||
When you start services, look for the Minio service and start and stop (or make it automatically start at reboots) the service.
|
||||
|
||||

|
||||
|
||||
### Configure user
|
||||
|
||||
It is a good (and secure) practice to create a new user, assign rights to the data folder to this user and change the service Log On info to use the newly created user.
|
||||
|
||||

|
||||
|
||||
## Delete Minio service
|
||||
```
|
||||
c:\nssm.exe remove Minio
|
||||
```
|
||||
Reference in New Issue
Block a user