Setting up self-hosted Minio on Windows 10 with automatically renewing SSL certificate

Thanks for the How-To. Just a heads-up but I was running into a problem when trying to install Minio as a service in Step 5 (Windows 7). When entering the following:

nssm.exe install d:\minio\minio.exe server d:\minio-data

I kept getting an error of:

“Error creating service! CreateService(): The filename, directory name, or volume label syntax is incorrect.”

I was able to get this to work by defining the service name like this:

nssm.exe install Minio d:\minio\minio.exe server d:\minio-data
Service “Minio” installed successfully!

1 Like