Created
February 13, 2020 23:53
-
-
Save ryanrousseau/a9b51a51a0c86115abbf4f5fdaa3c7f1 to your computer and use it in GitHub Desktop.
Configure Octopus Instance
This file contains hidden or 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
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" create-instance --instance "OctopusServer" --config "C:\Octopus\OctopusServer.config" --serverNodeName "OCTOPUS-XPS" | |
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" database --instance "OctopusServer" --connectionString "Data Source=(local)\SQLEXPRESS;Initial Catalog=OctopusScriptTest;Integrated Security=True" --create --grant "NT AUTHORITY\SYSTEM" | |
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" configure --instance "OctopusServer" --webForceSSL "False" --webListenPrefixes "http://localhost:8080/" --commsListenPort "10943" --usernamePasswordIsEnabled "True" | |
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" service --instance "OctopusServer" --stop | |
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" admin --instance "OctopusServer" --username "admin" --email "[email protected]" --password "YourPasswordHere" | |
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" service --instance "OctopusServer" --install --reconfigure --start --dependOn "MSSQL$SQLEXPRESS" |
This file contains hidden or 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
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" create-instance --instance "OctopusServer" --config "C:\Octopus\OctopusServer.config" --serverNodeName "OCTOPUS-XPS" | |
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" database --instance "OctopusServer" --connectionString "Data Source=(local)\SQLEXPRESS;Initial Catalog=OctopusScriptTest;Integrated Security=True" --masterKey "yourmasterkey==" --grant "NT AUTHORITY\SYSTEM" | |
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" configure --instance "OctopusServer" --webForceSSL "False" --webListenPrefixes "http://localhost:8080/" --commsListenPort "10943" --usernamePasswordIsEnabled "True" | |
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" service --instance "OctopusServer" --stop | |
"C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe" service --instance "OctopusServer" --install --reconfigure --start --dependOn "MSSQL$SQLEXPRESS" |
This is really helpful for those curious ... and I now have a place to lead folks to when they need an example of this. The official documentation I don't think has the actual XML.
π I'll pitch to my team that we should build a guide for this as well. I'll post a link here when that happens.
Awesome! This is going to be a fun infrastructure adventure. Too bad we only have a single project right now, though.
From: Ryan Rousseau <[email protected]>
Sent: Thursday, February 13, 2020 11:21 PM
To: ryanrousseau <[email protected]>
Cc: Katherine Moss <[email protected]>; Manual <[email protected]>
Subject: Re: ryanrousseau/configure-new-from-scratch
This is really helpful for those curious ... and I now have a place to lead folks to when they need an example of this. The official documentation I don't think has the actual XML.
π I'll pitch to my team that we should build a guide for this as well. I'll post a link here when that happens.
β
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgist.github.com%2Fa9b51a51a0c86115abbf4f5fdaa3c7f1%3Femail_source%3Dnotifications%26email_token%3DADS4MABNQNSQMV2ORY7YFA3RCYL2PA5CNFSM4KU5PCZKYY3PNVWWK3TUL52HS4DFVNDWS43UINXW23LFNZ2KUY3PNVWWK3TUL5UWJTQAGB4N2%23gistcomment-3176669&data=02%7C01%7C%7Cbc0e6ed534a548da5cec08d7b10549ba%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637172508572350293&sdata=ea2sOrZF28TT66lDckS0kVKVzB5gdjU%2FXUBZzoaUEr0%3D&reserved=0>, or unsubscribe<https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FADS4MAC7MZSZ6XS6VNFC52TRCYL2PANCNFSM4KU5PCZA&data=02%7C01%7C%7Cbc0e6ed534a548da5cec08d7b10549ba%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637172508572360298&sdata=Qpc6MIEk%2FoK1DQxc0yWQacMENPj%2BvSgHvkrznGtEMUY%3D&reserved=0>.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is really helpful for those curious ... and I now have a place to lead folks to when they need an example of this. The official documentation I don't think has the actual XML.