cpaelzer | good morning | 04:52 |
---|---|---|
lordievader | Good morning | 06:29 |
cpaelzer | hi lordievader | 06:51 |
lordievader | Hey cpaelzer | 09:51 |
lordievader | How are you doing? | 09:51 |
cpaelzer | good as always :-) | 09:53 |
cpaelzer | I'm not dragging you down by complaining :-) | 09:53 |
cpaelzer | and you? | 09:53 |
lordievader | Busy, but good :) | 10:09 |
rbasak | cpaelzer: has the git ubuntu importer been dead since 4 Sep? | 10:41 |
rbasak | In the screen I saw just a prompt | 10:41 |
cpaelzer | I have had it recovering for some time, maybe it died again | 10:52 |
cpaelzer | yes, seems like it | 10:52 |
cpaelzer | rbasak: ^^ | 10:53 |
cpaelzer | I had it recovering like 8 days when we found it dead | 10:53 |
cpaelzer | it was funny that was the day after I asked if I should keep the screen open | 10:53 |
cpaelzer | and you said, no need to do so | 10:53 |
cpaelzer | the day after it crashed and only when andreas was missing an import we relaized | 10:53 |
cpaelzer | so I started it with the right offset to recover all of it and that worked | 10:54 |
cpaelzer | so it seems to be the second time in 4 weeks not that the main process died | 10:54 |
cpaelzer | which is odd | 10:54 |
cpaelzer | but exactly the reason why andreas and I added a sprint topic for it to discuss how we continue | 10:54 |
cpaelzer | it is like "make usdi a real service" or so | 10:54 |
rbasak | cpaelzer: OK. Restarted, thanks. | 11:09 |
rbasak | +1 for sprint topic | 11:09 |
rbasak | Does anyone actually use backuppc? | 12:31 |
rbasak | Looking at bug 1723392, it looks like it's struggling for maintainership in Debian (kicked out of testing atm) though that might pick up depending on a new volunteer. | 12:31 |
ubottu | bug 1723392 in backuppc (Ubuntu) "Please update backuppc to 4.x release (now 4.2.1) - major improvements and lots of bugfixes" [Undecided,Confirmed] https://launchpad.net/bugs/1723392 | 12:31 |
rbasak | Is there any value in keeping this package in main in Ubuntu? | 12:32 |
rbasak | cpaelzer: one for you I think, if you haven't seen it already: bug 1788334. server-next because there's a patch provided? | 12:37 |
ubottu | bug 1788334 in qemu (Ubuntu) "'Less than' (<), 'more than' (>), and 'pipe' (|) can't be typed via VNC" [Undecided,New] https://launchpad.net/bugs/1788334 | 12:37 |
rbasak | The patch needs your review I think though. It is noted as a hack by upstream. | 12:38 |
cpaelzer | rbasak: yeah I know that one from other reports, I'll need to tag some Dup's it seems | 12:42 |
cpaelzer | rbasak: consider that bug handled by me | 12:49 |
rbasak | Thanks! | 12:52 |
cpaelzer | if only the tests on the qemu in cosmic would let it migrate this could go on :-) | 12:55 |
* cpaelzer is cursed by the autopkgtest-murphy on some flaky tests | 12:55 | |
kstenerud | DEBUG:Executing: /usr/bin/lxc launch -e 5b4f8a0c86d1 loving-weevil | 14:47 |
kstenerud | That's gotta be the best name yet! | 14:47 |
kneeki | Hey all, in my attempts to create a systemd service that ensure apache2 is always running I seem to have broke the entire systemd shabang. When executing 'sudo systemctl list-unit-files' I'm given the error: Failed to list unit files: Not a directory --- Google hasn't been any help. Any ideas? | 17:16 |
ChmEarl | kneeki, your new service should be installed in /etc/systemd/system, not in the primary systemd tree | 17:19 |
kneeki | That's where I put it. I actually did this: sudo systemctl enable /var/www/website/services/apache2-stayalive.service | 17:20 |
kneeki | It ended up handedly breaking apache2 like a champion actually. So I need to fix that. | 17:20 |
ChmEarl | kneeki, I've never seen a full path to a service file in that command... its not required | 17:22 |
ChmEarl | systemd has a reserved path | 17:23 |
kneeki | Well it seemed to have work well enough. Is there a systemctl command that rebuilds the systemd services? Even after remove+purge+install of apache2 the services aren't working. | 17:24 |
ChmEarl | systemd likes you to run `daemon-reload` and errors from that command get logged | 17:24 |
ScottE | Since apache is already shipped with systemd unit files, why not just do a dropin? I.e. if the service that's run is /lib/systemd/system/apache2.service, then create /etc/systemd/system/apache2.service.d/override.conf with Restart=always in a [service] stanza | 17:28 |
sdeziel | that ^ | 17:28 |
kneeki | Yeah tried that - same error when I try to list the loaded services. Here's a list of all the systemd entries in syslog from yesterday: https://paste.laravel.io/23315bf0-95f5-4b62-ba0d-590264e59ddb | 17:28 |
sdeziel | to create the drop-in, "sudo systemctl edit apache2" is handy too | 17:28 |
kneeki | ScottE, Okay, I'll look into that | 17:28 |
ScottE | And "systemctl cat apache2", too to see the fully resolved configuration | 17:29 |
kneeki | ScottE, Here's the result of 'systemctl cat apache2': https://paste.laravel.io/185d7c7a-0f1a-4633-9518-c7dbef75d15d | 17:30 |
kneeki | I created the override before issuing that command. | 17:31 |
sdeziel | kneeki: you don't need to repeat Type= and RemainAfterExit= | 17:43 |
kneeki | Okay, removing that | 17:46 |
kneeki | Apache is running again after deleting my custom service, adding the override, then daemon-reload. Let's try to reboot | 17:48 |
kneeki | So apache2 isn't starting automagically after rebooting. | 17:51 |
kneeki | 'systemctl enable apache2' gives me: Synchronizing state of apache2.service with SysV init with /lib/systemd/systemd-sysv-install... | 17:53 |
kneeki | Executing /lib/systemd/systemd-sysv-install enable apache2 --- let's see how that goes. =] | 17:53 |
kneeki | Neat. Seems that worked! | 17:54 |
blackflow | kneeki: you do know you're not required to use the distro default sysvinit shim? you can define your own service for apache and benefit from all the systemd facilities for process management. | 17:59 |
blackflow | distro defaults are teribad. | 18:00 |
kneeki | I think that's probably beyond my ability/scope at the current time. I'm still trying to get everything the way it was before I broke it. | 18:00 |
Epx998 | does debian-installer for ub have any sort of vnc similar to redhat/centos? | 18:35 |
tomreyn | thw alternate server installed (which is based on the debian installer) can be setup to start an openssh server so that you can carry out the installation remotely. | 18:42 |
tomreyn | Epx998: ^ does this help? | 18:42 |
arooni | is it bad practice to set /var/log/fpm-7.0-log ownership to www-data:www-data so nginx can write to it? | 21:05 |
arooni | because i dont seem to be getting error logging working correctly with 16.04 + php7-fpm | 21:06 |
arooni | is there something i'm missing in the error logging of the official ubuntu package? | 21:17 |
sarnold | maybe www-data:adm if you want adm users to be able to read it without sudo | 21:17 |
sarnold | are you sure fpm is set up correctly though? I thought it was supposed to run different scripts as different users or something similar | 21:18 |
sdeziel | arooni: I'd think the fpm log is not written to by nginx but more by php-fpm itself. Both runs as www-data by default but that might not be your case? | 21:24 |
Jimmy06 | Im trying to install server 18.04 and keep getting this error "Unexpected error while running command blkid -o full /dev/" | 21:24 |
arooni | sarnold: thats a good idea to set group to adm. i thought it was set up until now | 21:25 |
arooni | i dont see any output in the log file it has acess to | 21:26 |
kstenerud | I think I may be doing something wrong with my ppa update to logwatch... | 21:41 |
kstenerud | I've made these changes: https://pastebin.ubuntu.com/p/4GbWmJvwBX/ | 21:41 |
kstenerud | git ubuntu build-source -v --lxd-image 5b4f8a0c86d1 --sign | 21:41 |
kstenerud | dput ppa:kstenerud/cosmic-logwatch-syslog-1199511 ../logwatch_7.4.3+git20161207-2ubuntu3~ppa1_source.changes | 21:42 |
kstenerud | Then inside my container, add-apt-repository -y ppa:kstenerud/cosmic-logwatch-syslog-1199511 | 21:42 |
kstenerud | But when I install from the ppa, none of my changes show up | 21:42 |
kstenerud | Do I need to do something special for things in the debian directory? | 21:42 |
Jimmy06 | I just want to install it lol | 21:44 |
dpb1 | kstenerud: apt-cache policy <package> | 21:45 |
dpb1 | what's it show | 21:45 |
Jimmy06 | me ? | 21:45 |
kstenerud | shows only the 2ubuntu2 version, not 2ubuntu3~ppa1 | 21:45 |
kstenerud | apt update is hitting my ppa | 21:46 |
kstenerud | Hit:3 http://ppa.launchpad.net/kstenerud/cosmic-logwatch-syslog-1199511/ubuntu cosmic InRelease | 21:46 |
kstenerud | H | 21:46 |
dpb1 | kstenerud: go to your ppa on the web | 21:46 |
dpb1 | kstenerud: click on 'package details' | 21:46 |
dpb1 | you'll notice the change you uploaded is still building | 21:46 |
kstenerud | I see "2 successful" | 21:47 |
dpb1 | look at the packages | 21:47 |
dpb1 | see the little gear icon? | 21:47 |
dpb1 | that means building | 21:47 |
kstenerud | ah ok | 21:47 |
dpb1 | and the status is 'pending' | 21:47 |
dpb1 | also, expand the expander thing on the left | 21:47 |
dpb1 | you will need the status to be published, *and* a green check on the left for it to be really there | 21:48 |
kstenerud | ok, so it's currently built but not published? | 21:48 |
dpb1 | yup | 21:49 |
Jimmy06 | https://i.imgur.com/m7vn5HJ.png | 21:59 |
Jimmy06 | That's my drive setup | 21:59 |
Jimmy06 | https://i.imgur.com/gX67kLZ.png | 22:00 |
Jimmy06 | This is the error I get after confirming it | 22:00 |
Jimmy06 | https://i.imgur.com/UXoAcXg.png | 22:01 |
dpb1 | Jimmy06: I'm looking | 22:12 |
Jimmy06 | Thanks | 22:13 |
dpb1 | rharper: you know what is going on there? ^ | 22:13 |
dpb1 | bug worthy? | 22:13 |
Jimmy06 | its a 146GB 15k SAS drive if that means anything lol | 22:17 |
dpb1 | Jimmy06: switch to another terminal | 22:20 |
dpb1 | you know how to do that? | 22:20 |
dpb1 | <ctrl><alt><f2> | 22:20 |
dpb1 | get back with | 22:20 |
dpb1 | <ctrl><alt><f1> | 22:20 |
Jimmy06 | I will haeve to go to the server hang on | 22:20 |
Jimmy06 | I will have to go to the server hang on | 22:20 |
dpb1 | and run blkid -o full /dev/sda2 | 22:21 |
dpb1 | what happens | 22:21 |
dpb1 | and just blkid | 22:21 |
dpb1 | blkid -o full | 22:21 |
dpb1 | etc | 22:21 |
Jimmy06 | sec funning it now | 22:21 |
Jimmy06 | lol funning, Running | 22:21 |
Jimmy06 | https://i.imgur.com/EM2ZAMh.png | 22:22 |
Jimmy06 | doesnt error | 22:22 |
dpb1 | what about blkid -o full | 22:23 |
dpb1 | what's the output | 22:23 |
Jimmy06 | https://i.imgur.com/ZalLWmQ.png | 22:23 |
dpb1 | what about lsblk | 22:24 |
Jimmy06 | https://i.imgur.com/xgRci4d.png | 22:24 |
dpb1 | hrm | 22:25 |
Jimmy06 | its a HP Raid controller | 22:26 |
dpb1 | idk, I'd need rharper or smoser to take a peek, but it's late for them. They'll likely poke their head back in | 22:26 |
dpb1 | Jimmy06: only advice I have is general. look through dmesg, /var/log/syslog, see if there is any error jumping out to you | 22:26 |
dpb1 | but let's see what they say when they look | 22:27 |
* dpb1 -> afk | 22:27 | |
Jimmy06 | https://i.imgur.com/5QKboHw.png | 22:29 |
Jimmy06 | I will just add this here incase it helps | 22:29 |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!