Environment Setup

How to Import Database Dump in MySQL ?

Before Import any database dump into MYSQL server, need to make sure that database and user are created. We can create database and account using below command on Terminal. d@MacBook-Air % /usr/local/mysql-8.0.30-macos12-x86_64/bin/mysql -u root -pEnter Password -> Type root passwordmysql> create database db2005;mysql> create user ‘admin1’@’localhost’ identified by ‘db123’;mysql> grant all on db2005.* to ‘admin1’@’localhost’;mysql> …

How to Import Database Dump in MySQL ? Read More »

How to Change the Java Version or Switching Java (JDK) Versions on MacOS

some time, we need to install multiple JAVA versions due to system requirement and application require particular java version, e.g Hybris 2211 is compatible with java 17 but Hybris 2205 is with java 11. so we need to change java version before we start the application otherwise it will give compilation error How to check …

How to Change the Java Version or Switching Java (JDK) Versions on MacOS Read More »