Apache Mysql and PHP with BSD/Linux LAMP

Posted on 11. Mar, 2008 by sabin.

0

This How-To guides you through the steps to install and configure the most popular and powerful Apache-2.2.8 web server with PHP-5.2.5 and Mysql-5.0.45. This How-To can be used either on Linux with Kernel version 2.4 and higher or on FreeBSD-6.x systems. From wikipedia, the definition of a web server is as follows: A computer program [...]

Continue Reading

My Oracle Notes

Posted on 07. Mar, 2008 by sabin.

0

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. [...]

Continue Reading

Handy script protects Linux against traffic spikes

Posted on 03. Mar, 2008 by sabin.

0

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 [...]

Continue Reading

Oracle Userfull scripts

Posted on 03. Mar, 2008 by sabin.

0

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 [...]

Continue Reading

Oracle backup script for RAC clustering

Posted on 03. Mar, 2008 by sabin.

0

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 [...]

Continue Reading

HowTo: Configure Sendmail with Gmail SMTP Server on Linux

Posted on 03. Mar, 2008 by sabin.

0

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 [...]

Continue Reading

Java shrinker, optimizer, obfuscator, and preverifier Encrypt jar files

Posted on 28. Feb, 2008 by sabin.

1

http://proguard.sourceforge.net/ Some uses of ProGuard are: Creating more compact code, for smaller code archives, faster transfer across networks, faster loading, and smaller memory footprints. Making programs and libraries harder to reverse-engineer. Listing dead code, so it can be removed from the source code. Retargeting and preverifying existing class files for Java 6, to take full [...]

Continue Reading

dag wieers update package

Posted on 27. Feb, 2008 by sabin.

0

http://dag.wieers.com/rpm/FAQ.php#B2 yum whatprovides mod_access.so http://dag.wieers.com/rpm/packages/ http://wiki.centos.org/Repositories For your printer see: http://openprinting.org/show_printer.cgi?recnum=Canon-iP4000 (check the FC6 Extras repo for rpm packages) http://mirror.centos.org/centos/ http://mirrorlist.centos.org/ www.silfreed.net/download/repo/redhat/  www.idevelopment.info http://www.dbazone.com/ http://www.idevelopment.info/data/Oracle/DBA_scripts/common.zip

Continue Reading

session handaling with Servlet

Posted on 25. Feb, 2008 by sabin.

0

Use URL rewrite to save session data import java.io.IOException; import java.io.PrintWriter; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class ShoppingCartViewerRewrite extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { res.setContentType(“text/html”); PrintWriter out = res.getWriter(); out.println(“<HEAD><TITLE>Current Shopping Cart Items</TITLE></HEAD>”); out.println(“<BODY>”); // Get the current session ID, [...]

Continue Reading

Linux RHCE Notes or Tutor

Posted on 24. Feb, 2008 by sabin.

0

Donload RHCE short notes and tutor help full for RHCE Exam Download linux short how to notes or Tutor Donwload RHCE Notes part 1 Donwload RHCE Notes part 2

Continue Reading