00:00:51 yuripv: also it has the -H flag to have everything separated by a single tab 00:01:20 for ease of parsing 00:01:53 yep, that's what i meant by "parsable" (and not the -p flag) :) 01:06:53 ok so.. i sort of thoughtlessly upgraded zroot and received a message about updating this.. 01:07:05 Pool 'zroot' has the bootfs property set, you might need to update the boot code. See gptzfsboot(8) and loader.efi(8) for details. 01:07:25 https://forums.freebsd.org/threads/help-needed-after-zfs-features-upgrade-before-bootcode-upgrade.81428/ 01:07:25 Title: Solved - Help needed after zfs features upgrade before bootcode upgrade | The FreeBSD Forums 01:07:47 taking a look at that i should probably run something like gpart bootcode -b /boot/pmbr -p /boot/gptzfsboot -i 1 daXX ? 01:08:30 yes, assuming you're set up for BIOS booting. If there's an ESP on the disk, you should go ahead and update loader.efi on that as well 01:09:17 for the life of me i can't remember how i installed it lol. is there a quick way to check? 01:09:29 (without rebooting?) 01:10:28 sysctl machdep.bootmethod 01:11:12 machdep.bootmethod: BIOS 01:11:12 nice 01:11:48 and if it's a zfs mirror then just gpart bootcode -b /boot/pmbr -p /boot/gptzfsboot -i 1 daXX x 2 ? 01:12:07 ie: write it to both drives? 01:12:19 presumably yes 01:13:00 awesome. have 2 usb drives mirrored for booting fbsd .. so hopefully that works. 01:13:10 admittedly I have little clue... I mostly drive one-disk ZFS setups, and if I have to touch anything ore complicated than that I have a bunch of zfs-y friends I can poke 01:14:01 i didn't honestly know the pool upgrade would affect the boot partition requirement tbh .. probably should have taken a look at that prior to doing it 01:15:07 usb drives with zfs. bold move. 01:15:29 yeah, most features are fine, some /could/ affect the read-only bits we have in bootloaders and we have to whitelist those 01:15:54 so it's actually relatively easy to lock yourself out of the system with a loader that doesn't understand some new feature you enabled 01:16:30 rtprio: you gotta want it :) 01:18:48 i use the 16GB usb drives to boot. but have most of the dirs on 2 SSDs and just changed the mountpoints for fbsd 01:19:27 i've actually swapped on once before because it just.... died... and that seemed to recover nicely. but that was quite some time ago 01:19:42 *swapped one 01:20:17 kevans: thanks for the help. appreciate it. 01:30:56 *nods* 01:46:37 alright got apache with ssl running :DD https://vlepy.com/ 01:46:38 Title: Mirosław Leśniak 04:56:32 i need to set an apache vhost on port 80 ip 10.8.0.1 04:56:39 server runs but i get 403 forbidden 04:56:43 any clue? :V 05:07:55 ok i got it working 05:51:49 mane: what was the solution to your 403 forbidden ? 05:52:06 a simple Documen directive 05:52:11 Document* 05:52:57 eh 05:53:01 a Directory directive 05:53:03 actually 05:53:04 :V 05:53:17 understood. 05:53:45 if your needs are simple, have you lookedat lighthttpd or obhttpd rather than apache ? 05:54:22 i'm ok with apache 05:55:33 no worries. just pointing out there are other options if needed. 08:24:55 somebody tell mane about mod_md when they come back 08:24:58 i mean wow, this r13->r14 upgrade with zpool upgrade just keeps getting worse, but at least i managed to get one bootable option accidentally https://paste.ofcode.org/3bJiD76GwFGridMDymhufpj 08:24:59 Title: Paste ofCode 08:25:35 my question is how do i specify this, using "zpool set bootfs=zroot/ROOT/14.0-RELEASE_2023-11-21_145542 zroot" ? or /boot/loader.conf changes? 08:44:49 nimmen_dimmur: tried bectl? 08:45:16 yuripv: nope, first time i see "bectl", will check 09:20:29 mane: 09:24 < meena> somebody tell mane about mod_md when they come back 09:20:37 (I have no idea of the context :-D ) 09:21:14 stl_: SSL config on Apache httpd 12:12:26 definitely 12:21:10 what causes a process to stop accepting? `netstat -ALanp tcp` gives me this: 12:21:11 fffffe00b4c858f0 tcp4 102/0/128 *.8000 12:26:04 I guess its completely stopped accepting connections 14:59:58 and today's lesson.. do not assume that each man page document has the "same" section structure of .Sh .Rs 15:10:57 why .Rs? 15:12:16 i.e. why did you assume .Rs even has to be in man page? 15:28:09 yuripv: because the samples i reviewed had it, like date.1.gz for example 15:36:27 mdoc(7) documents it as "bibliographic block (references)", and lots of man pages don't have it, hence me wondering 15:42:15 yuripv: i just picked the one that did.. now i got some that are quoting SEE ALSO.. oh well, just time to play with regex 16:12:02 what are you trying to do exactly? 16:16:56 yuripv: i am trying to confirm a bug still exists.. i am trying to find all references to man pages, within indvidual man pages.. and see if that reference exists 16:17:05 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=108980 16:17:08 Title: 108980 – list of missing man pages 16:17:54 so if a man page has a SEE ALSO section, give me all the references in that section and let me traverse the system to confirm/deny they exist 16:19:25 mandoc has a -Tlint which will tell you if there are any .Xr's to missing pages 16:19:40 this is my pythonic regular expression re.compile(r"(.Sh SEE ALSO)(.*?)(.Rs)|(.Sh SEE ALSO)(.*)(.Sh)", flags=re.DOTALL) 16:20:16 note that .Xr can be anywhere in the man page 16:22:55 the convention was implying it should be in a SEE ALSO section of man pages 16:24:23 well that would make finding things easier than that mess above 16:25:53 that did increase coverage from 3873 files to 9625 16:26:02 yuripv: thanks, back to toying around 18:32:20 hrm, i have an ubuntu jail with ssh, and i know i've solved this before. when i ssh to the ip address i set (seen in jls), i ssh to my native box instead 18:40:50 Demosthenex: bind the sshds to specific addresses (instead of wildcard one) both on host and jails 18:42:54 yuripv: i knew it was a simple one 18:49:53 *sigh* is there a guide for running dbus in a jail w/o x11? 18:53:32 hm, why would running dbus in a jail be a problem? and why would running x11 or not affect it? 18:54:16 nimaje: just trying to run scli (with signal-cli, it's a text front end to signal messenger), and it keeps trying to run dbus and wants a DISPLAY variable and dbus services running 18:55:10 dbus-run-session ? but DISPLAY sounds like a problem with scli 18:55:24 scli is a urwid python program, no x11 18:55:50 i think it's signal-cli, which uses java, and dbus just pukes if i don't define DISPLAY 18:56:20 though all the errors say dbus, not java stack 18:57:08 yeah or that, but I don't think dbus cares that much about x11 (but I could be wrong) 18:57:55 in my experience, dbus is ONLY for desktop nonsense 19:00:45 I suggest you don't look at systemd then 19:01:26 is that allowed in this channel? 19:01:34 i moved to freebsd to get away from that crap 21:02:10 hello all of a sudden although my database is working it seems like from command line that it doesn't even exist 21:03:23 what database 21:03:29 mysql database 21:03:43 how do you connect to said database 21:03:52 when did i wander into #mysql 21:04:00 I used to do stuff like call it command line I used to be able to connect by typing mysql -p 21:04:15 it's a freebsd issue though 21:04:19 how so 21:04:25 why is it dissapeared how do I find it? 21:04:31 how do I know it's running? 21:04:32 sounds like you need a .my.cnf 21:04:37 I have that 21:04:41 service mysql-server status 21:04:59 says it does not exist 21:05:19 what version of mysql? 21:05:26 8 something 21:05:30 let me check 21:05:45 sixpiece: What does "pkg info | grep mysql-server" say? 21:05:59 Or just "pkg info | grep mysql" 21:06:08 There might be a version in the package name these days. 21:06:13 I tried that btw it's 8.033 21:06:53 when I do the pkg info | grep mysql I don't get the database though I only get php81-mysqli-8.1.22 and php-pdo_mysql-8.1.22 21:07:02 it's like the database is hidden from myself 21:07:21 So, it got uninstalled while running. 21:07:27 "ooops" 21:07:42 but then how come it is still working? 21:07:54 sixpiece: Because the process is still running. 21:07:55 a file doesn't have to exist to run 21:08:07 sixpiece: "pkg install mysql80-server" 21:08:23 ok thank you I think that would solve it then... 21:08:29 strange how did it erase itself? 21:08:45 I am seeing high interrupt rate: ~59% in top, but can't find how to resolve the issue even though I think it might be related to FreeBSD running as a guest in xcp-ng (xen host) 21:09:39 I'm guessing another package requires (or required) something that was conflicting with mysql-server so it was uninstalled automatically. Pay attention to the messages when reinstalling mysql-server and make sure there are no conflicts. 21:10:38 question: is it a good time to install freebsd 14? 21:11:01 also thank you ek rtprio 21:12:25 sixpiece: Sure thing. FBSD 14.0 seems perfectly stable to me. Been testing it in production for a while now. 21:13:30 did an upgrade and now the linker says that libs are missing that are there 21:13:54 thank you , will try it later going to go to A&W to eat, then the gym then walmart 21:14:13 It's the reason I asked about the mysql version. The upgrade to 14.0 removed mysql 5.7. 21:14:53 like firefox where linker says /usr/local/lib/libgtk-3.so.0 is missing, chromium says /usr/local/lib/libatspi.so.0 is missing 21:15:08 hackerman: did you reinstall your ports? 21:15:37 no 21:15:43 is now suppose to do that 21:15:49 because I compiled a lot of ports 21:16:05 It's part of the upgrade process. 21:16:24 here is vmstat -i: https://pastebin.com/LGHy7ndK, systat -v: https://pastebin.com/tQRCP1vR 21:16:25 Title: systat -v - Pastebin.com 21:17:06 Schamschula, setting LD_LIBRARY_PATH to /usr/local/lib worked 21:17:16 atleast in the terminal 21:18:14 sysctl kern.eventtimer: https://pastebin.com/2e92rPWF 21:18:15 Title: sysctl kern.eventtimer - Pastebin.com 23:28:38 does our openssh not support strict key exchange?