#Nextcloud + MariaDB problem

655 messages · Page 1 of 1 (latest)

lone swan
#

I`m trying to install the official Nextcloud app alongside a MariaDB docker instance sourced by the LinuxServer repository.
Both installation worked fine, and I have set username, password and database in the MariaDB setting inside CasaOS.

When I try to launch nextcloud and I insert the relative MariaDB data, I got an error about contacting the database.
I noticed the username automatically append an ip adress which is unknown to me and I think this could be the problem.
Does someone have something to suggest?

Here is the error I got.

Error while trying to create admin user: Failed to connect to the database: An exception occurred in the driver: SQLSTATE[HY000] [1045] Access denied for user 'kir'@'172.20.0.1' (using password: YES)

upbeat mica
# lone swan I`m trying to install the official Nextcloud app alongside a MariaDB docker inst...

Made a video that walks you through all the steps: https://youtu.be/V2D9y4Qj6a8

Welcome to a comprehensive guide on setting up MariaDB to serve as the robust database for your Nextcloud installation. Join me as we navigate through each step, ensuring a smooth and hassle-free process.

📖 Chapters:
00:00 - Introduction
00:39 Explain MariaDB Docker Compose
02:40 Install MariaDB
04:28 Explain Nextcloud Docker Compose
06:05 Inst...

▶ Play video
royal geyser
#

After watching this video again, if I use the pre-existing mariadb and nextcloud apps, there's less control over the environment?

#

Meaning if I just blanket download them from the store?

royal geyser
#

Getting closer. Don't know how to change it like you said to

royal geyser
upbeat mica
upbeat mica
# royal geyser

You didn't create the mount point: ```sudo mkdir -p /mnt/mmcblk0p2

royal geyser
#

Mmcblk0p2 is the main storage. The external storage has a different name. Do I still run this script?

#

My goal is to ensure mariadb and nextcloud run out of the external SSD in the pcie slot

#

Here's a little more context

upbeat mica
#

You should see something like /dev/sdx1 for your hard drive

#

Create the mount: sudo mkdir -p /mnt/external_ssd sudo mount /dev/sdx1 /mnt/external_ssd

royal geyser
upbeat mica
#

Make the mount permanent: echo "/dev/sdx1 /mnt/external_ssd ext4 defaults 0 0" | sudo tee -a /etc/fstab

#

So /dev/sdx1 would be /mnt/sabrent

#

You can mount it on the /data directory. You would need to copy all your volumes and then mount this hard drive then move everything back.

royal geyser
#

Why moving it back and forth?

fleet wigeonBOT
#

GG @royal geyser, you just advanced to level 3!

upbeat mica
royal geyser
#

Ohhhhhh move it out before I make it permanent?

#

Then move it back after changes have been made?

upbeat mica
#

Yes you will need to copy to another directory just for a backup before moving it back to /DATA

royal geyser
#

So follow the steps so far?

upbeat mica
#

Copy the data out of /DATA then mount the hard drive to /DATA then once you get the hard drive mounted to /DATA copy everything back into /DATA then once you figure out if everything is right then delete the backup.

royal geyser
#

You're talking about /DATA on the main os drive, not the SSD right?

#

/Root/DATA

upbeat mica
#

I'm talking about mounting the sabrent to the /DATA directory so you can put all the AppData on the external.

#

I thought that was the goal?

royal geyser
#

Ahhhhh I think I understand now

#

Yes

#

Please forgive me. I'm learning as I go

upbeat mica
royal geyser
#

When I copy this, do I use terminal or just copy and paste in the GUI?

upbeat mica
#

Terminal

royal geyser
#

Kk

upbeat mica
#

You can use rsync

royal geyser
#

I've never copied by using terminal. I'll look it up

upbeat mica
#

sudo rsync -av /DATA [CHANGE-to-tmp-dir]

royal geyser
#

I'm assuming I have to install rsync or is that part of the OS?

#

Unsure if rsync is a program or just a command

#

You're probably ripping your hair out rn lol

