In Windows server I can't start Sync Gateway

I try to start on couchbase, so I ask for your help and understanding! I try to sync

My config.json:

{
“adminInterface”: “127.0.0.1:4985”,
“interface”: “0.0.0.0:4984”,
“use_tls_server”: false,
“databases”: {
“cluster-hugapp”: {
“server”: “http://127.0.0.1:8091”,
“bucket”: “bucket-hugapp”,
“username”: “sync_gateway”,
“password”: “123321”,
“enable_shared_bucket_access”: true,
“import_docs”: true,
“num_index_replicas”: 0,
“users”: {
“GUEST”: { “disabled”: false, “admin_channels”: [““] }
}
}
},
“logging”: {
“console”: {
“log_level”: “debug”,
“log_keys”: [”
”]
}
}
}

When I run it I get the error

“Couldn’t start Sync Gateway: listen tcp 0.0.0.0:4984: bind: Normally, only one use of each socket address (protocol/network address/port) is permitted.” and can’t login

Also, with http://127.0.0.1:4984/ I get

{
“couchdb”: “Welcome”,
“vendor”: {
“name”: “Couchbase Sync Gateway”,
“version”: “3.2”
},
“version”: “Couchbase Sync Gateway/3.2.1(15;release) CE”,
“persistent_config”: true
}

Thank you for any help

This combined with the HTTP response shows you already have Sync Gateway running somewhere. If you followed the docs to install, Sync Gateway will be installed as a service and started automatically.

You can then update the config and restart the service to use new configuration.

Yes. The problem was resolved after a reboot. Thanks for your help!