Fail2ban: unblock an ip

Find IP Address to Unblock Log in to your server via SSH and type in the following command: iptables -L -n Look for the IP address you want to unblock / unban. Now we must find the jail name this IP address is in. To do so, type the following:…

Read MoreFail2ban: unblock an ip

Avamar: Query postgresql db

admin@xxx:~/>: psql -p 5555 -U viewuser mcdb mcdb=>   Example query:     SELECT * FROM “public”.”v_clients”;     SELECT v_clients.cid, v_clients.client_name, v_clients.client_addr,v_clients.os_type FROM “public”.”v_clients”;        select client_name,status_code,domain FROM v_activities_2 WHERE (status_code=30901 or status_code=30915) and recorded_date_time > current_timestamp – interval ’24 hours’

Read MoreAvamar: Query postgresql db

SQL-Server: The query processor ran out of internal resources and could not produce a query plan

T-SQL-Commands

from :  The query processor ran out of internal resources and could not produce a query plan. This is a rare event and only expected for extremely complex queries or queries that reference a very large number of tables or partitions. Please simplify the query. If you believe you have received…

Read MoreSQL-Server: The query processor ran out of internal resources and could not produce a query plan