Update Prepping FerretDB for use with Canopy

rainbow napkin 2024-12-07 19:06:57 +00:00
parent 3186145782
commit 8a5a8d7f19

@ -1,6 +1,7 @@
--- ---
title: Prepping FerretDB for use with Canopy title: Prepping FerretDB for use with Canopy
--- ---
## Step-by-step procedure for prepping FerretDB for use with Canopy: ## Step-by-step procedure for prepping FerretDB for use with Canopy:
<sup>FerretDB is a FLOSS replacement for MongoDB. If you're not hell bent on using software with a hard FLOSS license like me, you're probably better off [using the original](mongodb-debian)<sup><br> <sup>FerretDB is a FLOSS replacement for MongoDB. If you're not hell bent on using software with a hard FLOSS license like me, you're probably better off [using the original](mongodb-debian)<sup><br>
@ -17,3 +18,9 @@ title: Prepping FerretDB for use with Canopy
2. Install FerretDB from the downloaded .deb file `ferretdb-linux-amd64.deb` 2. Install FerretDB from the downloaded .deb file `ferretdb-linux-amd64.deb`
### Postgresql Configuration
1. Use super-cow powers to enter a postgres shell `sudo -i -u postgres`
2. Enter the postgresql shell `psql`
3. Ensure the administrative account is locked-out (should be by default, but just in-case) `ALTER USER postgres WITH NOLOGIN;`
4.