lazypower | bic2k: Are you still working through moving your juju install? I just recently did that. | 00:40 |
---|---|---|
=== CyberJacob is now known as CyberJacob|Away | ||
bic2k | lazypower: I think I got it figured out, added the new machines ssh key to the authorized_hosts on machine/0. So far so good, but haven't tried any fancy stuff yet | 00:43 |
lazypower | Yeah, That was my gotchya I ran into. I ended up just sharing the SSH key with the new host and all was well with the world. | 00:44 |
lazypower | Considering i've only done this with AWS and LOCAL environments I cannot speak to the openstack specifics. | 00:44 |
=== bic2k-duo is now known as bic2k | ||
=== CyberJacob|Away is now known as CyberJacob | ||
=== CyberJacob is now known as CyberJacob|Away | ||
michal_s | marcoceppi: I have deployed clean WP on Azure, with no tuning and with juju set wordpress wp-content=git@github.com:smereczynski/jujuwp-content.git. Again nothing. I have logs from machines 0 and 1 here: https://gist.github.com/smereczynski/8236592 | 11:39 |
michal_s | marcoceppi: clould You please tell me if I'm doing sth wrong? | 11:40 |
=== BradCrittenden is now known as bac | ||
marcoceppi | michal_s: huh, that's odd. One min | 11:55 |
michal_s | marcoceppi: no problem, You don't need to hurry | 11:59 |
michal_s | I wish to present Juju and Windows Azure to students and this one thing seems to not work properly :/ | 11:59 |
marcoceppi | michal_s: yeah, the code looks sound, as it should work, I'm going to spin it up - it's just bailing before doing the do_vcs function | 12:04 |
michal_s | marcoceppi: If You wish, I can give You code for Windows Azure test account | 12:09 |
michal_s | with this code You can create subscription without credit card | 12:10 |
marcoceppi | michal_s: no, that's okay. I've got accounts in all the clouds | 12:10 |
michal_s | ok :) | 12:10 |
marcoceppi | michal_s: can you describe "doing nothing" | 12:35 |
marcoceppi | if you ssh and move to /var/www/wp-content do you not see your git stuff? | 12:36 |
=== gary_poster|away is now known as gary_poster | ||
=== gary_poster is now known as gary_poster|away | ||
michal_s | marcoceppi: there is no my stuff in wp-content | 13:16 |
marcoceppi | michal_s: is the deployment still running? | 13:16 |
michal_s | yes | 13:16 |
marcoceppi | I think there's an idempotentcy issue with the charm | 13:16 |
marcoceppi | michal_s: have you completed the setup? | 13:16 |
marcoceppi | via the web interface | 13:17 |
michal_s | yes, setup is completed | 13:17 |
michal_s | site is running | 13:17 |
marcoceppi | michal_s: run `juju set wordpress wp-content=https://github.com/smereczynski/jujuwp-content.git` | 13:17 |
marcoceppi | just so that the command is a different value, and the config-changed hook will run | 13:18 |
michal_s | agent-state-info: 'hook failed: "config-changed"' | 13:20 |
michal_s | from juju status | 13:20 |
michal_s | and no changes in wp-config | 13:20 |
michal_s | share juju config output? | 13:21 |
michal_s | juju status* | 13:21 |
michal_s | https://gist.github.com/smereczynski/8237758 | 13:23 |
marcoceppi | michal_s: well, a config-changed error, that's interesting. Can you pastebin the /var/log/juju/unit-wordpress-0.log from wordpress/0? | 13:24 |
michal_s | ok, moment | 13:25 |
michal_s | marcoceppi: https://gist.github.com/smereczynski/8237809 | 13:28 |
=== gary_poster|away is now known as gary_poster | ||
marcoceppi | michal_s: try `juju resolved --retry wordpress/0` | 13:28 |
michal_s | marcoceppi: ok, it works! | 13:29 |
marcoceppi | michal_s: interesting, there's an idempotency error in the charm during configuration changes. | 13:30 |
marcoceppi | michal_s: I'll file a bug and try to follow up with a patch next week | 13:30 |
michal_s | great :) Thank You very much for Your help | 13:30 |
=== hatch_ is now known as hatch | ||
=== ckramer is now known as claytonk | ||
=== claytonk is now known as ninjix | ||
=== nate_finch is now known as natefinch | ||
tclarke | having trouble d/ling charms due to https/ssl intercept firewall. Is there a way to disable cert checking (alternately, where is the cacert file juju uses so I can add the firewall certs) | 17:58 |
marcoceppi | tclarke: downloading charms where? | 18:15 |
tclarke | ERROR cannot get latest charm revision: Get https://store.juju.ubuntu.com/charm-info?charms=cs%3Aprecise%2Fjuju-gui: failed to parse certificate from server: x509: RSA modulus is not a positive number | 18:17 |
tclarke | juju deploy juju-gui | 18:17 |
marcoceppi | fwereade: Is there a way to disable cert checking during deploy? | 18:20 |
marcoceppi | tclarke: One way around this is to deploy from local | 18:20 |
marcoceppi | tclarke: you can download the charm to your computer, then run a deploy using that version | 18:20 |
tclarke | where does juju get it's cacert's from? I can always add the local ones there | 18:21 |
marcoceppi | tclarke: it's in the public chain | 18:26 |
tclarke | the standard /etc/ssl chain? | 18:27 |
=== CyberJacob|Away is now known as CyberJacob | ||
marcoceppi | yeah, they use a cert for all of *.ubuntu.com | 18:28 |
tclarke | I'll try installing the firewall certs there (the problem is ssl intercept proxies rewrite the cert chain for all ssl) | 18:29 |
tclarke | is there information on how to setup a local mirror? the only thing I see re: local repositories involves writing your own, nothing on how to pull a cs charm to a local mirror and deploy | 18:34 |
marcoceppi | tclarke: you can use charm-tools to download charms | 18:36 |
marcoceppi | from the stable ppa (ppa:juju/stable) | 18:36 |
marcoceppi | once installed, and you have your directory structure, just `juju charm get <charm-name>` | 18:36 |
marcoceppi | there's a juju charm get-all but it takes forever to run, better to just grab the ones you're interested in | 18:37 |
tclarke | juju charm get juju-gui | 18:39 |
tclarke | Error: Could not locate charm in store. | 18:39 |
marcoceppi | tclarke: oh, haha, it uses SSL as well | 18:40 |
marcoceppi | to look up things via the API | 18:40 |
marcoceppi | tclarke: if you have bazaar installed, try `bzr branch lp:charms/juju-gui` | 18:40 |
=== natefinch is now known as natefinch-snow | ||
=== hatch_ is now known as hatch | ||
surgemcgee | Is it possible to set up a meeting or maybe discuss our cloud infrastructure needs here? It is hard to wrap ones mind around the concept of cloud scalability. I would be licensing the charm GPL v3. | 22:11 |
=== gary_poster is now known as gary_poster|away | ||
hatch | surgemcgee this would be a good place but it looks like most people are offline atm, maybe try back tomorrow or Monday | 22:33 |
marcoceppi | surgemcgee: check pm | 23:06 |
=== CyberJacob is now known as CyberJacob|Away |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!