upbeat mica
#

sudo cp -a /DATA [CHANGE-to-tmp-dir]

royal geyser
#

Kk going to execute it

upbeat mica
#

I'm going to also need to hit the hay soon it's been a long work day.

royal geyser
#

Lmao well I'll need to tip you for this

#

Ok I'll work quickly

upbeat mica
#

Make sure you cp the /DATA and don't lose anything if things are important in there.

royal geyser
#

Is [change-to-tmp-dir] the actually syntax or do I need to replace it with folders in my OS?

upbeat mica
#

Check if the directories are identical before deleting backup ```sudo diff -r /data [dir]

upbeat mica
#

Anything with [] is a place holder

royal geyser
#

Mind you this is the zimaboard oob

#

Don't know if you're familiar with the structure

upbeat mica
#

You need to change the [dir] to where ever you put the backup?

royal geyser
#

Oh shit okay.

upbeat mica
#

[dir] is just a place holder

#

I'm not on your system so I don't know where your going to put things.

upbeat mica
royal geyser
#

Yeah, I'm trying to figure that out myself

#

Documents maybe?

upbeat mica
royal geyser
#

Oh no wait

#

Ok

#

Documents is in DATA....

#

Lol

#

An external?

upbeat mica
#

Oh this is how you install rsync sudo apt update sudo apt install rsync

royal geyser
#

Running it now

upbeat mica
#

Or on your external

#

/mnt/sabrent/temp_data_backup/data

#

If you think the external is stable.

royal geyser
#

Yessss backup to root

#

I was going to ask if possible

upbeat mica
#

You could also put it in /opt/data-backup

royal geyser
#

That's a good option too. I'm starting to understand

upbeat mica
royal geyser
#

Kk, I'm still learning the syntax but I know know this is wrong

fleet wigeonBOT
#

GG @royal geyser, you just advanced to level 4!

royal geyser
upbeat mica
#

sudo cp -a /DATA /opt/data-backup

royal geyser
#

Running

#

I think zimaboard locked this down pretty hard

upbeat mica
#

sudo cp -a /DATA /home/casaos/data-backup

royal geyser
#

Ok, this is getting a little crazy

#

Ok, well I don't want to keep you. Can pick this up tomorrow or something.

#

I'll pay you as well

upbeat mica
#

Run df -h

royal geyser
upbeat mica
#

Run cat /etc/fstab

upbeat mica
royal geyser
#

It's just the stock zimaboard.

#

Makes me wonder how people customize this then

#

I wonder if it cause it's supposed to be docker driven?

upbeat mica
#

Run ```mount | grep mmcblk0p2

#

My zimaboard is not read-only

royal geyser
#

Done

#

But why is yours rw and mine is only read???? That's odd

#

Again it's oob. Unsure

upbeat mica
#

You should of got /dev/mmcblk0p2 on / type ext4 (rw,relatime,errors=remount-ro)

royal geyser
#

How do I check it?

#

There was no output

upbeat mica
#

Since it's not mounted you could run ```sudo fsck /dev/mmcblk0p2

#

It's going to check filesystem for errors

royal geyser
#

Fk it, I'll reimage it. I haven't placed any sensitive data on it.

#

It won't brick it though right?

upbeat mica
#

You could try a reboot sudo reboot

royal geyser
#

Wtf zimaboard??? This is oob. 🤦

#

I can reboot it

#

There is an fsck when I reboot sometimes.

#

Rebooting

upbeat mica
royal geyser
#

Kk

#

It's starting back up

#

Here it is

#

This is what I get on startup so I run fsck on it as it instructs to fix the errors

#

Running it now

#

Ahhhhhh

upbeat mica
#

Ya run fsck

royal geyser
upbeat mica
#

Awesome

upbeat mica
royal geyser
#

So it's rw?

#

Wait

upbeat mica
#

Yes

#

