Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

171 total results found

Install Limesurvey on Docker Compose

Limesurvey

  version: '3' services: limesurveydb: image: mariadb container_name: limesurveydb restart: always volumes: - /your/own/mounted/location:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=Apassword - MYSQL_PASS...

Install n8n on Docker Compose

n8n Work Flow software | Self Hosted

networks: ai1: x-n8n: &service-n8n image: n8nio/n8n:latest networks: ['ai1'] environment: - DB_TYPE=postgresdb - DB_POSTGRESDB_HOST=face - DB_POSTGRESDB_USER=${POSTGRES_USER} #use .env file for user - DB_POSTGRESDB_PASSWO...

Windows Outlook freezing

Troubleshooting

Issue: Outlook will freeze randomly.  Its different for different people/computers.    Some will freeze when they click on an email,    Others when they just click onto the app/window Solution 1: Restart the computer. Not shutdown. Do a reboot/restart.  ...

Install Docker on Windows local machines

Docker on Windows

From what I can tell, Docker and PowerShell runs together to get Docker containers running.  Step 1 First up is to make sure that virtualization is enabled in the bios. Do that now.  ...I'm waiting... install WSL (Windows Subsystem for Linux) Documentatio...

Run Container in Docker / Docker Compose

Docker on Windows

If you haven't already, you will need to have Docker Desktop an WSL installed. PowerShell and Docker will run side by side. Run your Docker container using Docker Compose. have Docker up and running. Also, pull up PowerShell.  In PowerShell, navigate to whe...

Upload failed request entity too large - Troubleshooting Nextcloud

Nextcloud Troubleshooting Nextcloud

"Upload failed request entity too large" If you have a proxy, go into the config file and change the "client_max_body_size" line. If that line isn't there,  add it under the http section. user www-data; worker_processes auto; pid /run/nginx.pid; include /...

Docker Container keeps restarting - Troubleshooting Nextcloud

Nextcloud Troubleshooting Nextcloud

This case, it was already working. Ended up pulling a new image but didnt know it.  First, check docker logs. Run the container and let it keep restarting so that it will give you an error log.  docker logs <nextcloud_container_name> Error said:Initializing...

Error message : Update needed

Nextcloud Troubleshooting Nextcloud

Error message;  (when loading nextcloud frontend) Update neededPlease use the command line updater because updating via browser is disabled in your config.php. After updating Nextcloud to new version, it gave me that error message.  Basically,...

Formatting a drive in linux

Hardware

To partition and format your drive in Linux Open the parted utility and then you will work inside (parted) that.   To partition and format your drive in Linux after zeroing, follow these steps. Replace `sdX` with your drive’s identifier (check with `lsblk`)....

Zero a hard drive in Linux

Hardware

You might want to check the drive to see if it is still good in the first place. Go here first: Check hard drive for bad sectors Unmount the drive: (if you haven't already) sudo umount /dev/sdX* Check with lsblk to confirm unmounting Write zeros ...

Check hard drive for bad sectors in Linux

Hardware

Check for bad sectors with status sudo badblocks -v -s /dev/sdX -v: Verbose output, lists bad sectors. -s: Shows progress as a percentage of completion. For a non-destructive test, use -n instead: sudo badblocks -n -v /dev/sdX. To sa...