This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
juju-manual [2016/12/07 12:17] sgiulitti [This is how would look if both listeners are enabled.] |
juju-manual [2016/12/08 21:52] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | Hi guys, I will help you step by step to manually | + | Hi guys, I will help you step by step to manual |
====== Introduction ====== | ====== Introduction ====== | ||
- | + | Not long ago, manual provisioning in Juju was possible for linux machines. | |
- | Not long ago, manual provisioning in Juju was possible for linux machines. This feature is quite handy if you want to mange by yourself the cloud or you are providing for your services you own hosted cloud. | + | This feature is quite handy if you want to mange by yourself the cloud or you are providing for your services you own hosted cloud. |
- | + | ||
- | + | ||
- | ===== Further notes ===== | + | |
- | + | ||
- | - Please check the internet connection after the OS install on both machines and be sure that they can connect to the internet. | + | |
- | - Please make sure the hosted machines can ping one each other. | + | |
- | - Please install on client(the controller) the golang compiler and all of the toolchain, | + | |
- | - Please install on your client host(the controller, where you will run the commands)some variant http server(example apache, on my machine). | + | |
- | + | ||
- | ==== You need to have 2 machine pre installed with an OS ==== | + | |
- | + | ||
- | Controller (ubuntu release supported by juju) and windows-machine (any windows os supported by juju) | + | |
===== For this example we are are using this: ===== | ===== For this example we are are using this: ===== | ||
- | + | State Machine | |
- | State Machine | + | |
- | | + | |
==== So without further ado let's start the hacking process ==== | ==== So without further ado let's start the hacking process ==== | ||
- | ---- | ||
- | + | ====== Step 1 ====== | |
- | + | ||
- | ====== Step 1 ====== | + | |
'' | '' | ||
- | + | Pop up a bash terminal windows in your controller(juju client machine) and execute din commands in order. | |
- | Pop up a bash terminal windows in your controller(juju client machine) and execute din commands in order. | + | |
<code bash> | <code bash> | ||
go get -v -u https:// | go get -v -u https:// | ||
- | go get -v launchpad.net/ | + | go get -v -u launchpad.net/ |
cd $GOPATH/ | cd $GOPATH/ | ||
git checkout enable-windows-provisioner | git checkout enable-windows-provisioner | ||
Line 52: | Line 33: | ||
Download all scripts in some location ,make them executable and point the path into $PATH env. | Download all scripts in some location ,make them executable and point the path into $PATH env. | ||
+ | |||
For example(in my order of things). | For example(in my order of things). | ||
Line 68: | Line 50: | ||
</ | </ | ||
- | This is how it should look like after the above steps. | + | === Now you can build the project running this command === |
- | + | <code bash> | |
- | {{: | + | makejuju.sh enable-windows-provisioner |
- | + | </ | |
- | === Now you can build the project | + | |
- | + | ||
- | <code bash> | + | |
In the **uploadtools.sh** file make sure on the last line, the path is pointing to the files where the http server has acces to serve them, mine for example is **/ | In the **uploadtools.sh** file make sure on the last line, the path is pointing to the files where the http server has acces to serve them, mine for example is **/ | ||
Line 84: | Line 63: | ||
</ | </ | ||
- | We need to do this because the state machine will access the metadata and download the fresh jujud binary based on a specific | + | We need to do this because the state machine will access the metadata and download the jujud binary based on series. |
====== Step 2 ====== | ====== Step 2 ====== | ||
- | '' | + | '' |
First ,we need check if the windows machine has enabled all WinRM listeners. It's important because, in the provisioning process, the juju client directly communicate, | First ,we need check if the windows machine has enabled all WinRM listeners. It's important because, in the provisioning process, the juju client directly communicate, | ||
- | |||
- | ===== This is how would look if both listeners are enabled. ===== | ||
- | |||
- | {{: | ||
If not you will need to do the steps above. | If not you will need to do the steps above. | ||
Line 104: | Line 79: | ||
Set-ExecutionPolicy RemoteSigned | Set-ExecutionPolicy RemoteSigned | ||
winrm quickconfig | winrm quickconfig | ||
+ | # this will let us use the http listener with password auth | ||
+ | winrm set winrm/ | ||
+ | |||
+ | # make sure this settings are set like this. | ||
+ | winrm set winrm/ | ||
+ | winrm set winrm/ | ||
+ | winrm set winrm/ | ||
+ | winrm set winrm/ | ||
+ | winrm set winrm/ | ||
+ | winrm set winrm/ | ||
+ | |||
</ | </ | ||
- | |||
- | {{: | ||
To enable HTTPS listener you must first create a your own self signed CA cert using openssl or makecert. | To enable HTTPS listener you must first create a your own self signed CA cert using openssl or makecert. | ||
Line 118: | Line 102: | ||
To add Server Authentication to EKU open openssl.cfg and add extendedKeyUsage setting under v3_ca section: | To add Server Authentication to EKU open openssl.cfg and add extendedKeyUsage setting under v3_ca section: | ||
- | < | + | < |
[ v3_ca ] | [ v3_ca ] | ||
extendedKeyUsage = serverAuth | extendedKeyUsage = serverAuth | ||
+ | subjectAltName = IP: | ||
</ | </ | ||
Line 126: | Line 111: | ||
<code powershell> | <code powershell> | ||
set OPENSSL_CONF=C: | set OPENSSL_CONF=C: | ||
- | + | cd C: | |
- | C: | + | C: |
- | + | C: | |
- | C: | + | Import-PfxCertificate -FilePath .\winrmcacert.pfx -CertStoreLocation Cert: |
- | + | ############################################################################################ | |
- | winrm create winrm/ | + | # THIS IS ONLY IF YOU WANT TO TEST THE CA VERIFICATION ON THE HOST WITH Enter-PSSession cmd |
+ | Import-PfxCertificate -FilePath .\winrmcacert.pfx -CertStoreLocation Cert: | ||
+ | ############################################################################################ | ||
+ | winrm set winrm/ | ||
+ | winrm set winrm/ | ||
+ | winrm create winrm/ | ||
+ | netsh advfirewall firewall add rule name=" | ||
</ | </ | ||
- | |||
- | <code powershell> | ||
- | $host = $env: | ||
- | $Cert = New-SelfSignedCertificate -CertstoreLocation Cert: | ||
- | Export-Certificate -Cert $Cert -FilePath C: | ||
- | mport-Certificate -Filepath " | ||
- | Enable-PSRemoting -SkipNetworkProfileCheck -Force | ||
- | New-Item -Path WSMan: | ||
- | New-NetFirewallRule -DisplayName " | ||
- | Add-Content $Env: | ||
- | # now you must reboot the windows machine. | ||
- | </ | ||
=== Note: === | === Note: === | ||
Don't forget to add those **'** around the **@{}**. | Don't forget to add those **'** around the **@{}**. | ||
- | |||
- | |||
- | === Now this should look like in the first powershell screenshot === | ||
- | |||
- | === I can't stress enough this to make sure we can reach the listeners please add execute this lines.=== | ||
- | |||
- | <code powershell> | ||
- | netsh advfirewall firewall add rule name=" | ||
- | winrm set winrm/ | ||
- | </ | ||
- | |||
- | === Now we should make the cert in pem format and copy just pem formated cert over the ubuntu machine === | ||
- | <code powershell> | ||
- | C: | ||
- | cat outcert.pem | ||
- | </ | ||
- | Copy the that starts with -----BEGIN CERTIFICATE----- and ends with -----END CERTIFICATE----- | ||
====== Step 3 ====== | ====== Step 3 ====== | ||
- | You need to copy the newly **CA sever cert** on the controller(juju client) in a specific x509 config folder where juju will look on. | + | You need to copy the newly **sever cert** on the controller(juju client) in a specific x509 config folder where juju will look on. |
You need to store the file with a specific name of **winrmcacert.crt** | You need to store the file with a specific name of **winrmcacert.crt** | ||
- | Please make sure that the CA cert is in pem format. | + | Please make sure that the server |
<code bash> | <code bash> | ||
mkdir -p $HOME/ | mkdir -p $HOME/ | ||
- | |||
# make here a quick copy of the CA cert because if something is broken juju will delete the x509 dir and regenerate all the client certs but not the CA. | # make here a quick copy of the CA cert because if something is broken juju will delete the x509 dir and regenerate all the client certs but not the CA. | ||
cp winrmcacert.crt $HOME/ | cp winrmcacert.crt $HOME/ | ||
- | |||
# in order to generate the client certs by juju you must hit the command | # in order to generate the client certs by juju you must hit the command | ||
juju status | juju status | ||
- | |||
- | # now move the cacert into x509 | ||
- | cp winrmcacert.crt $HOME/ | ||
- | |||
# If you have some custom client cert please rename them into winrmclientkey.pem and winrmclientcert.crt and move them into $HOME/ | # If you have some custom client cert please rename them into winrmclientkey.pem and winrmclientcert.crt and move them into $HOME/ | ||
- | |||
# if you list the dirs you should have something like this. | # if you list the dirs you should have something like this. | ||
tree x509/ | tree x509/ | ||
Line 196: | Line 150: | ||
├── winrmclientcert.crt | ├── winrmclientcert.crt | ||
└── winrmclientkey.pem | └── winrmclientkey.pem | ||
- | |||
- | |||
</ | </ | ||
Line 206: | Line 158: | ||
<code bash> | <code bash> | ||
- | juju bootstrap | + | juju bootstrap manual/10.10.10.101 mymanual --debug |
</ | </ | ||
+ | Now for the grand finale. | ||
- | {{:bootstrapconfigmanual.png? | + | <code bash> |
+ | juju add-machine --debug winrm:Administrator@10.10.10.101 | ||
+ | </ | ||
- | If you hit juju status we should have an environment set and ready. | + | ======= Manually adding the Client certs on the target windows machine ====== |
- | <code bash> | + | Pop up a powershell windows and type these lines with your own credentials in it. |
- | juju status | + | |
- | </ | + | |
- | {{: | + | <code powershell> |
+ | $username = " | ||
+ | $password = " | ||
+ | $pfx_password = " | ||
+ | $certThumb = " | ||
+ | $CN = "CN OF THE CLIENT CERT" | ||
- | Now for the grand finale. | + | $secure_password = ConvertTo-SecureString $password -AsPlainText -Force |
+ | $pfx_secure_password = ConvertTo-SecureString $pfx_password -AsPlainText -Force | ||
- | <code bash> | + | Import-PfxCertificate |
- | juju add-machine | + | Import-PfxCertificate -FilePath winrmclientcert.pfx -CertStoreLocation Cert: |
- | </ | + | |
+ | $cred = New-Object System.Management.Automation.PSCredential " | ||
- | {{:winrmaddmachine.png? | + | # CREATE WINRM CERT MAPPING |
+ | New-Item -Path WSMan:\localhost\ClientCertificate -Issuer $certThumb -Subject $CN -Uri * -Credential $cred -Force | ||
+ | # Test client connection with client cert auth without skipping the CA | ||
+ | Test-WSMan -ComputerName $env: | ||
+ | # test client connection with client cert auth and skip the CA verification and CN check | ||
+ | $opt = New-PSSessionOption –SkipCACheck –SkipCNCheck –SkipRevocationCheck | ||
+ | Enter-PSSession -ComputerName $env: | ||
+ | |||
+ | |||
+ | # Remove Client mapping (in case you want to remove it) | ||
+ | # THIS WILL REMOVE ALL CLIENT CERTITIFACTES IN WSMAN | ||
+ | Remove-Item -Path WSMan: | ||
+ | </ |