Category Archives: Servers

Linux : Port forwarding with IPtables

Need to forward a custom port to an existing port on your Linux box? Simply use the following command as root : iptables -t nat -I PREROUTING –src 0/0 –dst 0.0.0.0/0 -p tcp –dport <port-to-forward> -j REDIRECT –to-ports <destination-port> Example : Assuming you want to forward port 1025 to port 587 : iptables -t nat -I PREROUTING… Read More »

Mac : Unable to negotiate with x.x.x.x port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1

With the latest macOS Sierra 10.12 release, you might have observed issue connecting to servers or network devices running SSH. Please note that this article does not necessary apply or macOS, but any running OS with the latest OpenSSH v7. Because of the latest OpenSSH version, some older (legacy) encryption algorithm have been removed from… Read More »

Linux : How to setup client/server NFS on SuSE

This post will cover the complete installation and setup of a NFS client and server on SuSE Linux. By default, the system include the NFS client but not the server. First of all, make sure that NFS traffic is allowed if you are running any firewall on the client/server machine. You can achieve this through… Read More »

Windows : How to change the Exchange MailStore database path

By default, Microsoft Exchange Server will place the MailStore database in the installation folder as followed : C:\Program Files\Micros oft\Exchange Server\V15\Mailbox\Mailbox Database 0000000000\Mailbox Database 0000000000.edb It may be suitable for small scale setup, however you may want to change it to a different path for various reasons when come to medium or large scale setup…… Read More »

Windows : NTFS Warning The system failed to flush data to the transaction log. Corruption may occur.

Having repeated NTFS warning entries in EventViewer as the one below? Log Name: System Source: Ntfs Event ID: 57 Task Category: (2) Level: Warning Description: The system failed to flush data to the transaction log. Corruption may occur. This indicate an issue with the filesystem recovery mechanism and the filesystem might not be fault tolerant… Read More »