Sunday, August 26, 2018

Create New Virtual Machine on VMware

Follow the steps for creating new VM on VMware.

Select the Configuration type and Click on Next.

  • Typical
  • Custom

clip_image001

Now give your machine name as per your project.

clip_image002

Check the data store resources.

clip_image003

On next Screen, select the Guest Operating System

  • Windows
  • Linux
  • Other

clip_image004

clip_image005

From following list choose the OS specific version.

clip_image006

clip_image007

clip_image008

Check the Network card and Click Next.

clip_image009

Give Hard Disk size and Click Next.

clip_image010

VM is Ready to Complete.

For configure RAM and other settings click on edit option.

clip_image011

Re-Check the VM configurations and Finish.

clip_image012

Now VM is created.

Friday, August 24, 2018

OrangeHRM Installations using Xampp in Linux


Follow the Xampp installation steps in below link.

https://linuxkbv.blogspot.com/2018/07/xampp-installation-on-centosrheloel7.html

Download OrangeHRM setup from below link.

https://excellmedia.dl.sourceforge.net/project/orangehrm/stable/4.1/orangehrm-4.1.zip

Extract and copy the folder into Xampp htdocs folder.

/opt/lampp/htdocs

Start the Apache and MySQL services in Xampp.

Now hit http://localhost/orangehrm-4.1 in browser and installations will come.


clip_image002

Select the next step.

clip_image004

Accept the License and proceed forward.

Choose default values are change as per your requirements.

clip_image006

Following steps are for manually creation of Database.

CREATE DATABASE orangehrm;

Create a database user called orangehrmuser with new password

CREATE USER 'orangehrm'@'localhost' IDENTIFIED BY 'Password';

Then grant the user full access to the database.

GRANT ALL ON orangehrm.* TO 'orangehrm'@'localhost' IDENTIFIED BY 'Password' WITH GRANT OPTION;

Finally, save your changes and exit.

FLUSH PRIVILEGES;

EXIT;

Select Next and you may face the disabled status.

clip_image008

Enable MySQL Event Scheduler status.

Edit this file and add following line.

/opt/lamp/etc/my.cnf

event_scheduler=ON

clip_image010

Save the file and Re- check then Next.

clip_image012

Enter the Admin User Creation and Next.

clip_image014

Check the configuration details and Proceed to Install.

clip_image016

Installation complete. Now login and configure internal configuration

clip_image018

clip_image020

Documentations Links:

https://www.orangehrm.com/assets/Documents/User-Guides/OrangeHRM-OS-3.3-Administrative-User-Guide.pdf

https://www.orangehrm.com/resources/download/orangehrm-user-guides/

https://www.orangehrm.com/assets/Documents/User-Guides/OrangeHRM-OS-3.3-Supervisor-User-Guide.pdf

https://www.orangehrm.com/assets/Documents/User-Guides/OrangeHRM-OS-3.3-ESS-User-Guide.pdf

Oracle Database 19c Installation on Oracle Linux 7

Pre-installation settings before installing Oracle Database 19c SELinux If the OS is to be used for an Oracle installation, it is ...