Run ```dmesg | grep mmcblk0p2

royal geyser
upbeat mica
#

All good mounted filsystem successfully

royal geyser
#

Do I need to run the same on the ssd?

#

I couldn't write to it either

upbeat mica
royal geyser
upbeat mica
#

Looks good

#

Try sudo mkdir /mnt/sabrent/test

royal geyser
#

Ah I see it there

#

dmesg | grep sabrent ????

upbeat mica
#

Yep now you can mount the sabrent to /DATA

royal geyser
#

Ahhhhh

#

Ok

#

sudo cp -a /DATA [CHANGE-to-tmp-dir]

#

This one 👆?

upbeat mica
royal geyser
#

Kk

#

It's working

#

Done

fleet wigeonBOT
#

GG @royal geyser, you just advanced to level 5!

royal geyser
#

Do I mount the sabrent to data now?

upbeat mica
#

If you have a back of /DATA clear data out sudo rm /DATA/*

royal geyser
#

Done

upbeat mica
#

Then mount the drive ```sudo mount /mnt/sabrent /DATA

royal geyser
#

So....

upbeat mica
#

You spelled sabrent wrong

royal geyser
#

Ah misspelling

#

Sorry

#

I got this earlier. Didn't know what it meant

upbeat mica
#

Run ```sudo fdisk -l

royal geyser
upbeat mica
#

Run ```sudo lsblk

royal geyser
upbeat mica
#

copy that name into the chat

fleet wigeonBOT
#

GG @upbeat mica, you just advanced to level 18!

royal geyser
#

nvme0n1

#

That's the sabrent

#

It was asked to be renamed when I added it as storage to the OS

upbeat mica
#

sudo umount /mnt/sabrent

royal geyser
#

Ohhhh

#

Whoops

upbeat mica
#

sudo umount /mnt/sabrent

#

Sorry getting tired

royal geyser
#

Says it's not mounted

#

No worries. We can call it a night

upbeat mica
#

No unmount it

royal geyser
#

Sorry for the troubles

#

Kk

upbeat mica
#

run ```sudo lsblk

royal geyser
upbeat mica
#

Good to go

royal geyser
#

No way

upbeat mica
#

sudo mount /dev/nvme0n1 /DATA

royal geyser
#

Running

#

I gotta wake up at 4:45 lol. I hear you on being tired. I'm fixing to pass out too.

upbeat mica
#

Run docker ps

royal geyser
#

Kk

upbeat mica
#

Something is using /DATA directory

#

Shutdown all containers

royal geyser
#

Kk

#

They're shut down

upbeat mica
#

Run sudo mount /dev/nvme0n1 /DATA

royal geyser
#

Lol it gets worse ugh.... Ok man. I can't keep you any longer. You're in the south like me and I'm sure you gotta get up early.

upbeat mica
#

Run ```sudo mount -t ext4 /dev/nvme0n1 /DATA

royal geyser
#

Kk

upbeat mica
#

Run ```sudo lsblk -f

royal geyser
upbeat mica
#

Is there anything on the external that's important?

royal geyser
#

Nope

upbeat mica
#

Might to to refomatted the drive.

royal geyser
#

I can format it

upbeat mica
#

Shoot

#

sudo mount -t ext4 /dev/nvme0n1p1 /DATA

#

Not the right one

#

Run sudo mount -t ext4 /dev/nvme0n1p1 /DATA

royal geyser
upbeat mica
#

Cool it's mounted now more steps

royal geyser
#

Running

upbeat mica
#

Run cat /etc/fstab

royal geyser
upbeat mica
#

Run sudo cp -a /opt/data-backup /DATA

royal geyser
#

Done

#

No output

upbeat mica
#

Run ```df -h | grep /DATA

#

No output is good

royal geyser
upbeat mica
#

Good to go start your containers

royal geyser
#

I'm learning that lol. So different to what I'm used to

#

Kk

#

Won't let me start them

#

I may need to reinstall them

upbeat mica
#

What's the error?

royal geyser
upbeat mica
#

Run ls -lsa /DATA

royal geyser
upbeat mica
#

You have the host path on the containers wrong.

