Configuration guides for IT Administrators

⏱︎
Read time:
COM and DOTNET are not available by default in PHP Core, php.ini. You have to manually add COM support to PHP if you face issue. Typically, you get an error message as Step 1.Copy php_com_dotnet.dll located in xampp\php\ext folder to c:/windows/system32/ Step 2.Add following to php.ini file located in xampp\php folder [COM_DOT_NET]extension=php_com_dotnet.dllextension = c:/windows/system32/php_com_dotnet.dll Step 3.Restart…

⏱︎
Read time:
How to view and recover Cisco Switch ports from err-disabled state

⏱︎
Read time:
Import CSV into MySQL This is a simple version of LOAD DATA command to import simple CSV file into MySQL table. It look only .02 seconds to import 40+ records. LOAD DATA INFILE ‘c:\datafolder\t_order_details.csv” INTO TABLE t_order_details FIELDS TERMINATED BY ‘;’ LINES TERMINATED BY ‘\n’ IGNORE 1 ROWS; Assuming you have the first row as…

⏱︎
Read time:
This SQL query provides you with list of all tables with largest size in a MySQL database that is executed. SELECT table_schema AS `Database`,table_name AS `Table`,ROUND(( ( data_length + index_length )/1024/1024),2 ) `Size in MB` FROM information_schema.TABLES ORDER BY ( data_length + index_length )DESC; LIMIT 0, 30

⏱︎
Read time:
In this setup, 2 SSIDs are configured on tp-link access point and both SSIDs are operating on different VLAN . VLAN 5 – for internal employee computers to get connected and access corporate network and systems. VLAN 200 – for guests so we must ensure that guests cannot access corporate systems in any way. Another…

⏱︎
Read time:
View All Active Connections Use the command tmsh show /sys connection to view all active connections of all Virtual Servers of F5 unit [root@F5LB] config # tmsh show /sys connection Really display 1000 connections? (y/n) y Sys::Connections 37.210.120.242:50254 192.168.2.103:443 192.168.2.203:50254 192.168.2.41:7003 tcp 20 (tmm: 3) none none This diagram helps you to understand the traffic…

⏱︎
Read time:
In order to determine the client IP that sends requests to a Web Server placed behind an F5 appliance, you can attach this iRule to your virtual server. This iRule logs the requested Client IP address under System > Logs > Local Traffic. This iRule logs following Client IP address Request URL X-Forwarded-For header value…

⏱︎
Read time:
Before we begin configuring the HTTP Monitor, use POSTMAN (or your favorite HTTP sniffer tool) to understand REQUEST (Send String) and RESPONSE (Receive String) pair of the health check page. SEND STRING In this example, when client browser browse the health check web page /…/healthcheck.html, the client sends following request to server GET /dashboard/healthcheck.html HTTP/1.1…

I’m Lucas Brey, a travel blogger sharing practical guides, hidden gems, and honest tips from the road. Follow along for smart itineraries, great food finds, and stories worth bookmarking.