| *** Manuel_112 has quit IRC | 00:00 | |
| *** Manuel_112 has joined #openstack | 00:04 | |
| *** bobh has joined #openstack | 00:08 | |
| *** zhangfei has joined #openstack | 00:08 | |
| *** Manuel_112 has quit IRC | 00:09 | |
| *** rp2 has quit IRC | 00:09 | |
| *** rp2 has joined #openstack | 00:11 | |
| *** sawinetehleet has joined #openstack | 00:11 | |
| sawinetehleet | Hello, I'm a noob with openstack and I've been trying find the answer on google but without success so far; I upload objects to an openstack archive via rsync. Is there a way I can set those objects to expire after 90 days without uploading them with swift? Is there a global setting I can apply on the container? | 00:12 |
|---|---|---|
| *** thegreenhundred has joined #openstack | 00:14 | |
| *** bobh has quit IRC | 00:14 | |
| notmyname | sawinetehleet: no, you can't set it for a whole container (out of the box), but you can update the objects without having to reupload them | 00:14 |
| notmyname | sawinetehleet: if you POST to the object (ie set object metadata) and set the x-delete-after header, it will do the expiry thing | 00:15 |
| *** Cybodog has joined #openstack | 00:15 | |
| sawinetehleet | The script I'm using is targetting multiple files across multiple directries (like rsync /home/*/domains/* ....) is it possible to integrate swift to do it on all the individual files | 00:16 |
| notmyname | sawinetehleet: just remember that an object POST will overwrite existing user-set metadata with whatever you send in the POST | 00:16 |
| notmyname | sawinetehleet: is this a cluster you control, or is it simply one you have access to as a user? | 00:16 |
| sawinetehleet | only as a user | 00:16 |
| *** rstarmer has joined #openstack | 00:17 | |
| notmyname | so... how are you uploading to swift via rsync? | 00:17 |
| sawinetehleet | all my files have a timestamp in the name, would it be easier to use regex to delete them? | 00:17 |
| notmyname | rsync doesn't speak the swift api | 00:17 |
| sawinetehleet | Sorry if I misexplained. I use rsync to upload with ssh. and I want to cleanup the archive for files older than 90 days, and I saw swift could do it. | 00:18 |
| notmyname | upload to what? a swift cluster? I think I may have misunderstood that you were storing data in swift. but if you are doing that, then how are you getting the data into swift? | 00:19 |
| sawinetehleet | well its an openstack object archive at OVH | 00:20 |
| sawinetehleet | which I can interact with swift | 00:20 |
| *** achadha has joined #openstack | 00:20 | |
| *** bobh has joined #openstack | 00:21 | |
| notmyname | ah. `swift` the CLI tool? | 00:21 |
| sawinetehleet | yeah the python tool | 00:21 |
| sawinetehleet | sorry, I didn't know there was another thing called swift | 00:21 |
| notmyname | ugh. again, I hate the fact we renamed the client app to the same name as the service :/ | 00:21 |
| notmyname | swift is an object storage engine that you can talk to via the CLI too named swift | 00:22 |
| sawinetehleet | I see lol | 00:22 |
| *** salv-orlando has joined #openstack | 00:22 | |
| notmyname | swift the CLI is simply a CLI and python SDK for talking to any swift cluster | 00:22 |
| *** chyka has joined #openstack | 00:22 | |
| notmyname | of which I believe OVH's archive service is one | 00:22 |
| sawinetehleet | right | 00:23 |
| notmyname | so I still don't understand how rsync and ssh play in :-) | 00:23 |
| sawinetehleet | ok I'll try to explain my full use case | 00:23 |
| *** achadha has quit IRC | 00:25 | |
| *** ikhan has joined #openstack | 00:26 | |
| sawinetehleet | I have a bash script that runs everyday on my server that collects multiple backups across multiple directories that are generated each day. These subdirectories are configured to keep only 3 backups. So that script runs and rsync all the newly generated files with the ones on my openstack archive. So I have 3 backups on the server itself that keeps refreshing themselves and 90 days of | 00:26 |
| sawinetehleet | backups on the archive | 00:26 |
| sawinetehleet | The reason I use rsync is so I don't upload the same backup 2x on the archive | 00:27 |
| *** chyka has quit IRC | 00:27 | |
| notmyname | ok, that makes sense | 00:27 |
| *** markvoelker_ has quit IRC | 00:27 | |
| notmyname | what is rsync point to? what's the remote? | 00:27 |
| notmyname | another server you run? | 00:27 |
| *** markvoelker has joined #openstack | 00:28 | |
| sawinetehleet | yeah, a vps from ovh | 00:28 |
| notmyname | ah ok | 00:28 |
| *** markvoelker has quit IRC | 00:28 | |
| sawinetehleet | Do you think there is something to do with that existing script, or I should make a new only that use only swift commands | 00:28 |
| notmyname | so that vps has local files (the archives you uploaded from elsewhere) and you use the `swift` cli to put them in OVH's archive storage thingy | 00:28 |
| notmyname | ? | 00:28 |
| sawinetehleet | right now i'm only using swift to download the files from the archive | 00:29 |
| *** dxiri has quit IRC | 00:29 | |
| sawinetehleet | but I saw that I needed to use it to set an expiration date | 00:29 |
| notmyname | how do they get in the archive? | 00:29 |
| *** gary_perkins has joined #openstack | 00:29 | |
| *** dxiri has joined #openstack | 00:29 | |
| notmyname | maybe I just don't understand what the ovh archive thing is | 00:29 |
| sawinetehleet | like this | 00:29 |
| sawinetehleet | rsync -avh --progress --ignore-existing -e 'sshpass -p <passwordandcredentials> ssh -p 22' /home/*/domains/*/wordpress/wp-content/backupwordpress-*/* pca@gateways.storage.bhs1.cloud.ovh.net:archivename/ | 00:29 |
| *** clouddig has quit IRC | 00:30 | |
| *** Nel1x has joined #openstack | 00:31 | |
| notmyname | whoa! ok | 00:31 |
| *** clouddig has joined #openstack | 00:31 | |
| notmyname | I didn't realize how their thing works | 00:31 |
| *** thorst_afk has joined #openstack | 00:31 | |
| sawinetehleet | yeah they set it up so you can interact with it using sftp scp and rsync | 00:31 |
| notmyname | so they have some sort of prtocol gateway in front of the storage so you can do rsync or sftp or whatever to load the data | 00:31 |
| notmyname | (that's cool) | 00:31 |
| notmyname | they hint that it also allows the normal swift api, too | 00:32 |
| sawinetehleet | yup | 00:32 |
| *** annegentle has joined #openstack | 00:32 | |
| sawinetehleet | if I could pass metadata with the rsync command it would work but I have no idea | 00:32 |
| notmyname | so ... from my perspective (knowing swift and people that work at ovh, but not knowing ovh's products), I think you've got a couple of options | 00:32 |
| *** jplorier has joined #openstack | 00:32 | |
| *** Son_Goku has joined #openstack | 00:33 | |
| notmyname | yeah, you could figure out how to send the right metadata with the protocol gateway. good luck with that. I'd hope maybe they have some docs somewhere? | 00:33 |
| notmyname | I honestly have no idea | 00:33 |
| notmyname | but the other option would be to rewite your uploader client to store it via the swift API (eg using the swift CLI or some other client) | 00:33 |
| notmyname | that would allow you to have explicit control | 00:33 |
| *** radsy has joined #openstack | 00:34 | |
| notmyname | (assuming their archive storage works like that) | 00:34 |
| *** dxiri has quit IRC | 00:34 | |
| sawinetehleet | yeah.. I guess I'll have to rewrite the script to mimic the action of rsync | 00:34 |
| sawinetehleet | using swift | 00:34 |
| sawinetehleet | to search the archive for the file and not upload it if its there | 00:34 |
| *** catintheroof has quit IRC | 00:35 | |
| notmyname | sawinetehleet: well, if you have deterministic names of the archive files, you can do some nice tricks with conditional requests | 00:35 |
| notmyname | how big are the archives? | 00:35 |
| notmyname | more than 5GB? | 00:35 |
| sawinetehleet | files uploaded varies between 5MB and ~5-6gb | 00:36 |
| notmyname | ok | 00:36 |
| sawinetehleet | but they are all syntaxed like complete-2017-08-21-20-17-30.zip | 00:36 |
| notmyname | https://docs.openstack.org/python-swiftclient/latest/cli/index.html | 00:36 |
| *** jplorier has quit IRC | 00:37 | |
| sawinetehleet | Maybe with regex I could read the end of the filename and delete them daily with the backup script? | 00:37 |
| *** liverpooler has joined #openstack | 00:37 | |
| *** Son_Goku has quit IRC | 00:37 | |
| notmyname | you can use the `swift upload --skip-identical ...` option to get the client to do some checkign for you and prevent duplicate uploads | 00:38 |
| notmyname | sawinetehleet: out of curiosity, what time zone are you in? | 00:38 |
| sawinetehleet | gmt -5 | 00:38 |
| GenteelBen | notmyname: is this notyourname? | 00:38 |
| sawinetehleet | and thanks I guess that could work | 00:39 |
| sawinetehleet | hopefully swift upload supports the * | 00:39 |
| sawinetehleet | so I can use this with it | 00:39 |
| sawinetehleet | complete-2017-08-21-20-17-30.zip | 00:39 |
| sawinetehleet | err | 00:39 |
| sawinetehleet | this; /home/*/domains/*/wordpress/wp-content/backupwordpress-*/* | 00:39 |
| notmyname | sawinetehleet: you might also be interested in https://rclone.org/swift/ | 00:40 |
| *** clouddig has quit IRC | 00:40 | |
| notmyname | note that I'm not sure if they support sending extra metadata (eg expiry) | 00:40 |
| *** clouddig has joined #openstack | 00:41 | |
| *** morazi has joined #openstack | 00:41 | |
| sawinetehleet | Alright, thanks a lot for the help :) | 00:41 |
| notmyname | sawinetehleet: I've got to run, myself. but please jump in #openstack-swift if you have further questions | 00:41 |
| sawinetehleet | alrighty, have a good one | 00:42 |
| notmyname | sawinetehleet: you're in us central time zone, so there's lots of overlap for activity | 00:42 |
| *** markvoelker has joined #openstack | 00:44 | |
| *** annabelleB has joined #openstack | 00:44 | |
| *** baoli has joined #openstack | 00:46 | |
| *** cloudrancher has quit IRC | 00:47 | |
| *** baoli has quit IRC | 00:47 | |
| *** cloudrancher has joined #openstack | 00:48 | |
| *** baoli has joined #openstack | 00:48 | |
| *** markvoelker has quit IRC | 00:48 | |
| *** acidrainfall has quit IRC | 00:49 | |
| *** ikhan has quit IRC | 00:50 | |
| *** aossama has quit IRC | 00:53 | |
| *** MrAbaddon has quit IRC | 00:54 | |
| masber | good morning, i wanted to ask what is the difference between manilla and a multi-attached volume? | 00:56 |
| masber | and also if cinde multi-attached volumes are compatible with ceph as a data plane? | 00:57 |
| *** Manuel_112 has joined #openstack | 00:58 | |
| *** aossama has joined #openstack | 00:58 | |
| *** lucendio has quit IRC | 01:00 | |
| *** mudpuppy has quit IRC | 01:00 | |
| *** spotz has quit IRC | 01:00 | |
| *** aossama has quit IRC | 01:03 | |
| *** Manuel_112 has quit IRC | 01:04 | |
| *** andresmujica has joined #openstack | 01:04 | |
| *** aossama has joined #openstack | 01:04 | |
| *** TuanLA has joined #openstack | 01:04 | |
| *** andresmujica has quit IRC | 01:05 | |
| *** psahoo has joined #openstack | 01:06 | |
| *** Manuel_112 has joined #openstack | 01:07 | |
| *** MrAbaddon has joined #openstack | 01:07 | |
| *** annabelleB has quit IRC | 01:07 | |
| *** Calvin` has quit IRC | 01:07 | |
| *** blacklotus89 has quit IRC | 01:09 | |
| *** Son_Goku has joined #openstack | 01:09 | |
| *** Manuel_112 has quit IRC | 01:11 | |
| *** Calvin` has joined #openstack | 01:13 | |
| *** Calvin` has joined #openstack | 01:13 | |
| *** aossama has quit IRC | 01:17 | |
| *** woodard has joined #openstack | 01:17 | |
| *** bobh has quit IRC | 01:18 | |
| *** woodard has quit IRC | 01:20 | |
| *** blacklotus89 has joined #openstack | 01:20 | |
| *** aossama has joined #openstack | 01:20 | |
| *** woodard has joined #openstack | 01:20 | |
| *** woodard_ has joined #openstack | 01:21 | |
| *** woodard has quit IRC | 01:21 | |
| *** woodard_ has quit IRC | 01:21 | |
| *** smccarthy has joined #openstack | 01:24 | |
| *** zhouyf has joined #openstack | 01:25 | |
| *** radsy has quit IRC | 01:26 | |
| *** smccarthy has quit IRC | 01:28 | |
| *** georgem1 has joined #openstack | 01:32 | |
| *** pravins has joined #openstack | 01:32 | |
| *** mudpuppy has joined #openstack | 01:35 | |
| *** blacklotus89 has quit IRC | 01:35 | |
| *** spotz has joined #openstack | 01:35 | |
| *** thorst_afk has quit IRC | 01:41 | |
| *** aossama has quit IRC | 01:41 | |
| *** aossama has joined #openstack | 01:42 | |
| *** markvoelker has joined #openstack | 01:44 | |
| *** aselius has quit IRC | 01:46 | |
| *** rp2 has quit IRC | 01:48 | |
| *** rp2 has joined #openstack | 01:50 | |
| *** VW has joined #openstack | 01:55 | |
| *** aossama has quit IRC | 01:56 | |
| *** blacklotus89 has joined #openstack | 01:56 | |
| *** omie88877777 has quit IRC | 01:58 | |
| *** woodard has joined #openstack | 01:59 | |
| *** aossama has joined #openstack | 01:59 | |
| *** thorst_afk has joined #openstack | 02:00 | |
| *** woodard has quit IRC | 02:00 | |
| *** jmlowe has quit IRC | 02:00 | |
| *** Manuel_112 has joined #openstack | 02:01 | |
| *** bob_one has joined #openstack | 02:01 | |
| *** jmlowe has joined #openstack | 02:01 | |
| *** smccarthy has joined #openstack | 02:01 | |
| *** catintheroof has joined #openstack | 02:03 | |
| *** Manuel_112 has quit IRC | 02:05 | |
| *** bob_one has quit IRC | 02:05 | |
| *** aossama has quit IRC | 02:05 | |
| *** smccarthy has quit IRC | 02:06 | |
| *** aossama has joined #openstack | 02:09 | |
| *** radsy has joined #openstack | 02:09 | |
| *** radsy has quit IRC | 02:09 | |
| *** Manuel_112 has joined #openstack | 02:09 | |
| *** Manuel_112 has quit IRC | 02:10 | |
| *** Manuel_112 has joined #openstack | 02:10 | |
| *** pravins has quit IRC | 02:10 | |
| *** cyborg-one has joined #openstack | 02:14 | |
| *** Manuel_112 has quit IRC | 02:15 | |
| *** markvoelker has quit IRC | 02:18 | |
| *** yamahata has quit IRC | 02:19 | |
| *** omie888777 has joined #openstack | 02:19 | |
| *** iyamahat has quit IRC | 02:20 | |
| *** liverpooler has quit IRC | 02:21 | |
| *** gli has joined #openstack | 02:23 | |
| *** drifterza1 has joined #openstack | 02:23 | |
| *** drifterza has quit IRC | 02:25 | |
| *** omie888777 has quit IRC | 02:28 | |
| *** takimbal_ has quit IRC | 02:31 | |
| *** xinliang has quit IRC | 02:31 | |
| *** jamesbenson has joined #openstack | 02:32 | |
| *** aossama has quit IRC | 02:34 | |
| *** parlakisik has joined #openstack | 02:37 | |
| *** jamesbenson has quit IRC | 02:37 | |
| *** dxiri has joined #openstack | 02:41 | |
| *** zhangfei has quit IRC | 02:41 | |
| *** omie888777 has joined #openstack | 02:43 | |
| *** woodard has joined #openstack | 02:44 | |
| *** xinliang has joined #openstack | 02:44 | |
| *** woodard has quit IRC | 02:45 | |
| *** dxiri has quit IRC | 02:45 | |
| *** thorst_afk has quit IRC | 02:45 | |
| *** thorst_afk has joined #openstack | 02:46 | |
| *** FracKen has joined #openstack | 02:46 | |
| *** ikhan has joined #openstack | 02:46 | |
| *** MrAbaddon has quit IRC | 02:47 | |
| *** aossama has joined #openstack | 02:48 | |
| *** FracKen has quit IRC | 02:48 | |
| *** VW has quit IRC | 02:49 | |
| *** VW has joined #openstack | 02:49 | |
| *** thorst_afk has quit IRC | 02:50 | |
| *** ldl has joined #openstack | 02:52 | |
| *** woodard has joined #openstack | 02:52 | |
| *** gtrxcb has joined #openstack | 02:54 | |
| *** cliles has quit IRC | 02:54 | |
| *** zhangfei has joined #openstack | 02:58 | |
| *** acidrainfall has joined #openstack | 02:59 | |
| *** acidrainfall has quit IRC | 03:00 | |
| *** woodard has quit IRC | 03:01 | |
| *** MrAbaddon has joined #openstack | 03:02 | |
| *** smccarthy has joined #openstack | 03:02 | |
| *** Manuel_112 has joined #openstack | 03:03 | |
| *** VW has quit IRC | 03:04 | |
| *** woodard has joined #openstack | 03:05 | |
| *** nicolasbock has quit IRC | 03:05 | |
| *** smccarthy has quit IRC | 03:07 | |
| *** catintheroof has quit IRC | 03:07 | |
| *** Manuel_112 has quit IRC | 03:08 | |
| *** ddyer has joined #openstack | 03:11 | |
| *** parlakisik has quit IRC | 03:12 | |
| *** Manuel_112 has joined #openstack | 03:12 | |
| *** smccarthy has joined #openstack | 03:12 | |
| *** parlakisik has joined #openstack | 03:12 | |
| *** jmlowe has quit IRC | 03:13 | |
| *** jmlowe has joined #openstack | 03:14 | |
| *** markvoelker has joined #openstack | 03:15 | |
| *** Manuel_112 has quit IRC | 03:16 | |
| *** parlakisik has quit IRC | 03:17 | |
| *** woodard has quit IRC | 03:28 | |
| *** rp2 has quit IRC | 03:30 | |
| *** rp2 has joined #openstack | 03:31 | |
| *** ddyer has quit IRC | 03:33 | |
| *** links has joined #openstack | 03:39 | |
| *** gkadam_ has joined #openstack | 03:40 | |
| *** parlakisik has joined #openstack | 03:41 | |
| *** thorst_afk has joined #openstack | 03:47 | |
| *** markvoelker has quit IRC | 03:48 | |
| *** annegentle has quit IRC | 03:48 | |
| *** aossama has quit IRC | 03:51 | |
| *** thorst_afk has quit IRC | 03:51 | |
| *** vito_ has joined #openstack | 03:53 | |
| *** vito_ has quit IRC | 03:54 | |
| *** Bey0ndB1nary has joined #openstack | 03:57 | |
| *** chyka has joined #openstack | 03:57 | |
| *** Bey0ndB1nary has quit IRC | 03:57 | |
| *** georgem1 has quit IRC | 03:58 | |
| *** chyka has quit IRC | 04:01 | |
| *** GenteelBen has quit IRC | 04:02 | |
| *** aossama has joined #openstack | 04:02 | |
| *** germs has quit IRC | 04:06 | |
| *** albertcard1 has quit IRC | 04:06 | |
| *** Manuel_112 has joined #openstack | 04:06 | |
| *** Manuel_112 has quit IRC | 04:10 | |
| *** janki has joined #openstack | 04:10 | |
| *** smccarthy has quit IRC | 04:11 | |
| *** Donckers has quit IRC | 04:11 | |
| *** smccarthy has joined #openstack | 04:12 | |
| *** gli has quit IRC | 04:13 | |
| *** Manuel_112 has joined #openstack | 04:15 | |
| *** smccarthy has quit IRC | 04:16 | |
| *** jplorier has joined #openstack | 04:18 | |
| *** yamahata has joined #openstack | 04:19 | |
| *** Manuel_112 has quit IRC | 04:19 | |
| *** aludwar has quit IRC | 04:21 | |
| *** jplorier has quit IRC | 04:22 | |
| *** rvd has joined #openstack | 04:23 | |
| *** baoli has quit IRC | 04:23 | |
| *** ikhan has quit IRC | 04:23 | |
| *** gyee has quit IRC | 04:23 | |
| *** smccarthy has joined #openstack | 04:24 | |
| *** aossama has quit IRC | 04:25 | |
| *** aossama has joined #openstack | 04:27 | |
| *** takimbal has joined #openstack | 04:30 | |
| *** rstarmer has quit IRC | 04:31 | |
| *** rvd has quit IRC | 04:32 | |
| *** AnilV4 has joined #openstack | 04:34 | |
| *** rstarmer has joined #openstack | 04:36 | |
| *** salv-orlando has quit IRC | 04:37 | |
| *** baoli has joined #openstack | 04:37 | |
| *** masonjoyers__ has quit IRC | 04:39 | |
| *** masonjoyers__ has joined #openstack | 04:39 | |
| *** thirdrevelation has joined #openstack | 04:40 | |
| *** aossama has quit IRC | 04:41 | |
| *** parlakisik has quit IRC | 04:45 | |
| *** markvoelker has joined #openstack | 04:45 | |
| *** thorst_afk has joined #openstack | 04:47 | |
| *** baoli has quit IRC | 04:49 | |
| *** aossama has joined #openstack | 04:49 | |
| *** anshul has joined #openstack | 04:49 | |
| *** drifterza1 has quit IRC | 04:51 | |
| *** thorst_afk has quit IRC | 04:52 | |
| *** rstarmer has quit IRC | 04:54 | |
| *** rstarmer has joined #openstack | 04:55 | |
| *** ldl has quit IRC | 04:57 | |
| *** ldl has joined #openstack | 05:02 | |
| *** dparkes has quit IRC | 05:04 | |
| *** Manuel_112 has joined #openstack | 05:09 | |
| *** salv-orlando has joined #openstack | 05:09 | |
| *** ianychoi__ has joined #openstack | 05:12 | |
| *** Manuel_112 has quit IRC | 05:13 | |
| *** blacklotus89 has quit IRC | 05:14 | |
| *** iranzo has joined #openstack | 05:15 | |
| *** ianychoi_ has quit IRC | 05:16 | |
| *** aojea has joined #openstack | 05:16 | |
| *** Manuel_112 has joined #openstack | 05:17 | |
| *** aditya_r has joined #openstack | 05:18 | |
| *** markvoelker has quit IRC | 05:19 | |
| *** Manuel_112 has quit IRC | 05:22 | |
| *** blacklotus89 has joined #openstack | 05:23 | |
| *** markvoelker has joined #openstack | 05:24 | |
| *** aossama has quit IRC | 05:25 | |
| *** markvoelker_ has joined #openstack | 05:25 | |
| *** aossama has joined #openstack | 05:26 | |
| *** trinaths has joined #openstack | 05:28 | |
| *** markvoelker has quit IRC | 05:29 | |
| *** deduped has quit IRC | 05:30 | |
| *** slaweq has joined #openstack | 05:31 | |
| *** slaweq has quit IRC | 05:35 | |
| *** aditya_r has quit IRC | 05:40 | |
| *** aditya_r has joined #openstack | 05:40 | |
| *** slaweq has joined #openstack | 05:41 | |
| *** aojea has quit IRC | 05:41 | |
| *** slaweq has quit IRC | 05:42 | |
| *** thirdrevelation has quit IRC | 05:44 | |
| *** Manuel_112 has joined #openstack | 05:45 | |
| *** rp2 has quit IRC | 05:47 | |
| *** markvoelker_ has quit IRC | 05:48 | |
| *** thorst_afk has joined #openstack | 05:48 | |
| *** mosulica has joined #openstack | 05:49 | |
| ldl | hi | 05:49 |
| ldl | who know this issue? | 05:50 |
| ldl | https://ask.openstack.org/en/question/109982/no-host-to-cell-mapping-found-for-selected-host-controller-setup-is-incomplete/ | 05:50 |
| *** agurenko has joined #openstack | 05:50 | |
| *** aojea has joined #openstack | 05:50 | |
| *** indistylo has joined #openstack | 05:51 | |
| *** rp2 has joined #openstack | 05:51 | |
| *** vvargaszte has joined #openstack | 05:52 | |
| *** thorst_afk has quit IRC | 05:53 | |
| *** fzdarsky|afk has joined #openstack | 05:55 | |
| *** masco has joined #openstack | 05:56 | |
| *** groen692 has joined #openstack | 05:58 | |
| *** bob_one has joined #openstack | 06:01 | |
| *** bob_one has quit IRC | 06:06 | |
| *** aojea has quit IRC | 06:07 | |
| *** aojea has joined #openstack | 06:07 | |
| *** jamesbenson has joined #openstack | 06:09 | |
| *** drifterza has joined #openstack | 06:09 | |
| *** dparkes has joined #openstack | 06:10 | |
| *** Oku_OS-away is now known as Oku_OS | 06:10 | |
| *** aojea has quit IRC | 06:12 | |
| *** aossama has quit IRC | 06:13 | |
| *** aossama has joined #openstack | 06:13 | |
| *** jamesbenson has quit IRC | 06:13 | |
| *** aditya_r has quit IRC | 06:15 | |
| *** links has quit IRC | 06:15 | |
| *** aditya_r has joined #openstack | 06:15 | |
| *** rchavik has joined #openstack | 06:17 | |
| *** vvargaszte has quit IRC | 06:18 | |
| *** pcaruana has joined #openstack | 06:22 | |
| *** slaweq has joined #openstack | 06:26 | |
| *** slaweq has quit IRC | 06:28 | |
| *** slaweq has joined #openstack | 06:28 | |
| *** grafuls has joined #openstack | 06:29 | |
| *** jtomasek has quit IRC | 06:36 | |
| *** jtomasek has joined #openstack | 06:36 | |
| *** jtomasek has quit IRC | 06:39 | |
| *** jtomasek has joined #openstack | 06:40 | |
| *** hseipp has joined #openstack | 06:40 | |
| *** rcernin has joined #openstack | 06:40 | |
| *** mmirecki has joined #openstack | 06:40 | |
| *** kickinz1 has joined #openstack | 06:43 | |
| *** livelace has joined #openstack | 06:45 | |
| ldl | the ask.openstack can not acess now | 06:45 |
| *** kickinz1 has quit IRC | 06:47 | |
| *** kickinz1 has joined #openstack | 06:47 | |
| *** kickinz1 has joined #openstack | 06:47 | |
| *** blacklotus89 has quit IRC | 06:48 | |
| *** kickinz1 has quit IRC | 06:49 | |
| *** thorst_afk has joined #openstack | 06:49 | |
| *** fmount9 has joined #openstack | 06:49 | |
| *** kickinz1 has joined #openstack | 06:49 | |
| *** kickinz1 has joined #openstack | 06:49 | |
| *** jprovazn has joined #openstack | 06:49 | |
| *** thorst_afk has quit IRC | 06:54 | |
| oyrogerg | ldl: It seems to go down about this time every day, for maybe an hour. | 06:54 |
| ldl | maybe they are moving something | 06:55 |
| *** Yarboa has quit IRC | 06:57 | |
| *** Nel1x has quit IRC | 06:57 | |
| *** blacklotus89 has joined #openstack | 06:59 | |
| *** iyamahat has joined #openstack | 06:59 | |
| *** iyamahat has quit IRC | 07:00 | |
| *** charcol has quit IRC | 07:00 | |
| *** yamahata has quit IRC | 07:01 | |
| *** zhangfei has quit IRC | 07:03 | |
| *** rstarmer has quit IRC | 07:03 | |
| *** hoonetorg has quit IRC | 07:04 | |
| *** rstarmer has joined #openstack | 07:05 | |
| *** sleviim_ has joined #openstack | 07:05 | |
| *** sleviim_ has quit IRC | 07:06 | |
| *** sleviim_ has joined #openstack | 07:06 | |
| *** dgurtner has joined #openstack | 07:07 | |
| *** dgurtner has quit IRC | 07:07 | |
| *** dgurtner has joined #openstack | 07:07 | |
| *** cyborg-one has quit IRC | 07:07 | |
| *** sleviim_ has quit IRC | 07:08 | |
| *** skev has joined #openstack | 07:08 | |
| *** aossama has quit IRC | 07:08 | |
| *** ffiore has joined #openstack | 07:09 | |
| *** trinaths has quit IRC | 07:10 | |
| *** zhangfei has joined #openstack | 07:11 | |
| *** fzdarsky|afk is now known as fzdarsky | 07:13 | |
| *** nikgod has quit IRC | 07:15 | |
| *** nikgod has joined #openstack | 07:16 | |
| *** abu0_ has joined #openstack | 07:16 | |
| *** hoonetorg has joined #openstack | 07:17 | |
| *** ffiore has quit IRC | 07:17 | |
| *** qiangcao has quit IRC | 07:19 | |
| *** rstarmer has quit IRC | 07:19 | |
| *** qiangcao has joined #openstack | 07:19 | |
| *** iranzo has quit IRC | 07:20 | |
| *** aojea has joined #openstack | 07:21 | |
| *** rstarmer has joined #openstack | 07:21 | |
| *** gtrxcb has quit IRC | 07:22 | |
| *** fsimonce has joined #openstack | 07:22 | |
| *** iranzo has joined #openstack | 07:23 | |
| *** iranzo has quit IRC | 07:23 | |
| *** iranzo has joined #openstack | 07:23 | |
| *** qiangcao has quit IRC | 07:24 | |
| *** aossama has joined #openstack | 07:25 | |
| *** deduped has joined #openstack | 07:27 | |
| *** vvargaszte has joined #openstack | 07:27 | |
| *** rp2 has quit IRC | 07:27 | |
| *** iniaziaway has joined #openstack | 07:27 | |
| *** sansna2 has quit IRC | 07:27 | |
| *** racedo has joined #openstack | 07:28 | |
| *** sansna2 has joined #openstack | 07:29 | |
| *** links has joined #openstack | 07:29 | |
| *** sansna2 has quit IRC | 07:29 | |
| *** sansna2 has joined #openstack | 07:29 | |
| *** ffiore has joined #openstack | 07:30 | |
| *** iniazi has quit IRC | 07:30 | |
| *** rp2 has joined #openstack | 07:30 | |
| *** MarkBaker has quit IRC | 07:31 | |
| *** vvargaszte has quit IRC | 07:32 | |
| *** tesseract has joined #openstack | 07:32 | |
| *** trinaths has joined #openstack | 07:32 | |
| *** ffiore_ has joined #openstack | 07:33 | |
| *** aossama has quit IRC | 07:34 | |
| *** ffiore has quit IRC | 07:35 | |
| *** robbbe has quit IRC | 07:36 | |
| *** aossama has joined #openstack | 07:38 | |
| *** jpich has joined #openstack | 07:39 | |
| *** Ralgamasiel has joined #openstack | 07:39 | |
| *** geaaru has joined #openstack | 07:43 | |
| *** jpena|off is now known as jpena | 07:43 | |
| *** egonzalez has joined #openstack | 07:45 | |
| *** aossama has quit IRC | 07:45 | |
| ldl | some one can help me with that:https://ask.openstack.org/en/question/109987/attached-the-floating-ip-success-but-i-can-not-ping-it-in-the-public-network/ | 07:46 |
| ldl | ? | 07:46 |
| *** aossama has joined #openstack | 07:46 | |
| *** thorst_afk has joined #openstack | 07:50 | |
| MasterofJOKers | ldl, where are you pinging from? that IP looks up for me (nmap -sn and mtr both say so), so maybe your firewall just drops ICMP packets? | 07:51 |
| ldl | from my mac | 07:52 |
| ldl | do you mean the VM1's firewall ? | 07:52 |
| MasterofJOKers | what I mean is, I don't get ping replys from that IP, but two other tools say, its up | 07:52 |
| MasterofJOKers | yes, that one | 07:52 |
| ldl | oh, thank you , my friend. | 07:53 |
| MasterofJOKers | or ... security groups in openstack, if not the firewall on the VM directly | 07:54 |
| *** Yarboa has joined #openstack | 07:54 | |
| *** thorst_afk has quit IRC | 07:55 | |
| ldl | in the openstack's key pairs. there is no one | 07:56 |
| ldl | there is no any key pairs in the openstack dashboard | 07:56 |
| MasterofJOKers | so you mean, you don't have access to that VM, because you didn't deploy any ssh-keys on it? | 07:57 |
| ldl | I can in the Dashboard's console to login the VM1 | 07:57 |
| ldl | but can not use my mac to ping the VM1's floating ip | 07:58 |
| *** indistylo has quit IRC | 07:58 | |
| MasterofJOKers | can you use ssh on your mac to access the floating IP? | 07:58 |
| ldl | can not | 07:58 |
| MasterofJOKers | I mean, if you get a password prompt, even if you don't have the password, you'll know it's working. | 07:58 |
| *** takamatsu has joined #openstack | 07:59 | |
| MasterofJOKers | have a look at the security group configured for the VM in openstack. they can be very strict and not allow any access | 07:59 |
| ldl | there is no any security group configured in openstack | 07:59 |
| ldl | I setup the openstack just right now | 08:00 |
| MasterofJOKers | really? it always configures a default security-group for me | 08:00 |
| MasterofJOKers | which blocks all traffic | 08:00 |
| ldl | oh, there is a default | 08:00 |
| *** toscalix has joined #openstack | 08:00 | |
| ldl | yes | 08:01 |
| ldl | so, should I delete the Rule? | 08:02 |
| ldl | after I changed the VM's password? | 08:02 |
| *** mmirecki has quit IRC | 08:02 | |
| MasterofJOKers | you should change it to allow at least ssh and icmp (for ping) | 08:04 |
| MasterofJOKers | then I'm not sure if you need to restart/re-create your VM | 08:04 |
| cf_ | it should work without restart of the instance :) | 08:05 |
| *** ffiore_ has quit IRC | 08:05 | |
| ldl | thank you again. | 08:07 |
| *** bbcmicrocomputer has joined #openstack | 08:11 | |
| *** bbcmicrocomputer has joined #openstack | 08:11 | |
| *** indistylo has joined #openstack | 08:11 | |
| *** ffiore_ has joined #openstack | 08:12 | |
| *** snica_away is now known as stefannica | 08:12 | |
| ldl | I deleted the Ingress and Egress of IPv4 Rule. but still can not ping it | 08:13 |
| *** lucendio has joined #openstack | 08:14 | |
| *** rarcea has joined #openstack | 08:14 | |
| MasterofJOKers | you need to add rules to allow things, afaik | 08:14 |
| *** aossama has quit IRC | 08:14 | |
| *** RageLtMan has quit IRC | 08:15 | |
| ldl | ok , I will try | 08:16 |
| *** mmirecki has joined #openstack | 08:17 | |
| *** TMM has quit IRC | 08:17 | |
| *** mcornea has joined #openstack | 08:18 | |
| *** ben42 has joined #openstack | 08:20 | |
| *** aossama has joined #openstack | 08:20 | |
| *** rvd has joined #openstack | 08:20 | |
| *** indistylo has quit IRC | 08:21 | |
| *** Xiti has quit IRC | 08:22 | |
| *** Xiti has joined #openstack | 08:22 | |
| *** efoley has joined #openstack | 08:23 | |
| *** ralonsoh has joined #openstack | 08:23 | |
| *** efoley_ has joined #openstack | 08:24 | |
| *** efoley has quit IRC | 08:24 | |
| *** efoley_ has quit IRC | 08:25 | |
| *** efoley has joined #openstack | 08:25 | |
| *** grealish has quit IRC | 08:28 | |
| *** abu0_ has quit IRC | 08:28 | |
| *** MarkBaker has joined #openstack | 08:29 | |
| *** grealish has joined #openstack | 08:30 | |
| *** ffiore_ has quit IRC | 08:31 | |
| *** indistylo has joined #openstack | 08:33 | |
| *** karimb has joined #openstack | 08:45 | |
| *** AnilV4 has quit IRC | 08:45 | |
| *** dermiste has quit IRC | 08:48 | |
| *** thorst_afk has joined #openstack | 08:51 | |
| *** m3rl1n has joined #openstack | 08:52 | |
| *** ivveh has joined #openstack | 08:53 | |
| *** thorst_afk has quit IRC | 08:55 | |
| *** MrAbaddon has quit IRC | 08:58 | |
| *** sansna2 has quit IRC | 08:58 | |
| *** sansna2 has joined #openstack | 08:59 | |
| *** mmirecki has quit IRC | 09:01 | |
| *** parlakisik has joined #openstack | 09:01 | |
| *** mrch has joined #openstack | 09:02 | |
| *** parlakisik has quit IRC | 09:05 | |
| *** electrofelix has joined #openstack | 09:06 | |
| *** Arminder- has quit IRC | 09:07 | |
| *** skev has quit IRC | 09:07 | |
| *** skev has joined #openstack | 09:08 | |
| *** e0ne has joined #openstack | 09:09 | |
| *** MrAbaddon has joined #openstack | 09:11 | |
| *** mariusv has quit IRC | 09:11 | |
| *** mmirecki has joined #openstack | 09:13 | |
| *** Arminder has joined #openstack | 09:15 | |
| *** mariusv has joined #openstack | 09:16 | |
| *** _dalgaaf has quit IRC | 09:16 | |
| *** dalgaaf has joined #openstack | 09:17 | |
| *** somepoortech has quit IRC | 09:17 | |
| *** somepoortech has joined #openstack | 09:18 | |
| *** Nakato has quit IRC | 09:18 | |
| *** MarkBaker has quit IRC | 09:19 | |
| *** Nakato has joined #openstack | 09:20 | |
| *** lucendio has quit IRC | 09:20 | |
| *** chyka has joined #openstack | 09:21 | |
| *** raynold has quit IRC | 09:21 | |
| *** drifterza has quit IRC | 09:23 | |
| *** psahoo has quit IRC | 09:24 | |
| *** chyka has quit IRC | 09:25 | |
| *** jamesbenson has joined #openstack | 09:28 | |
| *** abu0_ has joined #openstack | 09:28 | |
| *** TMM has joined #openstack | 09:31 | |
| *** jamesbenson has quit IRC | 09:32 | |
| *** drifterza has joined #openstack | 09:33 | |
| *** m3rl1n has quit IRC | 09:36 | |
| *** hoonetorg has quit IRC | 09:36 | |
| *** AnilV4 has joined #openstack | 09:39 | |
| *** indistylo has quit IRC | 09:40 | |
| *** zz9pzza has quit IRC | 09:40 | |
| *** m3rl1n has joined #openstack | 09:40 | |
| *** drifterza has quit IRC | 09:41 | |
| *** drifterza has joined #openstack | 09:44 | |
| *** etingof has quit IRC | 09:46 | |
| *** MrAbaddon has quit IRC | 09:49 | |
| *** tumble has quit IRC | 09:51 | |
| *** voelzmo has joined #openstack | 09:51 | |
| *** thorst_afk has joined #openstack | 09:51 | |
| *** chyka has joined #openstack | 09:52 | |
| *** Manuel_112 has quit IRC | 09:52 | |
| *** hoonetorg has joined #openstack | 09:53 | |
| *** thorst_afk has quit IRC | 09:56 | |
| *** chyka has quit IRC | 09:56 | |
| *** toscalix has quit IRC | 10:00 | |
| *** toscalix has joined #openstack | 10:00 | |
| *** MarkBaker has joined #openstack | 10:00 | |
| *** toscalix has quit IRC | 10:02 | |
| *** nicolasbock has joined #openstack | 10:02 | |
| *** toscalix has joined #openstack | 10:03 | |
| *** ralonsoh has quit IRC | 10:03 | |
| *** ralonsoh has joined #openstack | 10:04 | |
| *** toscalix_ has joined #openstack | 10:04 | |
| *** voelzmo has quit IRC | 10:04 | |
| *** tumble has joined #openstack | 10:05 | |
| *** nicolasbock has quit IRC | 10:06 | |
| *** toscalix has quit IRC | 10:08 | |
| *** omie888777 has quit IRC | 10:09 | |
| *** ebbex has quit IRC | 10:10 | |
| *** ccard has quit IRC | 10:11 | |
| *** Manuel_112 has joined #openstack | 10:14 | |
| *** nicolasbock has joined #openstack | 10:19 | |
| *** etingof has joined #openstack | 10:20 | |
| *** etingof has quit IRC | 10:25 | |
| *** etingof has joined #openstack | 10:26 | |
| *** karimb has quit IRC | 10:28 | |
| *** dparkes has quit IRC | 10:32 | |
| *** fmount9 has quit IRC | 10:39 | |
| *** karimb has joined #openstack | 10:39 | |
| *** jplorier has joined #openstack | 10:39 | |
| *** zhouyf has quit IRC | 10:40 | |
| *** szaher has quit IRC | 10:41 | |
| *** dparkes has joined #openstack | 10:43 | |
| *** MrAbaddon has joined #openstack | 10:46 | |
| *** szaher has joined #openstack | 10:46 | |
| *** aditya_r has quit IRC | 10:48 | |
| *** toscalix_ is now known as toscalix | 10:49 | |
| *** aossama has quit IRC | 10:51 | |
| *** thorst_afk has joined #openstack | 10:52 | |
| *** aossama has joined #openstack | 10:53 | |
| *** agurenko has quit IRC | 10:54 | |
| *** zhangfei has quit IRC | 10:54 | |
| *** gszasz has joined #openstack | 10:56 | |
| *** thorst_afk has quit IRC | 10:57 | |
| *** agurenko has joined #openstack | 10:58 | |
| *** salv-orlando has quit IRC | 11:00 | |
| *** TuanLA has quit IRC | 11:02 | |
| *** trinaths has left #openstack | 11:03 | |
| *** Bey0ndB1nary has joined #openstack | 11:07 | |
| *** Bey0ndB1nary has quit IRC | 11:07 | |
| *** kickinz1 has quit IRC | 11:07 | |
| *** gli has joined #openstack | 11:08 | |
| *** chyka has joined #openstack | 11:08 | |
| *** jistr is now known as jistr|biab | 11:12 | |
| *** chyka has quit IRC | 11:13 | |
| *** morazi has quit IRC | 11:17 | |
| *** Bey0ndB1nary has joined #openstack | 11:19 | |
| *** ffiore_ has joined #openstack | 11:19 | |
| ldl | get an issue here: https://ask.openstack.org/en/question/109997/the-vm-i-can-ping-the-host-machine-but-can-not-ping-other-public-ip/ | 11:22 |
| ldl | which friend can help me with this? | 11:22 |
| *** stefannica is now known as snica_away | 11:28 | |
| *** snica_away is now known as stefannica | 11:29 | |
| *** kickinz1 has joined #openstack | 11:32 | |
| *** kickinz1 has joined #openstack | 11:32 | |
| *** ffiore_ has quit IRC | 11:33 | |
| *** Bey0ndB1nary has joined #openstack | 11:34 | |
| *** Bey0ndB1nary has joined #openstack | 11:34 | |
| *** salv-orlando has joined #openstack | 11:36 | |
| *** nauski has joined #openstack | 11:38 | |
| *** thorst_afk has joined #openstack | 11:40 | |
| *** dparkes has quit IRC | 11:41 | |
| *** rmart04 has joined #openstack | 11:41 | |
| *** jcarter2 has quit IRC | 11:42 | |
| *** RickDeckard has joined #openstack | 11:45 | |
| *** hseipp has quit IRC | 11:48 | |
| *** donghao has joined #openstack | 11:50 | |
| *** fmount9 has joined #openstack | 11:53 | |
| *** thegreenhundred has quit IRC | 11:55 | |
| *** maishsk has joined #openstack | 11:55 | |
| *** gaughen has joined #openstack | 11:55 | |
| *** aojea has quit IRC | 11:56 | |
| *** dparkes has joined #openstack | 11:58 | |
| *** hseipp has joined #openstack | 11:59 | |
| *** holmsten has joined #openstack | 11:59 | |
| *** dparkes has quit IRC | 12:03 | |
| *** morazi has joined #openstack | 12:04 | |
| *** trinaths has joined #openstack | 12:05 | |
| *** trinaths has left #openstack | 12:05 | |
| *** trinaths has joined #openstack | 12:06 | |
| *** hseipp has quit IRC | 12:06 | |
| *** TuanLA has joined #openstack | 12:07 | |
| *** karimb has quit IRC | 12:07 | |
| *** jbadiapa has quit IRC | 12:09 | |
| *** kylek3h has quit IRC | 12:15 | |
| *** jpena is now known as jpena|lunch | 12:16 | |
| *** bobh has joined #openstack | 12:18 | |
| *** liverpooler has joined #openstack | 12:19 | |
| *** jistr|biab is now known as jistr | 12:20 | |
| *** trinaths has left #openstack | 12:21 | |
| *** sree has quit IRC | 12:21 | |
| *** sree has joined #openstack | 12:21 | |
| *** dparkes has joined #openstack | 12:22 | |
| cronic | Hey os user, i am setting up my first openstack instance with OSA and i'm a bit confused.. Do i need 3 Subnets? 1 for container 1 for tunnel and 1 for storage? Can i pick 1 subnet for all three groups? | 12:22 |
| *** bobh has quit IRC | 12:22 | |
| *** jprovazn has quit IRC | 12:24 | |
| *** pchavva has joined #openstack | 12:24 | |
| *** annegentle has joined #openstack | 12:24 | |
| *** jplorier_ has joined #openstack | 12:26 | |
| *** sree has quit IRC | 12:26 | |
| *** jbadiapa has joined #openstack | 12:26 | |
| *** Croata has joined #openstack | 12:26 | |
| *** jprovazn has joined #openstack | 12:27 | |
| ldl | you can do that, if you just want to test | 12:27 |
| *** jplorier has quit IRC | 12:29 | |
| cronic | perfect | 12:29 |
| *** noslzzp has joined #openstack | 12:30 | |
| *** pravins has joined #openstack | 12:30 | |
| *** catintheroof has joined #openstack | 12:30 | |
| *** woodard has joined #openstack | 12:34 | |
| *** woodard has quit IRC | 12:34 | |
| *** jplorier_ has quit IRC | 12:34 | |
| *** woodard has joined #openstack | 12:35 | |
| *** thegreenhundred has joined #openstack | 12:38 | |
| *** GenteelBen has joined #openstack | 12:39 | |
| *** GenteelBen has quit IRC | 12:39 | |
| *** jcarter2 has joined #openstack | 12:39 | |
| *** gkadam_ has quit IRC | 12:40 | |
| *** liverpooler has quit IRC | 12:40 | |
| *** liverpooler has joined #openstack | 12:40 | |
| *** ffiore_ has joined #openstack | 12:41 | |
| *** Acinonyx has quit IRC | 12:45 | |
| *** SorviSky has quit IRC | 12:45 | |
| *** kylek3h has joined #openstack | 12:46 | |
| *** Acinonyx has joined #openstack | 12:46 | |
| *** blacklotus89 has quit IRC | 12:47 | |
| *** noslzzp has quit IRC | 12:47 | |
| *** kylek3h_ has joined #openstack | 12:47 | |
| *** TuanLA has quit IRC | 12:47 | |
| *** bob_one has joined #openstack | 12:48 | |
| *** ldl has quit IRC | 12:48 | |
| *** lucendio has joined #openstack | 12:49 | |
| *** noslzzp has joined #openstack | 12:49 | |
| *** GenteelBen has joined #openstack | 12:50 | |
| *** kylek3h has quit IRC | 12:50 | |
| *** dmz_work has joined #openstack | 12:51 | |
| *** janzian has joined #openstack | 12:52 | |
| *** salv-orlando has quit IRC | 12:54 | |
| *** aditya_r has joined #openstack | 12:55 | |
| *** bobh has joined #openstack | 12:56 | |
| *** dmz_work has quit IRC | 12:58 | |
| *** gli has quit IRC | 12:58 | |
| *** bob_one has quit IRC | 12:59 | |
| *** blomquisg_gone is now known as blomquisg | 12:59 | |
| *** bob_one has joined #openstack | 13:00 | |
| *** blacklotus89 has joined #openstack | 13:01 | |
| *** dmz_work has joined #openstack | 13:01 | |
| *** dcritch has joined #openstack | 13:01 | |
| *** baoli has joined #openstack | 13:02 | |
| *** bob_one has quit IRC | 13:02 | |
| *** bob_one has joined #openstack | 13:03 | |
| *** dparkes has quit IRC | 13:03 | |
| *** bob_one has quit IRC | 13:05 | |
| *** annegentle has quit IRC | 13:06 | |
| *** jprovazn has quit IRC | 13:06 | |
| *** jprovazn has joined #openstack | 13:06 | |
| *** balaji has joined #openstack | 13:07 | |
| *** georgem1 has joined #openstack | 13:11 | |
| *** cloudrancher has quit IRC | 13:12 | |
| *** sree has joined #openstack | 13:12 | |
| *** MarkBaker has quit IRC | 13:12 | |
| *** cloudrancher has joined #openstack | 13:13 | |
| *** ikhan has joined #openstack | 13:13 | |
| *** MarkBaker has joined #openstack | 13:14 | |
| *** gli has joined #openstack | 13:15 | |
| *** blomquisg is now known as blomquisg_gone | 13:15 | |
| *** annegentle has joined #openstack | 13:15 | |
| *** stefannica is now known as snica_away | 13:16 | |
| *** bob_one has joined #openstack | 13:17 | |
| *** xemdetia has joined #openstack | 13:19 | |
| *** snica_away is now known as stefannica | 13:20 | |
| *** jpena|lunch is now known as jpena | 13:20 | |
| *** ianychoi__ is now known as ianychoi | 13:20 | |
| *** jprovazn has quit IRC | 13:20 | |
| *** pravins has quit IRC | 13:21 | |
| *** RageLtMan has joined #openstack | 13:21 | |
| *** zkassab has joined #openstack | 13:22 | |
| *** bob_one has quit IRC | 13:22 | |
| *** benjamingr_ has joined #openstack | 13:23 | |
| *** bob_one has joined #openstack | 13:23 | |
| *** bob_one has quit IRC | 13:26 | |
| *** zzw has joined #openstack | 13:26 | |
| *** VW has joined #openstack | 13:29 | |
| *** m3rl1n has quit IRC | 13:29 | |
| *** bob_one has joined #openstack | 13:29 | |
| *** gszasz has quit IRC | 13:29 | |
| *** EmreSoku_ has joined #openstack | 13:29 | |
| EmreSoku_ | hi guys, I have a stack with one proxy and three data servers, the proxy just died, i have no backup | 13:29 |
| EmreSoku_ | do you think there's a way to recover still? | 13:29 |
| *** slaweq has quit IRC | 13:29 | |
| *** aconole has joined #openstack | 13:30 | |
| EmreSoku_ | data servers are alive. | 13:30 |
| EmreSoku_ | but I don't know if without a key or anything they're recoverable. | 13:30 |
| *** zzw has quit IRC | 13:31 | |
| *** slaweq has joined #openstack | 13:32 | |
| *** salv-orlando has joined #openstack | 13:33 | |
| *** gli has quit IRC | 13:33 | |
| *** gmoro_ has quit IRC | 13:34 | |
| *** ffiore_ has quit IRC | 13:36 | |
| *** AnilV4 has quit IRC | 13:38 | |
| *** MrAbaddon has quit IRC | 13:39 | |
| *** gyee has joined #openstack | 13:41 | |
| *** suuuper has joined #openstack | 13:44 | |
| *** gszasz has joined #openstack | 13:45 | |
| *** smccarthy has quit IRC | 13:47 | |
| *** aossama has quit IRC | 13:48 | |
| *** zhangfei has joined #openstack | 13:48 | |
| *** mchlumsky has joined #openstack | 13:48 | |
| *** Over23 has quit IRC | 13:48 | |
| *** Over23 has joined #openstack | 13:49 | |
| *** ben_roose has joined #openstack | 13:50 | |
| *** toscalix_ has joined #openstack | 13:51 | |
| *** toscalix has quit IRC | 13:51 | |
| *** slaweq has quit IRC | 13:52 | |
| *** ffiore_ has joined #openstack | 13:52 | |
| *** zhangfei has quit IRC | 13:53 | |
| *** slaweq has joined #openstack | 13:53 | |
| *** gszasz has quit IRC | 13:53 | |
| *** gli has joined #openstack | 13:53 | |
| *** masco has quit IRC | 13:54 | |
| *** sree has quit IRC | 13:54 | |
| *** gszasz has joined #openstack | 13:55 | |
| *** sree has joined #openstack | 13:55 | |
| *** ChubYann has quit IRC | 13:56 | |
| *** cleong has joined #openstack | 13:57 | |
| *** josecastroleon has quit IRC | 13:57 | |
| *** slaweq has quit IRC | 13:57 | |
| *** vhosakot has joined #openstack | 13:58 | |
| *** robbbe has joined #openstack | 13:58 | |
| *** mrch has quit IRC | 13:58 | |
| *** rmart04 has quit IRC | 13:58 | |
| *** Donckers has joined #openstack | 13:58 | |
| *** slaweq has joined #openstack | 13:59 | |
| *** bob_one has quit IRC | 13:59 | |
| *** TuanVu has joined #openstack | 13:59 | |
| *** josecastroleon has joined #openstack | 13:59 | |
| *** TuanVu has left #openstack | 13:59 | |
| *** shintaro has joined #openstack | 14:00 | |
| *** aossama has joined #openstack | 14:00 | |
| *** SorviSky has joined #openstack | 14:03 | |
| *** bob_one has joined #openstack | 14:03 | |
| *** lucendio has quit IRC | 14:04 | |
| *** bob_one has quit IRC | 14:05 | |
| *** rstarmer has quit IRC | 14:05 | |
| *** aossama has quit IRC | 14:05 | |
| *** cristicalin has joined #openstack | 14:05 | |
| *** MrAbaddon has joined #openstack | 14:05 | |
| *** pravins has joined #openstack | 14:06 | |
| *** jobewan has joined #openstack | 14:06 | |
| *** marst has joined #openstack | 14:08 | |
| *** ChubYann has joined #openstack | 14:10 | |
| *** marrusl has quit IRC | 14:11 | |
| *** aossama has joined #openstack | 14:11 | |
| *** skev has quit IRC | 14:13 | |
| *** bob_one has joined #openstack | 14:13 | |
| *** drifterza has quit IRC | 14:14 | |
| *** eblip has joined #openstack | 14:14 | |
| *** kjackal has joined #openstack | 14:14 | |
| *** kjackal__ has joined #openstack | 14:14 | |
| *** dxiri has joined #openstack | 14:15 | |
| *** gyee has quit IRC | 14:17 | |
| cronic | does someone has experience with openstack-ansible setup-infrastructure.yml --syntax-check | 14:17 |
| *** gyee has joined #openstack | 14:17 | |
| cronic | it's checking for like 20-30 mins, i think thats not normal?! | 14:17 |
| *** bob_one has quit IRC | 14:18 | |
| *** capri has quit IRC | 14:18 | |
| *** felixsch__ has quit IRC | 14:19 | |
| *** hseipp has joined #openstack | 14:20 | |
| *** cloudrancher has quit IRC | 14:22 | |
| *** cloudrancher has joined #openstack | 14:22 | |
| *** capri has joined #openstack | 14:23 | |
| *** felixsch__ has joined #openstack | 14:24 | |
| *** cdub has joined #openstack | 14:24 | |
| *** ChiTo has joined #openstack | 14:26 | |
| *** balaji has quit IRC | 14:27 | |
| *** sree has quit IRC | 14:28 | |
| *** srobert has joined #openstack | 14:28 | |
| *** sree has joined #openstack | 14:29 | |
| *** robbbe has quit IRC | 14:29 | |
| *** robbbe has joined #openstack | 14:29 | |
| *** annegentle has quit IRC | 14:30 | |
| *** donghao has quit IRC | 14:31 | |
| *** qiangcao has joined #openstack | 14:31 | |
| *** Son_Goku has quit IRC | 14:32 | |
| *** slaweq has quit IRC | 14:32 | |
| *** slaweq has joined #openstack | 14:33 | |
| *** sree has quit IRC | 14:33 | |
| *** dgurtner has quit IRC | 14:34 | |
| *** qiangcao has quit IRC | 14:35 | |
| *** galstrom_zzz is now known as galstrom | 14:38 | |
| *** gli has quit IRC | 14:39 | |
| *** rarcea has quit IRC | 14:41 | |
| *** jamesbenson has joined #openstack | 14:42 | |
| *** agurenko has quit IRC | 14:43 | |
| *** slaweq_ has joined #openstack | 14:43 | |
| *** Calvin` has quit IRC | 14:43 | |
| *** kjackal has quit IRC | 14:45 | |
| *** kjackal__ has quit IRC | 14:46 | |
| *** kjackal has joined #openstack | 14:46 | |
| *** kjackal__ has joined #openstack | 14:46 | |
| *** marrusl has joined #openstack | 14:47 | |
| *** iranzo has quit IRC | 14:47 | |
| *** slaweq_ has quit IRC | 14:47 | |
| *** josecastroleon has quit IRC | 14:48 | |
| *** iranzo has joined #openstack | 14:49 | |
| *** iranzo has quit IRC | 14:49 | |
| *** iranzo has joined #openstack | 14:49 | |
| *** achadha has joined #openstack | 14:49 | |
| *** josecastroleon has joined #openstack | 14:51 | |
| *** annegentle has joined #openstack | 14:51 | |
| *** TuanVu has joined #openstack | 14:51 | |
| *** aditya_r has quit IRC | 14:52 | |
| *** andresmujica has joined #openstack | 14:52 | |
| *** Calvin` has joined #openstack | 14:52 | |
| *** Calvin` has joined #openstack | 14:52 | |
| *** osdev_ has joined #openstack | 14:52 | |
| *** josecastroleon has quit IRC | 14:53 | |
| *** TuanVu has quit IRC | 14:53 | |
| *** jprovazn has joined #openstack | 14:55 | |
| *** rarcea has joined #openstack | 14:55 | |
| *** janki has quit IRC | 14:55 | |
| *** rchavik has quit IRC | 14:55 | |
| *** maishsk has quit IRC | 14:57 | |
| *** jobewan is now known as jobewan_away | 14:58 | |
| *** cloudrancher has quit IRC | 14:58 | |
| *** KickInZOne has joined #openstack | 14:59 | |
| *** cloudrancher has joined #openstack | 14:59 | |
| *** ldl_ has joined #openstack | 15:01 | |
| *** saybeano has joined #openstack | 15:01 | |
| *** aditya_r has joined #openstack | 15:03 | |
| *** anshul has quit IRC | 15:04 | |
| *** annegentle has quit IRC | 15:08 | |
| *** groen692 has quit IRC | 15:08 | |
| *** maishsk has joined #openstack | 15:08 | |
| *** salv-orlando has quit IRC | 15:08 | |
| *** cristicalin has quit IRC | 15:08 | |
| *** thirdrevelation has joined #openstack | 15:09 | |
| *** ffiore_ has quit IRC | 15:10 | |
| *** cristicalin has joined #openstack | 15:10 | |
| *** andresmujica has quit IRC | 15:10 | |
| *** Manuel_112 has quit IRC | 15:11 | |
| *** Manuel_112 has joined #openstack | 15:11 | |
| *** mosulica has quit IRC | 15:12 | |
| *** crose has joined #openstack | 15:13 | |
| *** cristicalin has quit IRC | 15:13 | |
| *** ffiore_ has joined #openstack | 15:14 | |
| *** bob_one has joined #openstack | 15:15 | |
| *** shintaro has quit IRC | 15:15 | |
| *** Manuel_112 has quit IRC | 15:15 | |
| *** Oku_OS is now known as Oku_OS-away | 15:16 | |
| *** jwitko has quit IRC | 15:16 | |
| *** omie888777 has joined #openstack | 15:16 | |
| *** jwitko has joined #openstack | 15:17 | |
| *** bob_one has quit IRC | 15:17 | |
| *** crose has quit IRC | 15:19 | |
| *** peter-os has joined #openstack | 15:20 | |
| *** salv-orlando has joined #openstack | 15:21 | |
| *** annegentle has joined #openstack | 15:21 | |
| *** robbbe has quit IRC | 15:21 | |
| *** iranzo has quit IRC | 15:22 | |
| *** ralonsoh has quit IRC | 15:23 | |
| *** annabelleB has joined #openstack | 15:23 | |
| *** maishsk has quit IRC | 15:23 | |
| *** robbbe has joined #openstack | 15:24 | |
| *** bob_one has joined #openstack | 15:25 | |
| *** bob_one has quit IRC | 15:27 | |
| *** Manuel_112 has joined #openstack | 15:28 | |
| *** TMM has quit IRC | 15:29 | |
| *** chyka has joined #openstack | 15:30 | |
| *** EmreSoku_ has quit IRC | 15:32 | |
| *** pcaruana has quit IRC | 15:32 | |
| *** Manuel_112 has quit IRC | 15:33 | |
| *** ben42 has quit IRC | 15:33 | |
| *** pravins has quit IRC | 15:33 | |
| *** srobert has quit IRC | 15:34 | |
| *** salv-orlando has quit IRC | 15:35 | |
| *** slaweq has quit IRC | 15:36 | |
| *** ddyer has joined #openstack | 15:37 | |
| *** ddyer has quit IRC | 15:37 | |
| *** slaweq has joined #openstack | 15:37 | |
| *** drifterza has joined #openstack | 15:38 | |
| *** jobewan_away is now known as jobewan | 15:40 | |
| *** ddyer has joined #openstack | 15:41 | |
| *** slaweq has quit IRC | 15:41 | |
| *** jackNemrod has joined #openstack | 15:41 | |
| *** mmirecki has quit IRC | 15:43 | |
| *** jwitko has left #openstack | 15:43 | |
| *** vikrant has joined #openstack | 15:43 | |
| *** ldl_ has quit IRC | 15:46 | |
| *** e0ne has quit IRC | 15:47 | |
| *** Manuel_112 has joined #openstack | 15:49 | |
| *** takimbal has quit IRC | 15:50 | |
| *** fmount9 has quit IRC | 15:50 | |
| *** achadha has quit IRC | 15:51 | |
| *** takimbal has joined #openstack | 15:51 | |
| *** Ralgamasiel has quit IRC | 15:52 | |
| *** aditya_ra has joined #openstack | 15:53 | |
| *** aditya_r has quit IRC | 15:53 | |
| *** EmreSokullu has joined #openstack | 15:53 | |
| *** Manuel_112 has quit IRC | 15:53 | |
| *** ccard has joined #openstack | 15:54 | |
| peter-os | hi all, I just upgraded from Newton to Ocata and now I'm seeing the following the in nova-api.log file: ERROR nova.api.openstack.extensions DriverLoadFailure: Failed to load transport driver "none": No 'oslo.messaging.drivers' driver found, looking for u'none' I cannot find what setting I'm missing, but it's causing problems with neutron also. Does anyone have any suggestions on which nova.conf setting I'm missing? | 15:55 |
| *** ffiore_ has quit IRC | 15:56 | |
| *** achadha has joined #openstack | 15:56 | |
| *** robbbe has quit IRC | 15:56 | |
| *** kjackal__ has quit IRC | 15:57 | |
| *** kjackal has quit IRC | 15:57 | |
| *** raynold has joined #openstack | 15:57 | |
| *** achadha has quit IRC | 15:57 | |
| *** annabelleB has quit IRC | 15:57 | |
| *** suuuper has quit IRC | 16:00 | |
| *** egonzalez has quit IRC | 16:02 | |
| *** sansna2 has quit IRC | 16:02 | |
| *** sansna2 has joined #openstack | 16:03 | |
| *** holmsten has quit IRC | 16:07 | |
| *** annabelleB has joined #openstack | 16:08 | |
| *** srobert has joined #openstack | 16:08 | |
| *** thirdrevelation has quit IRC | 16:10 | |
| *** Manuel_112 has joined #openstack | 16:10 | |
| *** slaweq has joined #openstack | 16:10 | |
| *** kjackal has joined #openstack | 16:10 | |
| *** slaweq has quit IRC | 16:14 | |
| *** Manuel_112 has quit IRC | 16:14 | |
| *** epopt has quit IRC | 16:15 | |
| *** eroux has joined #openstack | 16:16 | |
| *** jpich has quit IRC | 16:17 | |
| *** hoonetorg has quit IRC | 16:18 | |
| *** Yarboa has quit IRC | 16:19 | |
| *** jamesbenson has quit IRC | 16:19 | |
| *** EmreSokullu has quit IRC | 16:20 | |
| *** gli has joined #openstack | 16:21 | |
| *** MrAbaddon has quit IRC | 16:24 | |
| *** jobewan has quit IRC | 16:24 | |
| *** hseipp has quit IRC | 16:24 | |
| *** robbbe has joined #openstack | 16:24 | |
| *** achadha has joined #openstack | 16:25 | |
| georgem1 | peter-os: I'm not running Ocata, but take a look at https://docs.openstack.org/ocata/config-reference/compute/config-options.html#nova-conductor | 16:26 |
| *** achadha has quit IRC | 16:26 | |
| *** achadha has joined #openstack | 16:26 | |
| georgem1 | peter-os: you could try "driver= noop" if not interested in notifications | 16:27 |
| *** jamesbenson has joined #openstack | 16:28 | |
| *** geaaru has quit IRC | 16:28 | |
| *** mcornea has quit IRC | 16:28 | |
| *** achadha has quit IRC | 16:28 | |
| *** achadha has joined #openstack | 16:29 | |
| *** robbbe has quit IRC | 16:29 | |
| *** masonjoyers__ has quit IRC | 16:30 | |
| *** jamesbenson has quit IRC | 16:30 | |
| *** achadha has quit IRC | 16:30 | |
| *** Manuel_112 has joined #openstack | 16:30 | |
| *** achadha has joined #openstack | 16:31 | |
| *** jistr is now known as jistr|afk | 16:31 | |
| *** noslzzp has quit IRC | 16:33 | |
| *** aditya_ra has quit IRC | 16:33 | |
| peter-os | georgem1: thank you for the suggestion, unfortunately, I've already got the driver set to messaging. If that's the right setting in nova.conf then it's almost like it's getting ignored. | 16:33 |
| *** noslzzp has joined #openstack | 16:33 | |
| *** arif-ali has left #openstack | 16:34 | |
| *** Manuel_112 has quit IRC | 16:35 | |
| *** achadha has quit IRC | 16:35 | |
| *** salv-orlando has joined #openstack | 16:36 | |
| georgem1 | peter-os: enable verbose and debug, then restart the service and grep its log; you should see what value it's using and maybe you have to add the setting in a different section in nova.conf; running a devstack Ocata and looking at its settings could be useful as well | 16:37 |
| *** dmz_work has quit IRC | 16:38 | |
| *** achadha has joined #openstack | 16:38 | |
| *** aossama has quit IRC | 16:38 | |
| *** salv-orlando has quit IRC | 16:41 | |
| *** jwitko has joined #openstack | 16:41 | |
| *** aossama has joined #openstack | 16:42 | |
| *** cyborg-one has joined #openstack | 16:42 | |
| *** kjackal has quit IRC | 16:42 | |
| *** tgerczei has quit IRC | 16:45 | |
| *** jamesbenson has joined #openstack | 16:45 | |
| *** morazi has quit IRC | 16:46 | |
| *** indistylo has joined #openstack | 16:46 | |
| *** tgerczei has joined #openstack | 16:47 | |
| *** morazi has joined #openstack | 16:48 | |
| *** jamesbenson has quit IRC | 16:48 | |
| *** kjackal has joined #openstack | 16:49 | |
| *** MarkBaker has quit IRC | 16:50 | |
| *** aditya_r has joined #openstack | 16:50 | |
| *** Manuel_112 has joined #openstack | 16:51 | |
| peter-os | georgem1: thanks, I'll try that. If anyone else have any suggestions, don't be shy. :) | 16:53 |
| *** jplorier has joined #openstack | 16:54 | |
| *** jplorier_ has joined #openstack | 16:55 | |
| *** annegentle has quit IRC | 16:55 | |
| *** Manuel_112 has quit IRC | 16:56 | |
| *** pravins has joined #openstack | 16:57 | |
| *** jplorier has quit IRC | 16:58 | |
| *** stefannica is now known as snica_away | 17:00 | |
| *** rstarmer has joined #openstack | 17:00 | |
| *** annabelleB has quit IRC | 17:01 | |
| *** jcarter2 has quit IRC | 17:02 | |
| *** bob_one has joined #openstack | 17:02 | |
| *** jcarter2 has joined #openstack | 17:02 | |
| *** baoli has quit IRC | 17:04 | |
| *** fzdarsky is now known as fzdarsky|afk | 17:04 | |
| *** baoli has joined #openstack | 17:04 | |
| *** baoli has quit IRC | 17:06 | |
| *** Son_Goku has joined #openstack | 17:06 | |
| *** aojea has joined #openstack | 17:07 | |
| *** jamesbenson has joined #openstack | 17:07 | |
| *** gekaklam has joined #openstack | 17:07 | |
| *** sshnaidm is now known as sshnaidm|off | 17:09 | |
| *** aojea has quit IRC | 17:10 | |
| *** aojea has joined #openstack | 17:10 | |
| *** jamesbenson has quit IRC | 17:10 | |
| *** annabelleB has joined #openstack | 17:10 | |
| *** rcernin has quit IRC | 17:12 | |
| *** Manuel_112 has joined #openstack | 17:12 | |
| *** trinaths has joined #openstack | 17:13 | |
| *** bbcmicrocomputer has quit IRC | 17:14 | |
| *** tesseract has quit IRC | 17:14 | |
| *** baoli has joined #openstack | 17:15 | |
| *** srobert_ has joined #openstack | 17:15 | |
| *** SteffanW has joined #openstack | 17:15 | |
| *** srobert has quit IRC | 17:15 | |
| *** rvd has quit IRC | 17:16 | |
| *** Manuel_112 has quit IRC | 17:17 | |
| *** aojea has quit IRC | 17:19 | |
| *** aojea has joined #openstack | 17:20 | |
| *** mbenz has joined #openstack | 17:21 | |
| *** namikr has joined #openstack | 17:21 | |
| *** annabelleB has quit IRC | 17:22 | |
| *** annabelleB has joined #openstack | 17:23 | |
| *** jackNemrod has quit IRC | 17:24 | |
| *** aojea has quit IRC | 17:24 | |
| *** armando_ has joined #openstack | 17:25 | |
| *** TMM has joined #openstack | 17:25 | |
| *** armando_ has quit IRC | 17:26 | |
| *** germs has joined #openstack | 17:27 | |
| *** jcarter2_ has joined #openstack | 17:28 | |
| *** dmz_work has joined #openstack | 17:29 | |
| *** jcarter2 has quit IRC | 17:30 | |
| *** aahh has joined #openstack | 17:33 | |
| *** Manuel_112 has joined #openstack | 17:33 | |
| *** achadha has quit IRC | 17:33 | |
| *** toscalix_ has quit IRC | 17:34 | |
| *** achadha has joined #openstack | 17:34 | |
| *** blomquisg_gone is now known as blomquisg | 17:34 | |
| *** rarcea has quit IRC | 17:35 | |
| *** achadha__ has joined #openstack | 17:35 | |
| *** liverpooler has quit IRC | 17:36 | |
| *** achadh___ has joined #openstack | 17:36 | |
| *** se-tester has joined #openstack | 17:37 | |
| *** salv-orlando has joined #openstack | 17:37 | |
| *** Manuel_112 has quit IRC | 17:38 | |
| *** achadha has quit IRC | 17:38 | |
| *** dmz_work has quit IRC | 17:38 | |
| *** achadh___ has quit IRC | 17:38 | |
| *** achadha has joined #openstack | 17:38 | |
| *** achadha has quit IRC | 17:38 | |
| *** achadha__ has quit IRC | 17:39 | |
| *** achadha has joined #openstack | 17:39 | |
| *** aditya_ra has joined #openstack | 17:40 | |
| *** kambiz has quit IRC | 17:41 | |
| *** aditya_r has quit IRC | 17:41 | |
| *** acidrainfall has joined #openstack | 17:41 | |
| *** salv-orlando has quit IRC | 17:41 | |
| *** pravins has quit IRC | 17:42 | |
| *** takimbal has quit IRC | 17:42 | |
| *** takimbal has joined #openstack | 17:42 | |
| *** dxiri_ has joined #openstack | 17:44 | |
| *** takimbal_ has joined #openstack | 17:45 | |
| *** jonaspaulo has joined #openstack | 17:45 | |
| *** kambiz has joined #openstack | 17:45 | |
| *** se-tester has quit IRC | 17:47 | |
| *** takimbal has quit IRC | 17:47 | |
| *** dxiri has quit IRC | 17:48 | |
| *** baoli has quit IRC | 17:49 | |
| *** baoli has joined #openstack | 17:49 | |
| *** mikhey has joined #openstack | 17:49 | |
| *** jistr|afk is now known as jistr | 17:50 | |
| *** aramteke has joined #openstack | 17:51 | |
| *** efoley has quit IRC | 17:51 | |
| *** aramteke has quit IRC | 17:52 | |
| *** links has quit IRC | 17:52 | |
| *** trinaths has left #openstack | 17:53 | |
| *** etingof has quit IRC | 17:53 | |
| *** aditya_ra has quit IRC | 17:53 | |
| *** abu0_ has quit IRC | 17:53 | |
| *** Manuel_112 has joined #openstack | 17:54 | |
| *** drifterza has quit IRC | 17:54 | |
| *** crose has joined #openstack | 17:55 | |
| *** decrypt_ has joined #openstack | 17:57 | |
| *** decrypt has quit IRC | 17:57 | |
| *** electrofelix has quit IRC | 17:59 | |
| *** Croata has quit IRC | 17:59 | |
| *** Manuel_112 has quit IRC | 18:00 | |
| *** vikrant has quit IRC | 18:00 | |
| *** gszasz has quit IRC | 18:00 | |
| *** rwsu has quit IRC | 18:00 | |
| *** Bey0ndB1nary has joined #openstack | 18:04 | |
| *** yamahata has joined #openstack | 18:05 | |
| *** vhosakot has quit IRC | 18:08 | |
| *** annabelleB has quit IRC | 18:09 | |
| *** robbbe has joined #openstack | 18:09 | |
| *** vhosakot has joined #openstack | 18:12 | |
| *** iyamahat has joined #openstack | 18:15 | |
| *** Manuel_112 has joined #openstack | 18:15 | |
| *** MrAbaddon has joined #openstack | 18:15 | |
| *** Bey0ndB1nary has quit IRC | 18:15 | |
| *** mmirecki has joined #openstack | 18:16 | |
| *** rwsu has joined #openstack | 18:17 | |
| *** Bey0ndB1nary has joined #openstack | 18:17 | |
| *** Bey0ndB1nary has quit IRC | 18:17 | |
| *** gli has quit IRC | 18:19 | |
| *** Manuel_112 has quit IRC | 18:19 | |
| *** iyamahat has quit IRC | 18:20 | |
| *** brad[]` has quit IRC | 18:20 | |
| *** OutreEE has quit IRC | 18:20 | |
| *** jistr is now known as jistr|off | 18:21 | |
| *** cdub has quit IRC | 18:24 | |
| *** livelace has quit IRC | 18:24 | |
| *** annabelleB has joined #openstack | 18:25 | |
| *** cloudrancher has quit IRC | 18:25 | |
| *** cloudrancher has joined #openstack | 18:26 | |
| *** iyamahat has joined #openstack | 18:27 | |
| *** cloudrancher has quit IRC | 18:27 | |
| *** cloudrancher has joined #openstack | 18:28 | |
| *** m00dawg has joined #openstack | 18:29 | |
| *** Bey0ndB1nary has joined #openstack | 18:29 | |
| *** jwitko has quit IRC | 18:29 | |
| *** Bock has quit IRC | 18:32 | |
| *** grealish has quit IRC | 18:32 | |
| *** dmz_work has joined #openstack | 18:32 | |
| *** iyamahat_ has joined #openstack | 18:33 | |
| *** jwitko has joined #openstack | 18:35 | |
| *** grealish has joined #openstack | 18:35 | |
| *** Manuel_112 has joined #openstack | 18:35 | |
| *** lucendio has joined #openstack | 18:36 | |
| *** iyamahat__ has joined #openstack | 18:37 | |
| *** iyamahat has quit IRC | 18:37 | |
| *** ddyer has quit IRC | 18:37 | |
| *** jtomasek has quit IRC | 18:37 | |
| *** bob_one has quit IRC | 18:38 | |
| *** salv-orlando has joined #openstack | 18:38 | |
| *** abu0_ has joined #openstack | 18:39 | |
| *** Manuel_112 has quit IRC | 18:40 | |
| *** iyamahat_ has quit IRC | 18:40 | |
| *** jwitko_ has joined #openstack | 18:41 | |
| *** fmount9 has joined #openstack | 18:41 | |
| *** jwitko_ has quit IRC | 18:41 | |
| *** salv-orlando has quit IRC | 18:43 | |
| *** Bey0ndB1nary has quit IRC | 18:47 | |
| *** annegentle has joined #openstack | 18:51 | |
| *** liverpooler has joined #openstack | 18:54 | |
| *** ben42 has joined #openstack | 18:54 | |
| *** OutreEE has joined #openstack | 18:54 | |
| *** namikr has quit IRC | 18:55 | |
| *** ben42 has quit IRC | 18:56 | |
| *** jwitko has quit IRC | 18:56 | |
| *** Manuel_112 has joined #openstack | 18:57 | |
| *** jwitko has joined #openstack | 18:58 | |
| *** smccarthy has joined #openstack | 18:58 | |
| *** jamesbenson has joined #openstack | 18:59 | |
| *** jwitko has quit IRC | 19:00 | |
| *** Son_Goku has quit IRC | 19:00 | |
| *** jwitko has joined #openstack | 19:00 | |
| *** rcernin has joined #openstack | 19:01 | |
| *** Manuel_112 has quit IRC | 19:01 | |
| *** GenteelBen has quit IRC | 19:02 | |
| *** jamesbenson has quit IRC | 19:03 | |
| *** smccarthy has quit IRC | 19:03 | |
| *** jose-phillips has quit IRC | 19:04 | |
| *** ddyer has joined #openstack | 19:06 | |
| *** jose-phillips has joined #openstack | 19:07 | |
| *** mikhey has quit IRC | 19:10 | |
| *** iranzo has joined #openstack | 19:11 | |
| *** jcarter2_ has quit IRC | 19:12 | |
| *** kickinz1 has quit IRC | 19:13 | |
| *** hoonetorg has joined #openstack | 19:14 | |
| *** krtaylor has quit IRC | 19:15 | |
| *** slaweq has joined #openstack | 19:16 | |
| *** slaweq has quit IRC | 19:16 | |
| *** slaweq has joined #openstack | 19:16 | |
| *** gli has joined #openstack | 19:16 | |
| *** Manuel_112 has joined #openstack | 19:18 | |
| *** jcarter2 has joined #openstack | 19:19 | |
| *** iranzo has quit IRC | 19:19 | |
| *** KickInZOne has quit IRC | 19:19 | |
| *** brad[] has joined #openstack | 19:21 | |
| *** jose-phillips has quit IRC | 19:22 | |
| *** Manuel_112 has quit IRC | 19:22 | |
| *** pchavva has quit IRC | 19:25 | |
| *** liverpooler has quit IRC | 19:26 | |
| *** jamesbenson has joined #openstack | 19:27 | |
| *** slaweq_ has joined #openstack | 19:28 | |
| *** slaweq has quit IRC | 19:28 | |
| *** etingof has joined #openstack | 19:29 | |
| *** bob_one has joined #openstack | 19:29 | |
| *** jamesbenson has quit IRC | 19:31 | |
| *** jamesbenson has joined #openstack | 19:34 | |
| *** aselius has joined #openstack | 19:35 | |
| *** roedie has joined #openstack | 19:36 | |
| *** brad[] has quit IRC | 19:38 | |
| *** Manuel_112 has joined #openstack | 19:38 | |
| *** salv-orlando has joined #openstack | 19:39 | |
| *** bob_one has quit IRC | 19:41 | |
| *** pravins has joined #openstack | 19:42 | |
| *** salv-orlando has quit IRC | 19:43 | |
| *** Manuel_112 has quit IRC | 19:43 | |
| *** bob_one has joined #openstack | 19:44 | |
| *** spanglywires has joined #openstack | 19:45 | |
| *** xemdetia_ has joined #openstack | 19:47 | |
| *** slaweq_ has quit IRC | 19:47 | |
| *** mbenz has quit IRC | 19:47 | |
| *** mbenz has joined #openstack | 19:48 | |
| *** slaweq has joined #openstack | 19:48 | |
| *** xemdetia has quit IRC | 19:49 | |
| *** mbenz has quit IRC | 19:50 | |
| *** mbenz has joined #openstack | 19:50 | |
| *** mbenz has quit IRC | 19:51 | |
| *** jackNemrod has joined #openstack | 19:51 | |
| *** mbenz has joined #openstack | 19:51 | |
| *** mbenz has quit IRC | 19:52 | |
| *** mbenz has joined #openstack | 19:52 | |
| *** mbenz has quit IRC | 19:52 | |
| *** mbenz has joined #openstack | 19:53 | |
| *** e0ne has joined #openstack | 19:53 | |
| *** mbenz has quit IRC | 19:53 | |
| *** egonzalez has joined #openstack | 19:54 | |
| *** annegentle has quit IRC | 19:55 | |
| *** bob_one has quit IRC | 19:55 | |
| *** cdub has joined #openstack | 19:57 | |
| *** bob_one has joined #openstack | 19:57 | |
| *** janzian has quit IRC | 19:57 | |
| *** janzian has joined #openstack | 19:58 | |
| *** achadha_ has joined #openstack | 19:59 | |
| *** slaweq_ has joined #openstack | 20:00 | |
| *** achadha_ has quit IRC | 20:00 | |
| *** achadha_ has joined #openstack | 20:01 | |
| *** slaweq has quit IRC | 20:02 | |
| *** bob_one has quit IRC | 20:02 | |
| *** achadha_ has quit IRC | 20:02 | |
| *** achadha_ has joined #openstack | 20:02 | |
| *** achadha has quit IRC | 20:03 | |
| *** janzian has quit IRC | 20:03 | |
| *** bob_one has joined #openstack | 20:04 | |
| *** achadha_ has quit IRC | 20:04 | |
| *** achadha has joined #openstack | 20:04 | |
| *** achadha has quit IRC | 20:06 | |
| *** brad[] has joined #openstack | 20:06 | |
| *** Yarboa has joined #openstack | 20:06 | |
| *** achadha has joined #openstack | 20:07 | |
| *** georgem1 has quit IRC | 20:08 | |
| *** yee379 has quit IRC | 20:09 | |
| *** yee379 has joined #openstack | 20:09 | |
| *** cristicalin has joined #openstack | 20:09 | |
| *** bob_one has quit IRC | 20:10 | |
| *** achadha has quit IRC | 20:11 | |
| *** andresmujica has joined #openstack | 20:11 | |
| *** hseipp has joined #openstack | 20:11 | |
| *** ChiTo has quit IRC | 20:11 | |
| *** bob_one has joined #openstack | 20:14 | |
| peter-os | georgem1 (and anyone else running into this problem): I found the problem with the "none" driver error message. It was either bad upgrade instructions or my misunderstanding of said instructions. | 20:14 |
| *** Yarboa has quit IRC | 20:15 | |
| peter-os | All my instances got mapped to cell0 instead of cell1. There is a "transport_url" field in the database nova_api.cell_mappings. For cell0 the transport_url is none:/// | 20:16 |
| *** krtaylor has joined #openstack | 20:16 | |
| peter-os | I moved all instances to cell1 which had the correct transport_url and everything works now. | 20:16 |
| peter-os | I don't now if there is a way to do that via the API or any client, but I didn't find out, so I manually updated the table nova_api.instance_mappings to move the instances to cell1. | 20:17 |
| peter-os | I didn't find out = I didn't find a way | 20:17 |
| *** jpena is now known as jpena|brb | 20:18 | |
| *** hseipp has quit IRC | 20:18 | |
| *** bob_one has quit IRC | 20:18 | |
| *** bob_one has joined #openstack | 20:21 | |
| *** drifterza has joined #openstack | 20:21 | |
| *** drifterza has quit IRC | 20:21 | |
| *** bob_one has quit IRC | 20:22 | |
| *** bob_one has joined #openstack | 20:22 | |
| *** bob_one has quit IRC | 20:26 | |
| *** mmirecki has quit IRC | 20:27 | |
| *** annabelleB has quit IRC | 20:28 | |
| *** annabelleB has joined #openstack | 20:29 | |
| *** slaweq_ has quit IRC | 20:30 | |
| *** achadha has joined #openstack | 20:31 | |
| *** achadha has quit IRC | 20:31 | |
| *** achadha has joined #openstack | 20:31 | |
| *** RickDeckard has quit IRC | 20:31 | |
| *** bob_one has joined #openstack | 20:32 | |
| *** annegentle has joined #openstack | 20:32 | |
| *** Manuel_112 has joined #openstack | 20:33 | |
| *** andresmujica has quit IRC | 20:33 | |
| *** jose-phillips has joined #openstack | 20:35 | |
| *** Yarboa has joined #openstack | 20:35 | |
| *** e0ne has quit IRC | 20:36 | |
| *** janzian has joined #openstack | 20:36 | |
| *** ikhan has quit IRC | 20:37 | |
| *** Manuel_112 has quit IRC | 20:37 | |
| *** bob_one has quit IRC | 20:38 | |
| *** ddyer has quit IRC | 20:38 | |
| *** slaweq has joined #openstack | 20:39 | |
| *** ddyer has joined #openstack | 20:39 | |
| *** salv-orlando has joined #openstack | 20:39 | |
| *** slaweq has quit IRC | 20:40 | |
| *** slaweq has joined #openstack | 20:41 | |
| *** Manuel_112 has joined #openstack | 20:41 | |
| *** jamesbenson has quit IRC | 20:41 | |
| *** achadha_ has joined #openstack | 20:43 | |
| *** indistylo has quit IRC | 20:44 | |
| *** salv-orlando has quit IRC | 20:45 | |
| *** cleong has quit IRC | 20:45 | |
| *** SteffanW has quit IRC | 20:45 | |
| *** janzian has quit IRC | 20:45 | |
| *** Manuel_112 has quit IRC | 20:46 | |
| *** annegentle has quit IRC | 20:46 | |
| *** gli has quit IRC | 20:46 | |
| *** ChiTo has joined #openstack | 20:46 | |
| catintheroof | hi! does anyone knows how to enable horizon multi domain support on devstack touching local.conf ? | 20:47 |
| *** fmount9 has quit IRC | 20:47 | |
| *** achadha has quit IRC | 20:47 | |
| *** achadha_ has quit IRC | 20:47 | |
| *** Yarboa has quit IRC | 20:49 | |
| *** achadha has joined #openstack | 20:51 | |
| *** jamesbenson has joined #openstack | 20:51 | |
| *** spanglywires has quit IRC | 20:51 | |
| *** annegentle has joined #openstack | 20:52 | |
| *** spanglywires has joined #openstack | 20:52 | |
| *** jamesbenson has quit IRC | 20:55 | |
| *** achadha has quit IRC | 20:55 | |
| *** fmount9 has joined #openstack | 20:56 | |
| *** bob_one has joined #openstack | 20:56 | |
| *** cyborg-one has quit IRC | 20:56 | |
| *** bob_one has quit IRC | 20:58 | |
| *** cdub has quit IRC | 20:58 | |
| *** Cybodog has quit IRC | 20:59 | |
| *** smccarthy has joined #openstack | 20:59 | |
| *** dmz_work has quit IRC | 21:00 | |
| *** Acinonyx has quit IRC | 21:00 | |
| *** drako has joined #openstack | 21:01 | |
| *** Acinonyx has joined #openstack | 21:01 | |
| *** parlakisik has joined #openstack | 21:02 | |
| *** yusef has joined #openstack | 21:04 | |
| *** pravins has quit IRC | 21:04 | |
| *** smccarthy has quit IRC | 21:05 | |
| *** parlakisik has quit IRC | 21:06 | |
| *** dmz_work has joined #openstack | 21:06 | |
| *** aossama has quit IRC | 21:06 | |
| *** annegentle has quit IRC | 21:07 | |
| *** thorst_afk has quit IRC | 21:08 | |
| *** drako has quit IRC | 21:08 | |
| *** aossama has joined #openstack | 21:08 | |
| *** gli has joined #openstack | 21:09 | |
| *** penick has joined #openstack | 21:10 | |
| *** crose has quit IRC | 21:10 | |
| *** takamatsu has quit IRC | 21:11 | |
| *** jprovazn has quit IRC | 21:11 | |
| spanglywires | Anyone else finding https://docs.openstack.org/mitaka/networking-guide/config-dns-int.html for internal instance name lookups doesn't work newton/ocata on either packstack or devstack? | 21:12 |
| spanglywires | or, alternatively, anyone whohas it working how did you do it ? | 21:12 |
| *** jpena|brb is now known as jpena | 21:15 | |
| *** cdub has joined #openstack | 21:15 | |
| *** georgem1 has joined #openstack | 21:17 | |
| *** namikr has joined #openstack | 21:22 | |
| *** fmount9 has quit IRC | 21:24 | |
| *** cdub has quit IRC | 21:25 | |
| *** dmz_work has quit IRC | 21:25 | |
| *** ddyer has quit IRC | 21:27 | |
| *** georgem1 has left #openstack | 21:28 | |
| *** Pythonic_vi has joined #openstack | 21:29 | |
| *** Domin_ has joined #openstack | 21:30 | |
| *** Domin has quit IRC | 21:31 | |
| *** Domin_ is now known as Domin | 21:31 | |
| *** catintheroof has quit IRC | 21:31 | |
| *** etingof has quit IRC | 21:32 | |
| *** etingof has joined #openstack | 21:32 | |
| *** racedo has quit IRC | 21:33 | |
| *** annegentle has joined #openstack | 21:34 | |
| *** thorst_afk has joined #openstack | 21:34 | |
| *** karimb has joined #openstack | 21:35 | |
| *** Manuel_112 has joined #openstack | 21:35 | |
| *** thorst_afk has quit IRC | 21:36 | |
| *** Yarboa has joined #openstack | 21:36 | |
| *** srobert_ has quit IRC | 21:36 | |
| *** cdub has joined #openstack | 21:37 | |
| *** cloudrancher has quit IRC | 21:37 | |
| *** eroux has quit IRC | 21:37 | |
| *** zkassab has quit IRC | 21:38 | |
| *** cloudrancher has joined #openstack | 21:38 | |
| *** egonzalez has quit IRC | 21:38 | |
| *** thorst_afk has joined #openstack | 21:39 | |
| *** iniaziaway is now known as iniazi | 21:39 | |
| *** Manuel_112 has quit IRC | 21:40 | |
| *** salv-orlando has joined #openstack | 21:40 | |
| *** penick has quit IRC | 21:41 | |
| *** Donckers has quit IRC | 21:43 | |
| *** baoli has quit IRC | 21:43 | |
| *** Manuel_112 has joined #openstack | 21:44 | |
| *** baoli has joined #openstack | 21:45 | |
| *** salv-orlando has quit IRC | 21:45 | |
| *** bob_one has joined #openstack | 21:46 | |
| *** aossama has quit IRC | 21:47 | |
| *** namikr has quit IRC | 21:47 | |
| *** namikr has joined #openstack | 21:48 | |
| *** kylek3h_ has quit IRC | 21:48 | |
| *** Manuel_112 has quit IRC | 21:48 | |
| *** aossama has joined #openstack | 21:49 | |
| *** baoli has quit IRC | 21:50 | |
| *** bob_one has quit IRC | 21:51 | |
| *** namikr has quit IRC | 21:53 | |
| *** morazi has quit IRC | 21:53 | |
| *** ddyer has joined #openstack | 21:56 | |
| *** aossama has quit IRC | 21:57 | |
| *** jackNemrod has quit IRC | 21:58 | |
| *** cdub has quit IRC | 21:59 | |
| *** aconole has quit IRC | 21:59 | |
| *** bobh has quit IRC | 21:59 | |
| *** aossama has joined #openstack | 22:00 | |
| *** peter-os has quit IRC | 22:01 | |
| *** galstrom is now known as galstrom_zzz | 22:04 | |
| *** xemdetia_ has quit IRC | 22:05 | |
| *** smccarthy has joined #openstack | 22:05 | |
| *** smccarthy has quit IRC | 22:05 | |
| *** spanglywires has quit IRC | 22:06 | |
| *** smccarthy has joined #openstack | 22:06 | |
| *** jcarter2_ has joined #openstack | 22:07 | |
| *** ben_roose has quit IRC | 22:09 | |
| *** jcarter2 has quit IRC | 22:09 | |
| *** abu0_ has quit IRC | 22:11 | |
| *** jcarter2_ has quit IRC | 22:11 | |
| *** aossama has quit IRC | 22:11 | |
| *** ddyer has quit IRC | 22:12 | |
| *** vhosakot has quit IRC | 22:12 | |
| *** vhosakot has joined #openstack | 22:12 | |
| *** aossama has joined #openstack | 22:13 | |
| *** ddyer has joined #openstack | 22:16 | |
| *** cristicalin has quit IRC | 22:19 | |
| *** aojea has joined #openstack | 22:20 | |
| *** vhosakot_ has joined #openstack | 22:21 | |
| *** vhosakot has quit IRC | 22:23 | |
| *** rbowen has quit IRC | 22:25 | |
| *** aojea has quit IRC | 22:25 | |
| *** annegentle has quit IRC | 22:27 | |
| *** krtaylor has quit IRC | 22:28 | |
| *** salv-orlando has joined #openstack | 22:29 | |
| *** mchlumsky has quit IRC | 22:29 | |
| *** rcernin has quit IRC | 22:30 | |
| *** marc_ab has quit IRC | 22:31 | |
| *** slaweq has quit IRC | 22:32 | |
| *** annegentle has joined #openstack | 22:34 | |
| *** aojea has joined #openstack | 22:37 | |
| *** Manuel_112 has joined #openstack | 22:38 | |
| *** thegreenhundred has quit IRC | 22:38 | |
| *** aludwar has joined #openstack | 22:38 | |
| *** blomquisg is now known as blomquisg_gone | 22:40 | |
| *** jgriffith has quit IRC | 22:43 | |
| *** Manuel_112 has quit IRC | 22:43 | |
| *** tha_dok has quit IRC | 22:43 | |
| *** iyamahat__ has quit IRC | 22:43 | |
| *** jgriffith has joined #openstack | 22:44 | |
| *** tha_dok has joined #openstack | 22:44 | |
| *** namikr has joined #openstack | 22:45 | |
| *** aossama has quit IRC | 22:46 | |
| *** annabelleB has quit IRC | 22:46 | |
| *** Manuel_112 has joined #openstack | 22:46 | |
| *** yamahata has quit IRC | 22:49 | |
| *** slaweq has joined #openstack | 22:49 | |
| *** fsimonce has quit IRC | 22:49 | |
| *** aossama has joined #openstack | 22:50 | |
| *** Manuel_112 has quit IRC | 22:51 | |
| *** slaweq has quit IRC | 22:54 | |
| *** lucendio has quit IRC | 22:57 | |
| *** dmibrid has joined #openstack | 22:57 | |
| *** aojea has quit IRC | 22:58 | |
| *** aojea has joined #openstack | 22:58 | |
| *** ddyer has quit IRC | 23:00 | |
| *** salv-orlando has quit IRC | 23:01 | |
| *** salv-orlando has joined #openstack | 23:02 | |
| *** smccarthy has quit IRC | 23:02 | |
| *** achadha has joined #openstack | 23:02 | |
| *** aojea has quit IRC | 23:03 | |
| *** namikr has quit IRC | 23:03 | |
| *** annegentle has quit IRC | 23:03 | |
| *** annabelleB has joined #openstack | 23:04 | |
| *** acidrainfall has quit IRC | 23:04 | |
| *** salv-orlando has quit IRC | 23:06 | |
| *** salv-orlando has joined #openstack | 23:06 | |
| *** kjackal has quit IRC | 23:07 | |
| *** aahh has quit IRC | 23:07 | |
| *** achadha has quit IRC | 23:07 | |
| *** kjackal has joined #openstack | 23:07 | |
| *** vquicksilver has quit IRC | 23:08 | |
| *** jpena is now known as jpena|off | 23:09 | |
| *** janzian has joined #openstack | 23:20 | |
| *** salv-orlando has quit IRC | 23:23 | |
| *** achadha has joined #openstack | 23:23 | |
| *** salv-orlando has joined #openstack | 23:23 | |
| *** jonaspaulo has quit IRC | 23:24 | |
| *** lukasdboer has quit IRC | 23:26 | |
| *** salv-orlando has quit IRC | 23:28 | |
| *** yamamoto_ has joined #openstack | 23:31 | |
| *** yamamoto_ has quit IRC | 23:31 | |
| *** yamamot__ has joined #openstack | 23:31 | |
| *** slaweq has joined #openstack | 23:33 | |
| *** Pythonic_vi has quit IRC | 23:33 | |
| *** Pythonic_vi has joined #openstack | 23:35 | |
| *** charcol has joined #openstack | 23:36 | |
| *** iyamahat has joined #openstack | 23:36 | |
| *** slaweq has quit IRC | 23:38 | |
| *** Nel1x has joined #openstack | 23:38 | |
| *** thorst_afk has quit IRC | 23:39 | |
| *** marc_ab has joined #openstack | 23:40 | |
| *** Manuel_112 has joined #openstack | 23:41 | |
| *** ChiTo has quit IRC | 23:41 | |
| *** Pythonic_vi has quit IRC | 23:41 | |
| *** ikhan has joined #openstack | 23:42 | |
| *** chyka has quit IRC | 23:42 | |
| *** Pythonic_vi has joined #openstack | 23:42 | |
| *** Pythonic_vi has quit IRC | 23:45 | |
| *** kjackal has quit IRC | 23:45 | |
| *** kjackal has joined #openstack | 23:45 | |
| *** Manuel_112 has quit IRC | 23:45 | |
| *** salv-orlando has joined #openstack | 23:47 | |
| *** achadha has quit IRC | 23:47 | |
| *** achadha has joined #openstack | 23:47 | |
| *** Manuel_112 has joined #openstack | 23:49 | |
| *** achadha_ has joined #openstack | 23:50 | |
| *** achadha has quit IRC | 23:50 | |
| *** achadha_ has quit IRC | 23:51 | |
| *** achadha has joined #openstack | 23:52 | |
| *** Manuel_112 has quit IRC | 23:54 | |
| *** catintheroof has joined #openstack | 23:55 | |
| *** achadha has quit IRC | 23:56 | |
| *** marst has quit IRC | 23:57 | |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!