iDRAC 9 Set Physical Disk to Non-RAID

In the update from iDRAC 8 to iDRAC 9 it has been infuriating searching the 'Storage' menu only to discover that the storage is managed under 'Configuration > Storage Configuration'  I'm convinced the user experience could be better! At the very... » More

Clearing old Journald Logs

Journald logs can be cleared by timescale or size as follows. Keep only 5 days worth of logs journalctl --vacuum-time=5d Retain only the past 500 MB: journalctl --vacuum-size=500M

Checking if Puppet is Disabled

The puppet agent can be disabled from running with: puppet disable "Some message here" And it can be re-enabled with: puppet enable But to check if puppet is currently disabled there is no check command. Instead look for the existence of the... » More

Exclude Directories for Disk Usage (du)

ncdu I sometimes want to omit directories from my disk usage (du -sh *) checks. This includes virtual files systems such as proc / dev and also mounts to other filesystems (data in the example below). This is what works for me: du... » More

Tags:

Datanode denied communication with namenode

In a Cloudera cluster we had a few nodes reporting the following error message in the logs under hadoop-cmf-hdfs-DATANODE-whatever.com.log.out The error included: Datanode denied communication with namenode because the host is not in the... » More

Set NTP Server on Windows Domain Controller

On the Windows Domain Controller I checked the current NTP settings with: w32tm /query /configuration   I tried a few alternative commands and got errors such as "the rpc server is unavailable". The command that worked was: w32tm /config... » More

Windows Nagios Checks using NSClient

Munin Alternative Template I wanted to add some checks to a Windows server and the methods seem to have changed a little over the years. At the moment I have amended the nsclient.ini file on the Windows box with: CheckDisk=1 CheckSystem=1 Then from the Nagios box I can check... » More

Labeling Partitions with LABEL and PARTLABEL

So working on a system that had incorrect partitioning configured.  In /etc/fstab the partitions were configured with: PARTLABEL=data1 /data1 ext4 defaults 0 0 PARTLABEL=data2 /data2 ext4 defaults 0 0 but the partitions did not have PARTLABELS set.... » More