linux disable ssh timeout

On Linux disable SSH timeouts You’ll need to edit /etc/ssh/sshd_config and set these directives: TCPKeepAlive yes ClientAliveInterval 30 ClientAliveCountMax 99999 To set SSH to disconnect if the user does not input anything for then hours: TCPKeepAlive yes ClientAliveInterval 60 ClientAliveCountMax…

Mac MySQL GUI Tool

Mac MySQL GUI Tool Sequel Pro Best Looking MySQL Cocoa App. Sequel Pro is a fast, easy-to-use Mac database management application for working with MySQL databases. Flexible Connectivity. Sequel Pro gives you direct access to your MySQL databases on local…

Trace ASP.NET Application

You’ll need to edit the web.config Web.config Place the following after system.web tag: Trace ASP.NET Application Those options only allow you to see the trace from the server itself. RDP in to the server Connect to:

Apache Active Directory Authentication howto

Apache Active Directory Authentication howto Modules Needed mod_authz_ldap Install mod_authz_ldap yum install mod_authz_ldap Verify Apache Config has Needed Modules LoadModule auth_basic_module modules LoadModule authz_host_module modules LoadModule authz_user_module modules LoadModule authz_owner_module modules LoadModule authz_groupfile_module modules LoadModule authz_dbm_module modules LoadModule authz_default_module modules…

nginx logrotate script

nginx logrotate script Create a new file at with contents: { daily missingok rotate 52 compress delaycompress notifempty create 640 root adm sharedscripts postrotate [ ! -f ] || kill -USR1 `cat ` endscript } Run Logrotate…