royal geyser
#

Yup!!!

#

Hold on

#

They're the former settings

upbeat mica
#

Change /mnt/sabrent to /DATA/AppData

royal geyser
#

Same with the next cloud container?

upbeat mica
#

No leave the other parts

#

/DATA/AppData/mariadb/config

royal geyser
#

Ah okay

upbeat mica
#

Only change the /mnt/sabrent to /DATA/AppData everything beyond stays.

royal geyser
fleet wigeonBOT
#

GG @royal geyser, you just advanced to level 6!

royal geyser
#

Gotchaaaaa

upbeat mica
#

Do that with the other containers.

royal geyser
#

They're on now

upbeat mica
#

Awesome

#

It's done

royal geyser
#

Booya!!!

#

Wish me luck

#

Man, thank you ever so much. Do you have a tip site?

upbeat mica
#

LOL well I'm headed to bed. You can look at my video for those instructions 🙂

royal geyser
#

Yes sir!

#

Much appreciated.

upbeat mica
upbeat mica
royal geyser
#

I'll grab at this in the morning first thing!

#

You too!

royal geyser
#

My man. No go.

#

I'm about to hope on and give you a tip but I think maybe I need to contact zimaboard?

#

Hop*

upbeat mica
#

Run ls -lsa /DATA/AppData

#

What's the Nextcloud > Vertical Dots > Settings. Take a screenshot of the volumes

royal geyser
#

Oh shit you're on

#

Ok back on it

upbeat mica
#

Your path is /DATA/AppData/nextcloud try that

royal geyser
upbeat mica
#

