Skip to main content
52
results
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...
Andrew Fletcher
Supervisor running as root error when running the command sudo service supervisor statusResponse error 892 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.Check the supervisord.conf file in the directory cd /etc/supervisor/The file contents for me was ; supervisor config file [unix_http_server] file=/var/run/supervisor.sock ; (the...
Andrew Fletcher
Listen in on the ports being used on your server.  To do so, run the...
Andrew Fletcher
Error with Nginx When running an Nginx test, the following response was being...
Andrew Fletcher
The following the CKAN source install docs from start to finish including solr....
Andrew Fletcher
Initialise your Capacitor config​ To initialise Capacitor use the CLI...
Andrew Fletcher
Run the NPX commands to update the app npm run build && npx cap syncRun app with live reload ionic cap run {platform} -l --externalReplace {platform} with Android or iOS depending on your environment as follows Android android iOS ios To open in Android ionic cap run android -l --externalYou'll be prompted to select a emulator (depending what you have loaded) ? Which device would you like to target? Pixel 3 API 31 (emulator) (Pixel_3_API_31) Pixel 5 API 27 (emulator)...
Andrew Fletcher
Goal: Restrict content access through username and password entry. 1: Apache...
Andrew Fletcher
Approaches to resolving “Module not specified” Error in Android Studio When...
Andrew Fletcher
Working in Android Studio when attempting to run a project I had the following...
Andrew Fletcher
Working through a CKAN installation on Ubuntu 20.04 User sees a server 500...