How to configure Static routing in Linux

Static routes can be added usually through “route add” or “ip route” command. However, “route add” command configures routing on the runtime and doesn’t persist the configuration after a reboot. To make it persistent across reboots, you have to add it to /etc/sysconfig/network/route file for SUSE . For example, static routes for the eth0 interface Read more about How to configure Static routing in Linux[…]

Zabbix – Corrupt Events Table fix

I had to re create my events table then drop the old from the DB to get round an issue with mysql crashing. To do this i did the following #mysql -p use zabbix; SET FOREIGN_KEY_CHECKS=0; CREATE TABLE events_new LIKE events INSERT INTO events_new SELECT * FROM events ALTER TABLE events RENAME events_old ALTER TABLE Read more about Zabbix – Corrupt Events Table fix[…]

Zabbix Database Cleanup – Delete Old Data

Few posts on the internet about this but quickest way i found of deleting old data below. Save the below code as .sql and run from the server with… #mysql zabbix -p ./deleteolddata.sql SQL CODE – — intervals in days SET @history_interval = 7; SET @trends_interval = 90; DELETE FROM alerts WHERE (UNIX_TIMESTAMP(NOW()) – clock) Read more about Zabbix Database Cleanup – Delete Old Data[…]

Event ID 5722 – DomainDnsZones partition replication issues / result 8451 (0x2103): / The replication operation encountered a database error.

Event ID 5722 is logged on your Windows Server-based domain controller My Original error – DC=DomainDnsZones,DC=<domain>,DC=co,DC=uk Default-First-Site-Name\<DC> via RPC DSA object GUID: eecaebcb-34ce-4ea0-8966-65a6a6bd7699 Last attempt @ 2017-01-06 10:49:52 failed, result 8451 (0x2103): The replication operation encountered a database error. 793 consecutive failure(s). Last success @ 2016-12-30 19:48:26. The following saved me from a demote and Read more about Event ID 5722 – DomainDnsZones partition replication issues / result 8451 (0x2103): / The replication operation encountered a database error.[…]

Windows Live Hotmail/Outlook SMTP Server Settings

Windows Live Hotmail SMTP Server Settings The Windows Live Hotmail outgoing SMTP server settings for sending mail using Windows Live Hotmail from any email program, mobile device or other email service are: Windows Live Hotmail SMTP server address: smtp.live.com Windows Live Hotmail SMTP user name: Your complete Windows Live Hotmail email address (“me@hotmail.com” or “me@live.com” Read more about Windows Live Hotmail/Outlook SMTP Server Settings[…]