Run ```sudo chown -R casaos:casaos /DATA/AppData/nextcloud
sudo chmod -R 755 /DATA/AppData/nextcloud

royal geyser
#

Running

upbeat mica
#

After that run ls -lsa /DATA/AppData

royal geyser
upbeat mica
#

Change Data folder to /var/www/html/data you're in the container running this install. The container doesn't know anything about the host path.

royal geyser
#

Ah okay

#

Trying it now. I thought i tried that last night

upbeat mica
#

I was confused with why it wanted /DATA instead of the container path.

royal geyser
#

Well I was referencing your video

upbeat mica
royal geyser
#

That's right. This is why I tried the other paths

upbeat mica
#

docker ps

royal geyser
upbeat mica
#

I had /data in my video

royal geyser
#

That's why I tried data after receiving the error that mariadb was missing

upbeat mica
#

docker logs [container-id]

royal geyser
#

The container I'd is the docker image name right?

upbeat mica
royal geyser
#

Ah okay

upbeat mica
#

sudo docker logs mariadb

royal geyser
#

Woah this spit out a lot on the last one

upbeat mica
#

Any errors

royal geyser
upbeat mica
#

Can you show me what you're typing in the nextcloud setup for db creds?

royal geyser
#

Ohhhhhhh

upbeat mica
#

does is align with the environment variables

royal geyser
#

I'm tying in the wrong creds then

#

When I downloaded mariadb it gave me a set of creds

upbeat mica
#

Did you use those?

royal geyser
#

I thought i tried that last night as well but let me check

upbeat mica
#

Host is your casaos ip

royal geyser
#

I did try that last night as well

#

Same error

upbeat mica
#

Is that the casaos ip? and the port in the environment variables?

royal geyser
#

That one right?

#

Do I need to if config?

upbeat mica
#

Try port 3306 with the ip 192.168.65.166:3306

royal geyser
#

Kk

#

Oh geez

#

With the 3306 port number

#

Maybe I should just Uninstall it all, and reinstall it with your big bear setup

#

There's no way anyone else with a zimaboard had this much work for nextcloud

#

Even if they're a noob like me

upbeat mica
#

MariaDB is mounted as a read-only file system. you need to remove the mariadb and reinstall it.

#

You created the containers when you had a read only file system right?

royal geyser
#

Yeah at the time

#

This was before I new it was read only

upbeat mica
#

Delete them both and start from scratch on the new file system.

royal geyser
#

I don't know how it comes oob with a read only OS

#

Will do

upbeat mica
#

You had errors on the filesystem.

royal geyser
#

Maybe use your setup instead?

upbeat mica
#

Either you plugged it in and didn't shut it down properly or something happen.

royal geyser
#

Should I restart first before I go through the Uninstall phase?

upbeat mica
#

You can't just unplug a server or anything like that it could corrupt the file system.

royal geyser
#

Never have

upbeat mica
#

Not say you did just saying what could of caused it.

#

There's all different types of reasons.

royal geyser
#

I work on Microsoft servers so I'm pretty familiar with how funky servers can be. I'm just new to Linux.

upbeat mica
#

Registries suck

#

Especially when you're editing one

royal geyser
#

They do. I want our of the Microsoft world but the architecture is so different that I'm trying to wrap my brain around how it all comes together

upbeat mica
#

Linux is all files without a registry.

royal geyser
#

Out*

upbeat mica
#

Are you restarting?

royal geyser
#

Yep!

#

Do you work for IceWhale?

upbeat mica
#

No

#

I'm volunteer

royal geyser
#

Damn, they could use you

#

Well you're getting tipped for sure. This is extensive work. A little extra since you're a southerner lol

upbeat mica
#

I'm busy allot I build 13 apps and manage server networks.

royal geyser
#

Texas, Houston

upbeat mica
royal geyser
#

Nice!

#

I've always wanted to go there

#

I hear it's beautiful

upbeat mica
royal geyser
#

Originally from Chicago but leaving the Yankee states behind. I love country folk

upbeat mica
#

Gatlinburg and pigeon forge is awesome.

royal geyser
#

Good to know. My wife and I want to take a trip there

upbeat mica
royal geyser
#

I married into a southern family

#

Yup. That's why I moved

#

Couldn't take it anymore. Houston is trying to develop like it but they're getting strong push back against the citizens

#

I think we're on the same page about a lot the

#

Then

#

Okay it's back up

#

I'll Uninstall now. Should I delete the user data?

upbeat mica
#

Ok remove the containers and reinstall things.

royal geyser
#

It's asking

upbeat mica
#

Also delete the volume in the files app just to start from scratch.

royal geyser
#

Kk

#

Give me a minute

upbeat mica
#

rm -rf /DATA/AppData/nextcloud

#

rm -rf /DATA/AppData/mariadb

royal geyser
#

Oh damn I'm doing it from the gui

upbeat mica
#

Either way is fine

royal geyser
#

Kk

#

They're working

#

They're were uninstalling but they just stayed there

fleet wigeonBOT
#

GG @royal geyser, you just advanced to level 7!

royal geyser
#

I'll run it from terminal

upbeat mica
#

you clicked on uninstall on each?

royal geyser
#

Yup!

#

They're still there wtf

upbeat mica
#

docker stop mariadb docker stop nextcloud

royal geyser
#

Kk

upbeat mica
#

docker rm mariadb docker rm nextcloud

#

You need sudo on each

royal geyser
#

It's working on stopping nextcloud

#

Ahhhh okay

#

Ok done

#

Now I'll use the remove commands

upbeat mica
#

docker ps

royal geyser
#

Kk

upbeat mica
#

Oh ya run rm

#

I thought you already done that

royal geyser
#

Yeah I did. Then it should be good?

upbeat mica
#

docker rm mariadb docker rm nextcloud

#

docker containers are still there

royal geyser
#

Fk

upbeat mica
#

Run ```sudo systemctl restart docker

#

Try to remove again sudo docker rm mariadb sudo docker rm nextcloud

royal geyser
#

Kk

#

At the top it said "failed to reload apps, refresh later"

#

Should I reimage this thing? Lolol

upbeat mica
#

sudo systemctl status docker.service

royal geyser
upbeat mica
#

Run ```sudo systemctl stop docker

royal geyser
upbeat mica
#

Run ```sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd

royal geyser
#

