Forked from adoprog/Download and Install MongoDB as Windows Service PowerShell Script
Last active
April 15, 2022 17:10
-
-
Save kamsar/98681b73979adc89610c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# MongoDB (as a windows service) | |
# | |
$mongoDbPath = "$env:SystemDrive\MongoDB" | |
$mongoDbConfigPath = "$mongoDbPath\mongod.cfg" | |
$url = "https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.7.zip" | |
$zipFile = "$mongoDbPath\mongo.zip" | |
$unzippedFolderContent ="$mongoDbPath\mongodb-win32-x86_64-2008plus-3.2.7" | |
if ((Test-Path -path $mongoDbPath) -eq $false) | |
{ | |
Write-Host "Setting up directories..." | |
$temp = md $mongoDbPath | |
$temp = md "$mongoDbPath\log" | |
$temp = md "$mongoDbPath\data" | |
$temp = md "$mongoDbPath\data\db" | |
Write-Host "Setting up mongod.cfg..." | |
[System.IO.File]::AppendAllText("$mongoDbConfigPath", "dbpath=$mongoDbPath\data\db`r`n") | |
[System.IO.File]::AppendAllText("$mongoDbConfigPath", "logpath=$mongoDbPath\log\mongo.log`r`n") | |
[System.IO.File]::AppendAllText("$mongoDbConfigPath", "smallfiles=true`r`n") | |
Write-Host "Downloading MongoDB..." | |
$webClient = New-Object System.Net.WebClient | |
$webClient.DownloadFile($url,$zipFile) | |
Write-Host "Unblock zip file..." | |
Get-ChildItem -Path $mongoDbPath -Recurse | Unblock-File | |
Write-Host "Unzipping Mongo files..." | |
$shellApp = New-Object -com shell.application | |
$destination = $shellApp.namespace($mongoDbPath) | |
$destination.Copyhere($shellApp.namespace($zipFile).items()) | |
Copy-Item "$unzippedFolderContent\*" $mongoDbPath -recurse | |
Write-Host "Cleaning up..." | |
Remove-Item $unzippedFolderContent -recurse -force | |
Remove-Item $zipFile -recurse -force | |
Write-Host "Installing Mongod as a service..." | |
& $mongoDBPath\bin\mongod.exe --config $mongoDbConfigPath --install | |
Write-Host "Starting Mongod..." | |
& net start mongodb | |
} | |
else { | |
Write-Host "MongoDB already installed." | |
} |
What If I want different version of MongoDB and want to set different port?
Works great! However it fails if I change to 4.2.6 :(
Works great! However it fails if I change to 4.2.6 :(
I have update the code to work with version 4.4.
You can find it here: https://gist.github.com/marouane-miftah/acc497fc9681e8d907a421b73a7abdf3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This saved me from a lot of hassle. Thanks!