Advanced Search
Search Results
161 total results found
Kiwiplan - ESP Crystal Reports Standards and Help Hints
Customised Reports: In order to make sure that customised reports, and the SQL views or stored procedures behind them, do not get overwritten during ESP upgrades the following points should be observed: A site specific reports directory should be set up an...
RedHat - Install a Kubernetes Cluster on RHEL 9.x | Rocky 9.x: A Step-by-Step Guide
https://infotechys.com/install-a-kubernetes-cluster-on-rhel-9 https://www.youtube.com/watch?v=_ELvCuXO6y4 https://medium.com/weeklycloud/kubernetes-installation-on-rhel-9-d5629f2fa4f9 https://www.youtube.com/watch?v=vX2n05t0AQg&t=1782s Prerequisites Updat...
Kiwiplan - MAP Variables
Kiwiplan software uses several environmental variables within the Unix structure. Knowing these variables will provide a better understanding of the directory structure during setup of Kiwiplan software. These variable settings are located in the files: $...
PiHole - Synology Configuration
This is to create a MAC vlan on you synology to bridge interfaces You will need to create the following folders from the main docker folder. mkdir -p /volume1/docker/pihole mkdir -p /volume1/docker/pihole/pihole mkdir -p /volume1/docker/pihole/dnsmasq.d M...
Pi-Hole - Adding blocklist urls to the Gravity DB from the command-line
This is to add block list to the Gravity DB from the command line from a text file. You will need a few things to do this This is for allowing zmodem options if you telnet session allows it like SecurCRT that I used. Install the following packages sudo apt...
Kiwiplan - Add Printer for Classic and Refresh Sites
This is how to add a printer in Kiwiplan for KDG to host the printer and for classic label. Step1: Add the printer to the server were KDG is running under Control Panel\Hardware\Devices and Printers Step2: Verify in KDG top make sure it shows up Ste...
Linux - Commands to Know
This is a quick version of commands to be aware of. System information uname -a : Displays all system information. hostnamectl : Shows current hostname and related details. lscpu : Lists CPU architecture information. timedatectl status : Shows system tim...
Kiwiplan - MySQL log is fill or filled the drive
This document is to explain the procedure on how to get the plant operational again. Couple of things to think about: Is the drive full Do you see many log files for mariadB or MySQL If so then proceed on delete the oldest to the newest date and the on...
Prometheus - Raspberry PI Node Exporter Install
This is to install the node exporter on a raspberry pi for Prometheus to scrap. Step1: Download Install the node exporter for Prometheus on your Raspberry Pi You will need to look at here for the current version of the node exporter from github https://git...
Kiwiplan - Install Web Launcher
This requires Java to be installed first First program that must be installed in Kiwiplan_Web_Launcher_Setup. This file is usually in the Linux server in the MES folder for the current revision or on the RDS server if it was copied V...
Raspberry PI - Uctronics panel setup
This is to setup the panel on the rack mount UCTRONICS raspberry pi holder with SSD drives You will have to modify the following file sudo nano /boot/config.txt or sudo nano /boot/firmware/config.txt At the end of the file add below the last [ALL] section...
Raspberry PI - Install NFS Server
dnf install nfs-kernel-server sudo cp /etc/exports exports.org vi /etc/exports Configure NFS Exports: Edit the /etc/exports file to define the directories to be shared and the clients allowed to access them. Export the new change sudo nano /etc/exports a...
Script - Deleting a KDE server from the Database
DECLARE @ServerID INT, @UPD INT SET @ServerID = 1 --Server ID To Delete SET @UPD = 0 --0 to Select 1 to Delete -- DOT NOT MODIFY BELOW -- IF @UPD != 1 BEGIN SELECT * FROM [KDG].[dbo].[kdgDelivery] where serverID = @ServerID SELECT * FROM [KDG].[d...
Linux Server - Install RedHat 8.6
Summary Instructions on the install and configuration of a Linux server for Kiwiplan. Details Prerequisites VMware, KVM, Hyper-V machine to host the installation You will need to use the following command when you vi your files as you cut and paste: On...
Script - Import Data Script for Internal Customer Servers
This is a script to import databases, logs and preference bundles from a backup file generated from a datadump script. Name: importdata Script Located here: https://github.com/SFLServicesLLC/Scripts/blob/main/Linux/importdata
Script - Data Dump Script for Internal Customer Servers
This script is to get a backup of all databases to either send them to a test server, just a backup or send them for support. Name: datadump Script Located here: https://github.com/SFLServicesLLC/Scripts/blob/main/Linux/datadump
ESP - Delete Agent Requests For Users
This removes failed jobs requests after 1 month that users are not cleaning up themselves. /* This script will clean up the agent errors that we are not looking for every day. Please run in SQLAgent every day. Created Steven F Ling 2021-06-22 */ --s...
Linux - Install KVM
Prequisites Minimal Installed RHEL 9 with Desktop Environment Sudo user with admin rights Local Yum Repository or Red Hat Subscription Internet Connectivity (for Red Hat Subscription) Once the prerequisites are met then jump into installatio...
BAT - Script to Map Drives
SearchCtrl+K Chat Ctrl+J Voice Files Tasks Projects History Today This Week July Add logic to change the link on my pictures, my music, my videos @echo off echo Mapping Synology NAS drives... :: Map Document drive net use F: \\192.168.1.20...
RedHat - Install NFS Shares
NFS Server Configuration Install NFS Utilities. sudo dnf install nfs-utils Create the Shared Directory. sudo mkdir -p /nfs/exports/myshare (Replace /nfs/exports/myshare with your desired path.)Configure NFS Exports: Edit the /etc/exports file to define th...