It was goofing on me. Bear with me. Running those commands now

upbeat mica
#

We need to uninstall docker now something is weird.

royal geyser
upbeat mica
#

Run sudo apt-get update

royal geyser
#

Btw, this is the image from the zimaboard os download

#

From their page

#

I used the 832 image since I have an 832

#

Just fyi

upbeat mica
#

You can do that it seems like the file system is corrupt.

royal geyser
#

Well, maybe the image is corrupt then. Let me grab a fresh image and setup a new USB for this

#

I'll be back. Sorry for the hassle

upbeat mica
royal geyser
#

Lmaooooo

#

Just my luck

#

Our a scholar and a gentleman

upbeat mica
#

Normally you can get it out of read only unless the hard drive is going bad.

#

SSD go to ready only when time of life expired.

royal geyser
#

I mean that could be the case. It's still under warranty

#

For the next 2.5 years

upbeat mica
#

Try to reflash first

royal geyser
#

Kk

#

Bear with me. I'll be back

#

Woah, this is the iso I grabbed from the zimaboard site

#

Does it need a partition table?

#

a particular partition table*

upbeat mica
#

Did you follow the article

#

Start with a frsh usb

royal geyser
#

ohhhh

#

yeah it's not fresh. It's rewritten over

#

I just can't win

#

I think that was the last fresh USB I had. I could format it and try again

#

Okay, tip sent and signed up for your monthly program.

#

time to flash this thing

upbeat mica
#

Did it work?

#

I had to eat lunch

royal geyser
#

It's booting back up currently.

#

it's about to drop me into the OS

upbeat mica
#

Thank you for the tip really appreciate it. 🙂

royal geyser
#

It's well earned

#

Can't wait to see your other content

#

I'm updating the OS

upbeat mica
#

Content comes out daily but you can request early access to one video each month.

royal geyser
#

Noise!

upbeat mica
#

I try to do it daily

#

You can join the BigBearCommunity if you would like.

#

That's whee I post the upcoming vids.

#

Did you get to the OS?

royal geyser
#

Yup

#

It just finished updating

#

Is there something I can run to check if the OS is in read-write or read-only mode? and if there are any issues?

upbeat mica
#

Run mount or with sudo

royal geyser
#

Oh I may need to restart. I forgot to pop the nvme back into the pcie slot

upbeat mica
#

Looks good

#

Try to run sudo apt update

royal geyser
#

Kk, let me get the nvme in there

#

Ok I'll update first

#

I updated the OS through the gui btw

upbeat mica
#

Make sure the the system is not in read-only

royal geyser
#

How do I check that again?

upbeat mica
#

sudo apt update

#

Should just update

royal geyser
#

I'm going to run a full upgrade

upbeat mica
#

Looks good 🙂

royal geyser
#

Sudo apt full-upgrade

#

It wasn't doing this before and now everything is going through

upbeat mica
royal geyser
#

Almost done

upbeat mica
#

Cool it's working and it's alive

royal geyser
#

Yeah it definitely was getting a lot of error before. I think the image I download previous wasn't good.

upbeat mica
royal geyser
#

Still upgrading

#

Kk

upbeat mica
#

will take a bit to do a full upgrade

royal geyser
#

Ah okay

upbeat mica
#

Still going?

royal geyser
#

Just came up

upbeat mica
#

Go with default

royal geyser
#

Kk

#

It's continuing

#

Damn it's taking awhile

upbeat mica
royal geyser
#

75%

#

Next task is getting this up and running

#

Btw it's still at 75%

upbeat mica
#

What's it look like?

#

Any errors?

royal geyser
#

What should I select?

#

Default?

upbeat mica
#

Yes

royal geyser
#

Just finished

upbeat mica
#

Good

#

You will need to mount your hard drive now.

royal geyser
#

Kk, let me power down and restart

upbeat mica
#

Run ```sudo fdisk -l

royal geyser
#

It's powering back up

#

Back up

fleet wigeonBOT
#

GG @royal geyser, you just advanced to level 8!

upbeat mica
#

Run ```sudo fdisk -l

