Setting Up the Enterprise Server

This section shows you how to set up the Enterprise Server for JD Edwards EnterpriseOne with Linux.

Prerequisite

You must have performed the functions described in the module of this Learning Path entitled: All Servers Common Setup.

Setting Up the Enterprise Server

This section describes the setup tasks that must be performed on the Enterprise Server.

  1. Ensure you have performed all the tasks described in the module of this Learning Path entitled: All Linux Servers Common Setup including the steps to create groups and users as well as assigning proper permissions to /u01.
  2. Create the oneworld group using this command:

    sudo groupadd -g nnnn oneworld

    where nnnn is the id value with which the group will be created. You must use a free value which ideally should be above 1000. You can determine used group ids with the id command.

    Note: You must reboot the machine any time you add groups in order for the changes to take affect.
  3. Create the jde920 user and make the KornShell the default shell (using the -s switch with /bin/ksh), using this command:

    sudo useradd -d /home/jde920 -m -s /bin/ksh jde920

    Note: This specific user, with access to ksh, is required in order to start and stop the Enterprise Server.
  4. Add the jde920 user to the oracle and oneworld group using these commands:

    sudo usermod -a -G oracle jde920

    sudo usermod -a -G oneworld jde920

  5. Ensure there is at least 35 GB free space on /u01.

  6. Update .bash_profile of the >root, opc, and oracle users with below export values.

    Note: This setting is required on the Oracle database target machine, which is the Enterprise Server, in order to enable the installation of the Oracle database client.

    sudo vi /root/.bash_profile

    export CV_ASSUME_DISTID=OL7

    sudo vi /home/opc/.bash_profile

    export CV_ASSUME_DISTID=OL7

    sudo vi /home/oracle/.bash_profile

    export CV_ASSUME_DISTID=OL7