Advanced Search
Search Results
148 total results found
pfSense - VLANs Setup
https://nguvu.org/pfsense/pfsense-baseline-setup/ https://www.youtube.com/watch?v=b2w1Ywt081o
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: #!/bin/bash #Type:Utility ######################################################### # Script: # # This is t...
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: #!/bin/bash ############################################################################## # # Added by ...
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...
sFTPGo - Setup On a Docker Server
services: sftpgo: image: drakkan/sftpgo:latest container_name: SFTPGo user: root:root # For running on Docker server ports: - 8082:8080 # HTTP - 2022:2022 # SFTP - 2121:2121 # FTP - 10080:10080 #WebDAV ...
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...
Linux - Re-Mapping Drives or Combining Drives
The document is walk you through the re-mapping or combining of mapped drives on a Linux server. This is to make the root drive aka "/" drive one drive to be able to use the space of the full drive. First you will have to look at the current setup sudo fdis...
Docker - Useful Commands
sudo docker exec -u 0 -it [Docker ID/NAME] bash
Linux Server - Install Rocky 9.4
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...
Kiwiplan - KIDSENV Settings
MAXPROC=999 TERM=vt100 KIDSLOGDIR=$PLANT/tmpKIDSLOGMAX=1000000KIDSLOGLEVEL=-4 The KWSQL_LOG variable is a system-level setting in Kiwiplan that controls logging options for the SQL interface, although ISAM can also utilize these logs. It allows you to speci...
VMWare - Copy and Paste from Console to VM
On any Powered Off VM, click the "Advanced Parameters" tab. Click filter icon of Attribute column. Search for 3 items' names, check if they already exist. If yes, edit their corresponding values. If not, add them from the textboxs above. Name...
Kiwiplan - Server Load Monitor
This script is based on this initial loadmon script This is to monitor specific objects at a Advantive/Kiwiplan sites It will send something like this for PCS #!/bin/bash ############################################ # # Author: Steve Ling 5/2/25 # M...
Linux - Server Load Monitor Script
This is to monitor various objects on a given server and email notifications out when thresholds are exceeded IT will send out something like this #!/bin/bash ############################################ # # Author: Steve Ling 5/2/25 # # Purpose: Moni...