Posts

SQLite Setup on Windows

Image
If you are interested in small scale project with database which require small space and lightweight then SQLite is good and easy to setup too. Go to  https://www.sqlite.org/ for more information and detailed explanation. Now we will start to setup SQLite step by step. Step 1    Go to  https://www.sqlite.org/download.html  site for download required stuff. Step 2    There are options to select. So go for your option based on requirement.                  We will use  Precompiled Binaries for Windows for windows setup Step 3    download two zip files                   sqlite-dll-win32-x86-3200100.zip  and  sqlite-tools-win32-x86-3200100.zip  from this site.                So you are done almost. Step 4    Create one folder in C:\sqlite and unzip your downloaded files in that. Step 5    Add path in environment variable ( Path - c:\sqlite) properly.                 you need not require "setting path" steps right ;) Step 6   Now check SQLite setup is done or not,

Setting up IDE's, MYSQL on Linux Machine

Image
Hi guys ,  i think you done with jdk ,its paths, actually i told about tomcat server before this, but that step comes after IDE installation.Oh! ok, IDE not yet installed?, no problem lets see how can we do this. which IDE it depends on you and your project , how flexible u and your project is.  > Lets see how to install Net-beans on your Linux Machine.      here is your simplest way to install      Go to this site _       http://netbeans.org/downloads/index.html       you ll see this screen.  ok based on your project requirement  select it. and don't forget to select your "IDE language" and "Platform". There is Download button just click on it. you ll get .sh file.  you download it means almost done. >next step  1 . Open Terminal window. 2 . Go to the directory in which your Netbeans.sh file which you downloaded few minutes before is saved 3 . And Write this easy and magical command in it                      sh netbeans-7.1.sh        

Installing Tomcat on Ubuntu

Hi friends,  If you are done with JDK installation into your system(explained in the previous blog), Now will see how can we install tomcat (the process will be same for any version) 1.  Download the package " apache-tomcat-7.0.6.tar.gz " from the below link                         http://tomcat.apache.org/download-70.cgi  [tar.gz] 2.  Now we need to unpack it with the following command: tar xvzf apache-tomcat-7.0.8.tar.gz 3.  Then move it an appropriate directory, normally prefer  /usr/share/tomcat7 , or any directory. Using  the command: sudo mv apache-tomcat-7.0.8/ /usr/share/tomcat7 4.  Now define the environment variables  JAVA_HOME  and  JRE_HOME . This file is in the "environment" in / etc. Command to edit the file: As i told you in my previous tutorial 5. IMPORTANT:  Verify the location where they have installed Java. sometimes tomcat does not recognize the path of JDK, so define the file paths inside " catalina.sh " located in 

Set JAVA_HOME / PATH variables In Linux OS

         In my last post we discussed about how to install JDK in Ubuntu platform. You installed it means, it looks lyk u  took interest in Linux.. Its good to see. U knw actually windows sucks, when u try linux distribution u ll get it (Now u r dat much of smart than i m expecting, because u r Linux user :) ).       Now we discuss about _            How to set JAVA_HOME and PATH?      And here is the answer step by step   1.   ~/.bash_profile          this file helps u to set environment.     Open  Terminal   window. (U installed JDK means u knw how to open it, m i right !) 2.  Open file ~/.bash_profile using following line in your teminal_       rohantu@ubuntu:~   $ vi ~/.bash_profile 3.  Set JAVA_HOME as follows   export JAVA_HOME=<java-path> in that file you can use below line for JAVA_HOME_       export JAVA_HOME=/usr/java/jdk1.5.0_07/bin/java     4.  Set PATH in same file as follows:        export PATH=$PATH:/usr/java/jdk1.5.0_07/bin 5. And you finished it. b

Setting up/Install JDK in Ubuntu/Linux

Friendz first little look on Java and Ubuntu ( you are chosen best combination for development). Java is a programming language originally developed by James Gosling at Sun Microsystems (which has since merged into Oracle Corporation) and released in 1995 as a core component of Sun Microsystems' Java platform. The language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities. Java applications are typically compiled to bytecode (class file) that can run on any Java Virtual Machine (JVM) regardless of computer architecture. Java is a general-purpose, concurrent, class-based, object-oriented language that is specifically designed to have as few implementation dependencies as possible. It is intended to let application developers "write once, run anywhere" (WORA), meaning that code that runs on one platform does not need to be recompiled to run on another. Java is currently one of the most popular programming languages in