David Buhlman
  • Home
  • About
  • Tags
  • Stack
Sign in Subscribe
Authentik Security, Part Five
Authentik

Authentik Security, Part Five

Configure Authentik Enable LDAPS Authentik has commands at the command line to import certifications, but I'm struggling with it being inside docker. I'm still green when it comes to docker I suppose. Could I instead use a certificate from Authentik itself? Let's give it
Aug 6, 2023 1 min read
Authentik Security, Part Four
Authentik

Authentik Security, Part Four

Configure Authentik Enable LDAPS I've spent some time looking into this today and it appears the issue is that the certificate is set up correctly, but that my desktop does not trust it. It looks like the best practice would be to set upa CA to issue and
Aug 5, 2023 1 min read
Authentik Security, Part Three
Authentik

Authentik Security, Part Three

Configure Authentik So I'd like to connect my lab's Active Directory to Authentik. It would be great to use the accounts already set up there, and I'll need to know that's working first before I connect my other applications right? So this
Aug 4, 2023 3 min read
Authentik Security, Part Two
Authentik

Authentik Security, Part Two

Install Authentik Steps performed on AUTHENTIK-01 * sudo mkdir /apps * sudo mkdir /apps/authentik * sudo wget https://goauthentik.io/docker-compose.yml * sudo apt install pwgen * sudo ech "PG_PASS=$(pwgen -s 40 1)" >> .env That's throwing out errors at me. I'm guessing it&
Aug 3, 2023 1 min read
Authentik Security
Authentik

Authentik Security

So I have a couple of applications up and running now, which means I know have a bunch of different usernames and passwords. It'd be great if I can replace them all and just have one login across these applications. It seems like two big players in the
Aug 2, 2023 2 min read
TubeArchivist, Part Three
TubeArchivist

TubeArchivist, Part Three

Configure TubeArchivist I'm finally able to come back to this and try to figure out why I was getting Error (5) input/output as an error message when mounting a network drive. I tried a number of different suggestions I found online but none of them were able
Mar 28, 2023 3 min read
TubeArchivist, Part Two
TubeArchivist

TubeArchivist, Part Two

Configure TubeArchivist So I want to store the files TubeArchivist downloads on my fileserver. So I'll need to mount a network drive to accommodate the change. Steps performed on DC-02 via Windows Admin Center * Navigate to Active Directory * Navigate to Browse * Navigate to Managed Service Accounts * Click on
Mar 17, 2023 1 min read
TubeArchivist
TubeArchivist

TubeArchivist

I feel like starting a new project today, and this one has been on my list for a while. I struggle with the modern day YouTube. Videos are constantly disappearing from the platform for a number of different reasons. Which honestly sucks having a video you've enjoyed just
Mar 14, 2023 5 min read
Calibre-Web, Part Three
Calibre-Web

Calibre-Web, Part Three

Troubleshooting Well Calibre-Web is really slick looking, but I've run into two problems. The first is a permission disparity between Calibre Content Server and Calibre-Web. Calibre Server is using root while Calibre-Web is using david. I would think it's ultimately a small problem and should be
Feb 28, 2023 1 min read
Upgrade Bookstacks to v23.02
Bookstack

Upgrade Bookstacks to v23.02

