Author Archives: Kaven Gagnon

avatar

About Kaven Gagnon

System & Network Architect

OpenVPN : Unable to obtain Session ID XML-RPC: TimeoutError or 400 Bad Request

Using OpenVPN Server on Linux as well as Windows machine, you may encounter this error trying to connect a client : Unable to obtain Session ID from “vpn.domain.tld”, port(s)=443: XML-RPC: TimeoutError Unable to obtain Session ID from “vpn.domain.tld”, port(s)=443: XML-RPC: ‘400’, ‘Bad Request’ This happen because HTTPS (SSL) port (TCP-443) is closed either on the… Read More »

Windows : Asp.NET test page

Just like php, you can create a test page in order to verify if .NET is installed and working properly. The following will also display the running version. Simply create plain text file using Notepad or your favorite text editor : test.aspx And insert this code : <%@ Page Language=”VB” %> <script runat=”server”> Protected Sub… Read More »

Windows : How To clear Offline Files server list

You may get into trouble if you didn’t remove folder synchronization on network server before deleting a user account or unlink a computer from domain… File synchronization still effective even if the user is no longer on the computer or Active Directory. The only way to get rid of old entries, is to do it… Read More »

Linux : mptbase ioc0 WARNING IOC is in FAULT state

Inside system logs (/var/log/messages), you may see some message like this on a system running a RAID controller (this one is from a PERC 5/i on a Dell PowerEdge server) : mptbase: ioc0: WARNING – IOC is in FAULT state (1600h)!!! mptbase: ioc0: WARNING – Issuing HardReset from mpt_fault_reset_work!! mptbase: ioc0: Initiating recovery mptbase: ioc0:… Read More »

Linux : Hardware Lister

Need to show full hardware contained inside a Linux machine (board, cpu, memory, pci slots, etc.) such as you do on Windows with AIDA, Sandra, etc? Hardware Lister (lshw) is the answer. http://ezix.org/project/wiki/HardwareLiSter [official site : external link] You can shot the full output using the command lshw Or redirect the listing in a plain… Read More »

Web : zend_mm_heap corrupted

You may notice this error in the Apache logs : zend_mm_heap corrupted Try to enable or increase this parameter either in your Apache config, htaccess or php.ini file : output_buffering = 4096

Windows : Setting LAN Authentication Level on 7 Home Premium

Windows 7 Home Premium doesn’t have the “Local Security Policy” console (aka : secpol.mmc). In order to access SMB share running the old protocol version, you need to enable the Authentication LAN Manager directly inside the registry. Open the registry editor (Start > Run) : regedit Browse to : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa Create a new DWORD value… Read More »