Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Setup

Software Requirement

  • JDK 1.8

Follow Steps below to install Java 1.8 on CentOS/linux.

    • Update before installing any new program

Image Added

    • Install Java 1.8

Image Added

    • Verify Java is Installed

Image Added

Sample output:

Image Added

  • MySql 5.6

Follow below steps to install and configure MySQL on CentOS/linux

    • Go to the Download MySQL Yum Repository page (https://dev.mysql.com/downloads/repo/yum/) in the MySQL Developer Zone.

    • Select and download the release package for your platform.

    • Install the downloaded release package with the following command, replacing platform-and-version-specific-package-name with the name of the downloaded RPM package.

$> rpm -ivh  platform-and-version-specific-package-name.rpm

Example Output:

Image Added

    • By using yum command, now we will install MySQL Server 5.6 . All dependencies will be installed itself.

Image Added

    • To start MySQL Service, run command "systemctl start mysqld".

    • To stop MySQL Service, run command "systemctl stop mysqld".

    • To restart MySQL Service, run command "systemctl restart mysqld".

    • To get status of MySQL Service, run command "systemctl status mysqld".

    • Run "mysql_secure_installation"  to perform to reset the root user password.

Image Added


  • Tomcat 7.0.

    92Maven 3

    XX

Follow below Steps to setup Tomcat server  on CentOs/linux.

Image Added

    • After competed download extract archive file in /tmp directory and move to the proper location as per your need.

Example:

Image Added

    • Navigate to the tomcat file path and run ./bin/startup.sh cmd to start the tomcat server.

Sample Output:

Image Added

  • Maven 3

Follow below steps to setup maven on Centos/linux.

Image Added

    • Add maven bin folder path using cmd "export PATH=<MAVEN_FOLDER_PATH>:$PATH.

Example:

Image Added

    • Verfiy Maven is installed by giving "mvn -v" cmd.

Image Added

  • SMTP server (optional, if email feature in Automatics to be enabled)

...