Posts

Showing posts with the label CENTOS/RHEL

Zimbra Installation Problem at CentOS7

Issue: Running Post Installation Configuration: /opt/zimbra/bin/zmlocalconfig: line 83: exec : java: not found /opt/zimbra/bin/zmlocalconfig: line 83: exec : java: not found /opt/zimbra/bin/zmlocalconfig: line 83: exec : java: not found /opt/zimbra/bin/zmlocalconfig: line 83: exec : java: not found /opt/zimbra/bin/zmlocalconfig: line 83: exec : java: not found Operations logged to /tmp/zmsetup.20190720-155435.log Installing LDAP configuration database...done. Setting defaults.../opt/zimbra/bin/zmlocalconfig: line 83: exec : java: not found /opt/zimbra/bin/zmjava: line 59: /bin/java: No such file or directory /opt/zimbra/bin/zmlocalconfig: line 83: exec : java: not found /opt/zimbra/bin/zmjava: line 59: /bin/java: No such file or directory Solution: 1. Uninstall zimbra using command 1 ./install.sh -u 2. Remove zimbra-openjdk with the command 1 yum remove zimbra-openjdk Done you can reinstall the new zimbra Ref: https://saad-web-id.translate.goog/2019/07/initializing-core-config-settin...

YUM repository configure

  Configuring YUM server in RHEL 7.0 It is a local repository server. Follow below steps to configure the repository server. Step1: Mount the ISO image into a local folder.  [root@localhost /] # mount -o loop /dev/sr0 /iso_image  Remember to create the folder iso_image in / Step2: See the contents. [root@localhost /iso_image] # ls addons images    Packages                 RPM-GPG-KEY-redhat-release EFI     isolinux    release-notes            TRANS.TBL EULA    LiveOS      repodata GPL     media.repo  RPM-GPG-KEY-redhat-beta Step3: Run below command [root@localhost /iso_image] # createrepo /iso_image/Packages Step4: go to /etc/yum.repos.d/ directory [root@localhost /etc/yum.repos.d] # vi local.repo [Local] [ID-must be 1 word similar to file name] name=LocalRepository [name it as your w...