So Bookstack has released version 23.02 and it has a breaking change of requiring PHP8. Very similar to Upgrade Monica to v4.0. So the first thing I do is check on what is currently running on BOOKSTACK-01. * php --version PHP 7.4.33 (cli) (built: Nov 8 2022
Feb 28, 2023 3 min read
Calibre-Web, Part Two
Calibre-Web

Calibre-Web, Part Two

So this combination of using Calibre Server as the backend and Calibre-Web as the front end is really nice. Let's work on making this a more permanent solution. Enable Calibre-Web as a Service Steps performed on CALIBRE-01 The example service file in their wiki is as follows: [Unit]
Feb 23, 2023 1 min read
Calibre, Part Three
Calibre

Calibre, Part Three

Install Calibre Server Step 6 - (Optional) Automatically Adding Books to Your Calibre Library Steps performed on CALIBRE-01 * mkdir /home/david/books-to-add * cd books-to-add * wget https://www.gutenberg.org/ebooks/11.epub.images -o alice.epub * crontab -e * */5 * * * * calibredb add /home/sammy/books-to-add/ -r --with-library http://localhost:8080#calibre-library
Feb 22, 2023 1 min read
Calibre-Web
Calibre-Web

Calibre-Web

So while I was trying to find some solutions to all the problems I ran into with Calibre I had come across people mentioning Calibre-Web and how it is a much better GUI and front end to use than Calibre's. Since I ran into some road blocks trying
Feb 22, 2023 1 min read
Calibre, Part Two
Calibre

Calibre, Part Two

Install Calibre Server Step 3 - Running the Calibre Content Server and Viewing Your Library I'm coming back to this from where I left off yesterday. I had installed a couple additional packages that Calibre is supposed to need to run. So in Calibre's official documentation
Feb 22, 2023 4 min read
Calibre
Calibre

Calibre

Over the past few years I have kept hearing how great it can be to run a Calibre server for your personal eBooks. Any time I have looked into it, Calibre's documentation has just never made sense to me as far what I actually need to do. Yesterday
Feb 21, 2023 6 min read
SnipeIT, Part Three
SnipeIT

SnipeIT, Part Three

Document Update Process Well I've had SnipeIT and SNIPE-01 turned off for some time, I just haven't had the man hours to start using the software. I turn it back on today to take a look. I'm assuming there's been an update
Feb 20, 2023 1 min read
PhotoPrism, Part Six
PhotoPrism

PhotoPrism, Part Six

So last night I was playing around in PhotoPrism and re-indexed my images. Half disappeared. Each time I ran an index half would be removed. It turns out the container was no longer writing to the network mount, but to the local disk instead. I'm guessing that happened
Feb 15, 2023 1 min read
FileRun, Part Two
FileRun

FileRun, Part Two

Finally coming back to FileRun after a while. Well, when I try to bring up the webpage it is erroring out. Interesting. The virtual machine is running so let's see if we can SSH in and see what's gone wrong. Steps performed on FILERUN-01 * sudo apt
Feb 14, 2023 2 min read
PhotoPrism, Part Five
PhotoPrism

PhotoPrism, Part Five

I noticed today that PhotoPrism has pushed out a number of updates, but it appears that the Watchtower service does not actually upgrade it right now. I went through PhotoPrism's documentation and found the steps needed to complete an update. It's pretty straight forward: * cd photoprism
Feb 8, 2023 1 min read
Upgrade Monica to v4.0
Monica

Upgrade Monica to v4.0

So the Monica CRM Team has put out a major release update, version 4.0. This has a breaking change that requires a newer version of PHP, PHP8.1. What version of PHP do I have on MONICA-01? * php --version * PHP 7.4.30 (cli) * sudo apt update * sudo apt
Feb 8, 2023 3 min read
Paperless-NGX, ERRNO 28 No Space Left on Device
Paperless-NGX

Paperless-NGX, ERRNO 28 No Space Left on Device

While upload some documents to Paperless-NGX it gave me the above error message. My initial investigation shows the operating system is not out of space, but the underlying container is showing 99% usage. * lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL NAME FSTYPE SIZE MOUNTPOINT LABEL loop0 squashfs 63.2M /snap/
Jan 30, 2023 5 min read
Network Mounts Randomly Dropping, Part Two
cifs

Network Mounts Randomly Dropping, Part Two

When I woke up this morning and saw this problem still open on my desktop I decided to go back an re-edit /etc/sudoers and rewrote the line from yesterday at the bottom of the file and then removed the copy I had placed in the middle yesterday. Then I
Jan 11, 2023 1 min read
Build Domain Controller DC-03, Part Four
Backups

Build Domain Controller DC-03, Part Four

This project got away from me through the holidays. I've had DC-01 powered off for the last month so I'm pretty sure it is more than safe to decommission it completely and finish this project. Configure DHCP Failover Between DC-03 and DC-02 * On DC-03 I open
Jan 11, 2023 1 min read
Network Mounts Randomly Dropping
cifs-utils

Network Mounts Randomly Dropping

So I have noticed a few times where my CIFS mounts on my linux servers crash whenever my fileserver reboots. It's a shame they don't detect when the connection drops and then try to re-establish it. Then again my fileserver does not reboot very frequently, pretty
Jan 10, 2023 2 min read
FileRun
FileRun

FileRun

So PhotoPrism is pretty darn cool! It looks great and has some advanced features that are fantastic, but it lacks user management for me to really share my photos with others. I came across FileRun for sharing files and a few people mentioned they use it to share photos. Well
Jan 3, 2023 3 min read
← Newer Posts Page 3 of 6 Older Posts →
David Buhlman © 2025
  • Sign up
Powered by Ghost