Orac is the creation of a dedicated group of volunteer programmers led by Andy J. Duncan. Some of the major contributors include Kevin Brannen and Thomas Lowery, but many others too numerous to mention have contributed as well. A list of most of the contributors is included in the README file that accompanies the program. […]
Handy script protects Linux against traffic spikes
http://enterpriselinuxlog.blogs.techtarget.com/category/scripts/ We received another user-submitted Linux script for our “Share scripts… win Starbucks” series. This one comes from David Witham, who writes: I administer a consumer VoIP switch for a VSP. The switch acts as a SIP registrar and proxy. Many thousands of devices register and re-register with the registrar every few minutes so there’s […]
Oracle Userfull scripts
http://www.materialdreams.com/oracle/ http://www.orafaq.com/ http://www.orafaq.com/scripts/ http://www.idevelopment.info/data/Oracle/DBA_tips/Sun_Solaris/SUNSOLARIS_5.shtml http://www.dbasupport.com/oracle/scripts/ The OracleResourceStop Script Archive Mark Lang’s Script collection OraMag’s Code Depot Material Dreams’ DBA Scripts Biju’s Oracle tips and scripts page Steve Rea’s Oracle Tips, Tricks, and Scripts Tracing the Sessions(s) of a Given User In a case where you cannot (because you don’t have enough time, for example) query […]
Oracle backup script for RAC clustering
CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default CONFIGURE BACKUP OPTIMIZATION OFF; # default CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default CONFIGURE CONTROLFILE AUTOBACKUP ON; CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO ‘/orabackup/rman/%F’; CONFIGURE DEVICE TYPE DISK PARALLELISM 2 BACKUP TYPE TO BACKUPSET; CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO […]
HowTo: Configure Sendmail with Gmail SMTP Server on Linux
Yeah! Finally I’m able to send and receive email with sendmail and dovecot implemented on my Linux server today. I choose gmail smtp server to act as my Outgoing Email Server. Here is how I did, In the /etc/mail/yourhostname.mc file, add the following above the DAEMON_OPTIONS line. define(`confAUTH_OPTIONS’, `A’)dnl define(`confAUTH_MECHANISMS’, `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN […]