big-r81 commented on issue #5023: URL: https://github.com/apache/couchdb/issues/5023#issuecomment-2063192996
Hi, mhh, I can't reproduce this! I did this steps to install CouchDB (without the automatic service installation): Silenty install CouchDB to `C:\CouchDB-Test`: ``` msiexec /i apache-couchdb-3.3.3.msi /quiet APPLICATIONFOLDER=C:\CouchDB-Test ADMINUSER=a ADMINPASSWORD=a /norestart ``` Afterwards CouchDB should be installed into `C:\CouchDB-Test`. Now you can manually install the service with (you need admin rights): ``` C:\CouchDB-Test\bin\nssm.exe install "Apache CouchDB Test" "C:\CouchDB-Test\bin\couchdb.cmd" Service "Apache CouchDB Test" installed successfully! ``` Now you can check the installation and the status of the service (should be stopped): ``` C:\CouchDB-Test\bin\nssm.exe status "Apache CouchDB Test" SERVICE_STOPPED ``` The service should start with: ``` C:\CouchDB-Test\bin\nssm.exe start "Apache CouchDB Test" Apache CouchDB Test: START: Der Vorgang wurde erfolgreich beendet. (<-- translating: starting was successful) C:\CouchDB-Test\bin\nssm.exe status "Apache CouchDB Test" SERVICE_RUNNING ``` Testing: ``` curl.exe http://127.0.0.1:5984/_up {"status":"ok","seeds":{}} ``` So the crash dump doesn't show me anything interesting. Do you have any logs while starting the service? Important is, that the install directory of CouchDB needs admin rights, so your (service) user needs that too, or you have to change this permissions of the install dir after the installation! Only informational if you want to install the service as well do: ``` msiexec /i apache-couchdb-3.3.3.msi /quiet INSTALLSERVICE=1 APPLICATIONFOLDER=C:\CouchDB-Test ADMINUSER=a ADMINPASSWORD=a /norestart ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
