SHIFT-WIKI - Sjoerd Hooft's InFormation Technology
This WIKI is my personal documentation blog. Please enjoy it and feel free to reach out through blue sky if you have a question, remark, improvement or observation. See below for the latest additions, or use the search or tags to browse for content.
OpenDS LDAP Indexes
Summary: How to manage indexes in OpenDS.
Date: Around 2012
Refactor: 8 March 2025: Checked links and formatting.
NetApp Storage Monitoring
Summary: How to install a NetApp Storage Monitoring server using onCommand Unified Manager 5.1.
Date: Around 2011
Refactor: 8 March 2025: Checked links and formatting.
We just got a brand new FAS3250C or Nseries N6250 (they are the same) and we decided to reinstall our storage monitoring server, since the software has been replaced by new versions with new functionality. We will run in Windows Server 2008 R2 (since 2012 is not supported by all required software), and will install and run the following software and services:
- IOmeter
- onCommand Unified Manager 5.1
The Unified Manager should be replacing the old DFM (data fabric manager / Operations Manager) which is required for the performance monitoring.
At the end of the configuration we will also configure a few custom reports.
Bash: Function: Offsitecopy
Summary: A bash function to copy files to a different location.
Date: Around 2018
Refactor: 8 March 2025: Checked links and formatting.
This is an external function used in several other scripts. The point is that you can use the same external functions within multiple scripts.
function offsitecopy { COPY=`echo ${1}` TOUSER="${2}" TOHOST="${3}" TODIR="${4}" LOGFILE="${5}" WHATAMI="${6}" HOSTNAME="${7}" MAILTOSUCCESS="${8}" MAILTOFAIL="${9}" DATESTAMP=`date +%Y"-"%m"-"%d" "%H":"%M` echo >> $LOGFILE echo "Starting Copy of $COPY[@] to ${TOHOST}..." >> $LOGFILE echo >> $LOGFILE if scp ${COPY} $TOUSER@$TOHOST:$TODIR ;then echo "Copy of ${COPY[@]} " >> $LOGFILE echo "to $TOUSER@$TOHOST:$TODIR Success" >> $LOGFILE echo >> $LOGFILE cat $LOGFILE | mail -s "Succes ${WHATAMI} copy on $HOSTNAME" $MAILTOSUCCESS else echo "Copy of ${COPY[@]} " >> $LOGFILE echo "to $TOUSER@$TOHOST:$TODIR FAILED" >> $LOGFILE echo >> $LOGFILE cat $LOGFILE | mail -s "FAILED ${WHATAMI} copy on $HOSTNAME" $MAILTOFAIL fi }
Office 2007 Installation
Summary: This is a small tutorial on how to create a managed installation of MS Office 2007.
Date: Around 2008
Refactor: 4 January 2025: Checked links and formatting.
Covered topics are:
- Creating an adminfile
- Using the adminfile
- Compatibilitymode
- Removing Office 2007
- Visio 2007