Skip to main content
40
results
Andrew Fletcher
Logging into the server, and there are packages to be updated.  You know the standard Ubuntu / Linux response 5 updates can be applied immediately. To see these additional updates run: apt list --upgradable 3 additional security updates can be applied with ESM Apps. Learn more about enabling ESM Apps service at https://ubuntu.com/esmFollowed by the action sudo apt update && sudo apt upgrade -y Response Reading package lists... Done E: Could not get lock...
Andrew Fletcher
Update Ubuntu 20.04 To begin update the server using the command sudo apt update...
Andrew Fletcher
  Install the CKAN package Begin by cleaning up your server environment....
Andrew Fletcher
If you're planning to create extensions, generating CKAN from source is the...
Andrew Fletcher
Goal: Restrict content access through username and password entry on an Nginx...
Andrew Fletcher
At first, I attempted echo 1 > /proc/sys/vm/drop_cachesResponse -bash: /proc/sys/vm/drop_caches: Permission deniedAdding sudo in front of the command was met with the same result.  What about if I execute the shell as root sudo sh -c 'echo 1 > /proc/sys/vm/drop_caches'Success.  Caches cleared.   Different types of clearing cache   Clear PageCache only sudo sh -c 'echo 1 > /proc/sys/vm/drop_caches'Clear dentries and inodes sudo sh -c 'echo 2 >...
Andrew Fletcher
Error when running ckan.ini init from flask_debugtoolbar import...
Andrew Fletcher
My goal was to install a requirements.txt file using pip.  First,...
Andrew Fletcher
In this article I'll walk through the steps I went through to install Solr on...
Andrew Fletcher
Looking to install Solr on your server?  Not sure if it worth the...
Andrew Fletcher
An approach to generating a backup server is using a shell script.  A script can define directories to backup, and pass those directories as arguments to the tar utility, which creates an archive file. The archive file can then be moved or copied to another location.   Example Shell Script #!/bin/bash # # Backup script # # NAME: daily-backup.sh # PATH: /mnt/e/bin # DESC: Backup scripts, documents and configuration files to .tar # # What to backup # backup_files="/home...
Andrew Fletcher
Finding the issue with a server 500 error The Nginx error logs are showing too...
Andrew Fletcher
Focusing on the ckan.ini file (/etc/ckan/default/ckan.ini).  When I run the...
Andrew Fletcher
Following the instructions on CKAN DataStore with a little...
Andrew Fletcher
Supervisor running as root error when running the command sudo service...