royal geyser
upbeat mica
#

Run ```sudo lsblk -f

royal geyser
upbeat mica
#

Run sudo mount -t ext4 /dev/nvme0n1p1 /DATA

royal geyser
#

Done

#

No output

upbeat mica
#

Run ```df -h

royal geyser
upbeat mica
#

Good

#

Run ```echo '/dev/nvme0n1p1 /DATA ext4 defaults 0 0' | sudo tee -a /etc/fstab

royal geyser
#

Sudo first?

upbeat mica
#

no

#

Done?

royal geyser
#

Sorry I was slow to type that one

upbeat mica
#

Run cat /etc/fstab

upbeat mica
royal geyser
upbeat mica
#

Run ```sudo mount -a

royal geyser
#

Done no output

upbeat mica
#

Good to go

#

Now install nextcloud and mariadb

royal geyser
#

Should I run your setup or go with what I was doing before?

upbeat mica
#

Well the video walks you through a working install. either one is fine

royal geyser
#

If I go through yours, I'll have to follow the video.

#

I'll just try it normally and see what happens

#

Mariadb installing

upbeat mica
#

Check the logs up top

royal geyser
upbeat mica
#

Install nextcloud

royal geyser
#

With the host location, /DATA goes into the nvme now right?

#

That was the default location it popped up with but since we mounted the nvme, it goes into the nvme?

upbeat mica
#

/var/www/html/data

#

You add this install the ui install

#

Are you on the install yet?

royal geyser
#

/DATA/AppData/ is the location on the setup page

upbeat mica
#

show me

royal geyser
upbeat mica
#

That's fine

royal geyser
#

Kk

upbeat mica
#

Open nextcloud

royal geyser
#

Kk

upbeat mica
#

Good?

royal geyser
upbeat mica
# royal geyser

Remove the /var/www/html/data at the end of the volume on host

royal geyser
#

Kk

upbeat mica
#

You didn't need to change the settings.

royal geyser
#

I didnt

#

I just let it as is

upbeat mica
#

Remove the / at the end

royal geyser
upbeat mica
royal geyser
#

Done

upbeat mica
#

Good Save and open up nextcloud

royal geyser
#

Kk

#

Alright plugging in info

upbeat mica
#

show me the page of the info before

#

submitting

royal geyser
#

Kk

upbeat mica
#

10081 needs to be 3306

royal geyser
upbeat mica
#

Press install

royal geyser
#

Installing

#

Mthrf*****

#

I'm going to document this process. Holy hell

upbeat mica
#

Good to go

royal geyser
#

You're a miracle work of tech

#

Sir, this was crazy. This all spawned when I tried to update nextcloud when I had sqllite installed

upbeat mica
#

Do it everyday!

royal geyser
#

It wouldn't install and then it snowballed from there

upbeat mica
#

Just glad you got it up and running

royal geyser
#

It said I needed mariadb or one of the bigger databases

#

Yeah me too

#

Alright. Let's see if I can get it together

upbeat mica
#

It’s always good to go with a real db SQLite is just for testing normally

royal geyser
#

Yeah I didn't know that

#

Lol

#

A lot of features was working on sqllite

#

Not*

upbeat mica
#

Everything’s works right when the filesystem is not read only lol

royal geyser
#

Hahahahahaha

#

True

#

Damn corrupt OS

#

You da man!

upbeat mica
#

You’re welcome!

royal geyser
#

Alright man. Well, don't be a stranger

upbeat mica
#

Look at more of my videos I will teach you more of how docker works etc in the vids

royal geyser
#

Sounds good. You bet I'll be on those

upbeat mica
#

Don’t forget to join BigBearCommunity

royal geyser
#

In discord?

upbeat mica
#

Yes

royal geyser
#

Dm me the link

upbeat mica
#

Done

royal geyser
#

Going in now!

upbeat mica
#

CasaOs is awesome but I don’t post upcoming videos on here 🙂