Hosting Bundle
.
configuration guide
Deploying the build of Atlas from your /out
directory is simple. If you are doing an update or redeploying, a few services should be stopped before copying in the new build.
First, stop solr search engine.
In window services, find and stop “solr”, or use this command in your cmd terminal.
net stop solr
Next, stop the Atlas website in IIS, or use this command in your cmd terminal.
Powershell.exe -Command "Stop-Website -Name atlas"
Then stop the Atlas pool in IIS, or use this command in your cmd terminal.
Powershell.exe -Command "Stop-WebAppPool -Name atlas"
Now, copy the contents of the /out
folder onto the atlas website folder (probably C:\inetpub\wwwroot\atlas
) on your server.
Turn all the services on in reverse order that you used in turning them off.
Powershell.exe -Command "Start-WebAppPool -Name atlas"
Powershell.exe -Command "Start-Website -Name atlas"
net start solr