Skip Headers
Oracle® Health Sciences Empirica Signal Installation Guide
Release 8.0
E50114-02
  Go To Table Of Contents
Contents

Previous
Previous
 
Next
Next
 

3 Preparing the database and application servers

This chapter includes the following topics:

Required privileges for the database server

You must have access to the following types of accounts:

  • A user account that allows the user to start and stop the Oracle database.

    This account should not have sudo privileges.

    This document refers to this user account as the non-privileged user account.

  • A user account with sudo privileges. This user executes certain steps as root.

    This document refers to this user account as the privileged user account.

Required privileges for the application server

You must have access to the following types of user accounts:

  • A user account that allows the user to start and stop the WebLogic server.

    This account should not have sudo privileges.

    This document refers to this user account as the non-privileged user account.

    Unless otherwise specified in this document, the non-privileged user should perform all activities.

  • A user account that has sudo privileges. This user executes certain steps as root.

    This document refers to this user account as the privileged user account.

Requirements and assumptions for the Linux accounts

This section discusses the requirements and assumptions for the Linux accounts.

Assumptions about environment variables and Linux user accounts

This guide provides steps for setting several system-wide environment variables. This guide sets the following system-wide variables:

  • ORACLE_HOME

  • ORACLE_BASE

  • ORACLE_SID

  • PATH


    Note:

    This guide assumes that the values of these variables are not overridden by user configuration files, such as .login, .profile, .bashrc, and .cshrc.

Setting the default file creation umask

Perform this step as the non-privileged user on the application server.

  • Edit the ~/.login file, and add the following command to the file:

    umask 027

    The command sets the default file creation umask, so that by default, files you create give read-only access to other users in your group and no permissions to users outside the group.

Preparing the installation staging area

This section discusses the steps to unpack the Signal installation files.

Unpacking the installation files into the installation directory

Choose an installation directory that is on the application server and that is accessible to the WebLogic software, such as /u01/stage. The installation directory stores Empirica Signal components during the installation process.

  1. Log in to the application server as the non-privileged user.

  2. Using a tool such as the tar command, unpack the Signal_Install.tar.gz to the /u01/stage directory. For example, use the following command:

    $ cd /u01/stage/

    $ tar xvf /u01/stage/Signal_Install.tar.gz

    The /u01/stage/Signal_Install directory is created.


    Note:

    In this document, <INSTALL_DIR> refers to the folder created in this step, such as /u01/stage/Signal_Install. This document assumes that you are installing to this directory.

  3. Using a tool such as unzip, unpack the Signal-8_0_0_0_XXX.zip file into the <INSTALL_DIR>/Signal directory.

  4. Execute the following command:

    $ chmod u+x <INSTALL_DIR>/Signal/WEB-INF/classes/MGPS

  5. Unpack the Database.zip file:

    1. Create the following directory:

      /u01/stage/Database

    2. Using a tool such as unzip, unpack the contents of the Database.zip file into the directory.

Configuring the connection to the Oracle database

This section includes the following topics:

Adding the database TNSNAMES entry

Perform these steps using the non-privileged user account.

  1. On the application server, open the tnsnames.ora file, located in the following directory:

    <ORACLE_HOME>/network/admin/

    If the file does not exist, create it.

  2. Add an entry that points to the database, using the information found in the TNSNAMES.ORA file on the database server. For more information, see Information to collect before you begin.

Setting environment variables

In this procedure, you edit configuration scripts, which set environment variables for the command shells you use. You must log out and log in again for the changes you make in this section to take effect.

In this section, you configure environment variables for your application server using your privileged account and using sudo. This section requires you to edit files, using commands such as the following. The first command logs you in as root. If you are prompted for your password after typing this command, type your password, not the password of root.

$ sudo su - root
# vi <file_name>
# exit

To set environment variables:

  1. Edit the /etc/profile file as follows. This change sets environment variables for sh and bash command shells.

    1. Add the following lines to the file.

      For the values in the first two lines, use information about your Oracle client installation.

      ORACLE_BASE=/u01/app/oracle
      ORACLE_HOME=/u01/app/oracle/product/11.2.0
      ORACLE_SID=<server_sid>
      NLS_LANG=AMERICAN_AMERICA.AL32UTF8
      export ORACLE_BASE ORACLE_HOME ORACLE_SID NLS_LANG
      
    2. Add the bin directory of your Oracle client installation to the PATH variable. For example, add the following line as the last line where the PATH variable is set:

      export PATH=$ORACLE_HOME/bin:$PATH

  2. Edit the /etc/csh.login file. This change sets environment variables for csh and tcsh command shells.

    1. Add the following lines to the file.

      For the values in the first two lines, use information about your Oracle client installation.

      setenv ORACLE_BASE /u01/app/oracle
      setenv ORACLE_HOME /u01/app/oracle/product/11.2.0
      setenv ORACLE_SID <server_sid>
      setenv NLS_LANG AMERICAN_AMERICA.AL32UTF8
      
    2. Add the bin directory of your Oracle client installation to the PATH variable. For example, add the following line as the last line where the PATH variable is set:

      setenv PATH ${ORACLE_HOME}/bin:${PATH}

Setting up the application database account (install only)

Perform these steps as the non-privileged user on the application server.

  1. In a command shell, use the following command to navigate to the /u01/stage/Database directory:

    $ cd /u01/stage/Database

  2. Review the 1_create_webvdme_tablespaces_linux.sql file:

    1. Edit the 1_create_webvdme_tablespaces_linux.sql file. For example:

      $ vi 1_create_webvdme_tablespaces_linux.sql

    2. To create the data files in a location other than the default location of your database, specify the alternate location in the datafile_path variable. The path must end in a forward slash (/). For example:

      DEFINE datafile_path = '/u01/app/oracle/oradata/<sid>/'

    3. Save the file, and exit the vi editor.

  3. Create the application tablespace:

    1. Execute the 1_create_webvdme_tablespaces_linux.sql script from the Oracle system account.

      For example, type:

      $ sqlplus system@<TNS_Name> @1_create_webvdme_tablespaces_linux.sql

    2. When prompted, type the Oracle system account password.

  4. Create the application Oracle user and schema:

    1. Type the following text:

      $ sqlplus sys@<TNS_Name> as sysdba @2_create_webvdme_oracle_user.sql

    2. When prompted, type the Oracle sys account password.

    3. When prompted a second time, create a password for the Empirica Signal database account. Retype the password to verify it.


      Note:

      Remember this password for later in this procedure.

    4. When prompted, create a password for the empirica_admin account.

    5. Retype the password to verify it.


      Note:

      Remember this password.

  5. Populate the application schema:

    1. Execute the 3_create_all SQL script from the Empirica Signal database account (not the sys or system accounts). For example:

      $ sqlplus webvdme@<TNS_name> @3_create_all.sql

    2. When prompted, type the webvdme database account password that you created in the previous step.

Setting up the Sample Topic Workflow Oracle account (optional; install only)

In this optional procedure, you perform the following steps to prepare the Empirica Signal software for using the Topics feature:

  1. Create the Oracle tablespace and account.

  2. Supply the contents of the account.

To set up the Sample Topic Workflow Oracle account:

  1. In a command shell, use the following command to navigate to the /u01/stage/Database directory:

    $ cd /u01/stage/Database

  2. Create the Topic Workflow account:

    1. In a command shell, execute the create_topics_oracle_user.sql SQL script from the system account. For example:

      $ sqlplus system@<TNS_name> @create_topics_oracle_user.sql

    2. Type the Oracle system account password.

    3. When prompted a second time, create a password for the Topic Workflow database account. Retype the password to verify it.


      Note:

      Remember this password.

  3. Create sample topics tables:

    1. In a command shell, execute the create_sample_topics_tables.sql SQL script from the TOPIC_WORKFLOW database account created in step 2. For example:

      $ sqlplus topic_workflow@<TNS_name> @create_sample_topics_tables.sql

      You are prompted to type a password.

    2. Type the TOPIC_WORKFLOW database account password that you specified in step 2.

  4. Create sample topics:

    1. In a command shell, execute the populate_sample_topics_tables.sql SQL script from the TOPIC_WORKFLOW database account in step 2. For example:

      $ sqlplus topic_workflow@<TNS_name> @populate_sample_topics_tables.sql

      You are prompted to type a password.

    2. Type the TOPIC_WORKFLOW database account password that you specified in step 2.

Installing test data (optional; install only)

  1. In a command shell, use the following command to navigate to the /u01/stage/Database directory:

    $ cd /u01/stage/Database

  2. If you have an existing TEST_IQOQ account, drop the account:

    1. Open a command shell, and type the drop command for the account. When prompted, type the System password. For example:

      $ sqlplus system@<TNS_name>

      SQL> dropuser TEST_IQOQ cascade;

    2. Exit the command shell.

  3. Create the Oracle tables in a TEST_IQOQ Oracle account:

    1. As the Oracle system user, execute the following SQL script. Enter this command on one line.

      $ sqlplus system@<TNS_name> @4_create_test_iqoq_oracle_user.sql

    2. At the prompt, type the system password.

    3. At the second prompt, create a password for the TEST_IQOQ account and retype it to verify it.


      Note:

      Remember the password.

  4. Populate the test database in the TEST_IQOQ Oracle account:

    1. Execute the following SQL script. Enter the command on one line.

      $ sqlplus TEST_IQOQ@<TNS_name> @5_populate_test_iqoq.sql

    2. At the prompt, type the TEST_IQOQ password.

Applying upgrade scripts to migrated schemas (upgrade only)

  1. In a command shell, use the following command to navigate to the /u01/stage/Database directory:

    $ cd /u01/stage/Database

  2. Enter the following commands to upgrade the Empirica Signal schema for version 8.0:

    $ sqlplus webvdme@<TNS_NAME> @update_7_3_3_3_to_8_0.sql

  3. When prompted, type the webvdme user password.

  4. Examine the file named disabled_userlist.txt in your current directory. This file contains usernames for accounts that had been disabled due to excessive failed login attempts. The users are locked out rather than disabled. To disable the users, perform the following steps after the upgrade is complete and you are able to log in to the Empirica Signal application:

    1. Log in to the Emprica Signal application as a user with the Administer Users permission.

    2. Click Settings.

    3. Click Edit Users.

    4. For each user to disable, click the row menu, and then click Edit.

      The Edit User page appears.

    5. Deselect Account locked, and select Account disabled.

    6. Click Save.

  5. Perform the following command to create the DB admin user:

    $ sqlplus sys@<TNS_NAME> as sysdba @create_dbadmin_user.sql webvdme

  6. When prompted, type the Oracle sys account password.

  7. When prompted, create a password for the empirica_admin account. Retype the password to verify it.


    Note:

    Remember this password.

  8. After the script completes, type exit.

  9. Perform the following command to complete the schema upgrade to version 8.0:

    $ sqlplus system@<TNS_NAME> @update_proxy_authentication.sql webvdme

  10. When prompted, type the Oracle system account user password.

  11. After the script completes, type exit.

  12. If you use the Topics feature, execute the following command to upgrade each Topics schema account for release 8.0. Typical installations have a single Topics schema named topic_workflow.

    $ sqlplus topic_workflow@<TNS_NAME> @update_twc_7_3_3_3_to_8_0.sql

  13. When prompted, type the topic_workflow account password.

Preparing the environment on the application server

This section includes the following topics:

Installing unlimited strength encryption Java libraries

Perform these steps using the privileged user account on the application server.

  1. Copy the following files from the installation directory to the JDK installation directory:

    • local_policy.jar

    • US_export_policy.jar

    For example, using the privileged user account, execute the following commands in a command shell, updating the path to match the location of your JDK:

    $ sudo su - root

    # cp -f <INSTALL_DIR>/java/*.jar /usr/java/jdk1.7.x_xx/jre/lib/security/

    # exit

  2. If you are prompted to overwrite files, type y and press Enter.

  3. Ensure that the two files have the same ownership and permissions as the rest of the files in the destination directory.

Installing and configuring Xvfb

The following instructions are for installing Xvfb, the X Windows Virtual Frame Buffer.

These procedures are required on the application server for the creation of graphs.

Determining whether Xvfb is installed

Perform these steps using the privileged user account.

  1. Execute the following command in a command shell:

    $ which Xvfb

  2. If the following response or some other path to Xvfb appears, Xvfb is already installed. Continue to Configuring Xvfb.

    /usr/bin/Xvfb

Installing Xvfb

Prerequisites: Yum must be installed and configured with an appropriate configuration file. Additionally, your system must be able to connect to the Yum repositories. For more information on configuring Yum for an Oracle Linux 6 system, see http://public-yum.oracle.com/.

If Xvfb is not installed, perform the following steps using the privileged user account.

  1. If Xvfb is not installed, type the following command:

    $ sudo yum install Xvfb

  2. If you are prompted for your password after typing this command, type your password, not the password of root.

Configuring Xvfb

Perform these steps using the privileged user account.

  1. Execute the following commands in a command shell:

    $ sudo su - root

    # cp <INSTALL_DIR>/service/xvfb /etc/rc.d/init.d

    # /sbin/chkconfig --add xvfb

  2. Execute the following command. This command verifies that the installation was successful.

    # /sbin/chkconfig --list xvfb

    The following response appears:

    xvfb 0:off 1:off 2:off 3:on 4:off 5:on 6:off

  3. Manually start Xvfb by executing the following command:

    # /etc/rc.d/init.d/xvfb start

    The following response appears:

    Starting X Virtual Frame Buffer

  4. Type exit to stop running as root.

Modifying the default WebLogic Configuration

Make the following modifications in the WebLogic domain bin directory, such as /u01/app/oracle/Middleware/user_projects/domains/empirica/bin.

  1. Using the non-privileged user account, open the file setDomainEnv.sh in a text editor, such as vi.

  2. Type the following text at the bottom of the file. If you are not using UTC for the time zone, adjust the time zone in the text accordingly:

    # Local Customization
    export TZ=UTC
    export LANG=en_US.UTF-8
    export DISPLAY=localhost:99.0
    
  3. In the setDomainEnv.sh file, search for instances of ojdbc6dms.jar:

    • If no instances exist, continue to step 4.

    • If at least one instance exists, replace all instances with ojdbc6.jar from the $ORACLE_HOME folder.

    For example, edit the following text:

    Surrounding text describes a.jpg.

    to look like the following text:

    Surrounding text describes b.jpg.

    Note:

    In the previous examples, the text highlighted in green replaces the yellow text.

  4. Search for any instance of setting the JVM option java.awt.headless to true:

    • If no instances exist, continue to the next step.

    • If an instance exists, either remove or disable the instance.

    For example, replace the following text:

    EXTRA_JAVA_PROPERTIES="${EXTRA_JAVA_PROPERTIES} -Dem.oracle.home=/u01/app/oracle/Middleware/oracle_common -Djava.awt.headless=true" 
    

    with the following text:

    #EXTRA_JAVA_PROPERTIES="${EXTRA_JAVA_PROPERTIES} -Dem.oracle.home=/u01/app/oracle/Middleware/oracle_common -Djava.awt.headless=true"   
    EXTRA_JAVA_PROPERTIES="${EXTRA_JAVA_PROPERTIES} -Dem.oracle.home=/u01/app/oracle/Middleware/oracle_common"  
    
  5. Save the file, and exit the editor.

Starting WebLogic and the Node Manager

Perform these steps on the application server using the non-privileged user account.

  1. In a command shell, navigate to the WebLogic default domain bin directory, using a command such as the following:

    $ cd /u01/app/oracle/Middleware/user_projects/domains/empirica/bin

  2. If WebLogic is running, execute the command:

    $ ./stopWebLogic.sh

  3. To start WebLogic, execute the following command:

    $ nohup ./startWebLogic.sh > /dev/null &


    Note:

    Information messages might appear. You might need to press Enter to see the prompt.

  4. Verify that the Node Manager can be reached:

    1. In an internet browser, enter the URL for the WebLogic Administration Console, such as the following::

      https://<servername>:7002/console

    2. In the left pane, expand Environment, and select Machines.

      The Summary of Machines page appears.

    3. In the list of machines, select SignalMachine.

      The Settings for SignalMachine page appears.

    4. Select the Monitoring tab.

    5. Confirm that the status is Reachable. If status is Inactive, the Node Manager is not running.

  5. If the Node Manager is not running, perform the following steps to start it:

    1. Navigate to $WL_HOME/server/bin directory, such as:

      /u01/app/oracle/Middleware/wlserver_10.3/server/bin

    2. Execute the following command:

      $ nohup ./startNodeManager.sh > /dev/null &

  6. Exit the command shell.

  7. Log into the WebLogic Administration Console using the WebLogic administrator credentials provided to you by the system administrator. Typically, the address for the WebLogic Administration Console is the following:

    https://<servername>:7002/console

  8. In the Domain Structure section on the left, expand Environment, and select Servers.

  9. In the table of servers, select SignalServer.

    The Settings for SignalServer page appears.

  10. Select the Configuration tab, and select the Server Start sub-tab.

  11. In the Change Center section on the left, click Lock & Edit.

  12. In the Arguments field, type the following text:

    -Xms256m -Xmx2048m -XX:MaxPermSize=1024m


    Note:

    -XmxNNNNm and -XX:MaxPermSize are memory parameters that control the amount of memory used by the Empirica Signal application. You might need to adjust the parameters upwards to achieve appropriate performance. The numbers to use depend on the size of the data set installed and the number of users expected to access the system simultaneously.

  13. Click Save.

  14. In the Change Center section on the left, click Activate Changes.

    Your changes are activated. This might take a few moments.

  15. On the left, select Servers.

  16. Select the Control tab.

  17. Start or restart the SignalServer:

    1. In the table of servers, if the State of the SignalServer is SHUTDOWN, proceed to step d.

    2. In the table of servers, if the State of the SignalServer is RUNNING, select the check box for the server, expand the Shutdown drop-down menu, located above and below the table, and select Force Shutdown Now.

    3. Wait until the State of the server changes to SHUTDOWN. The page does not refresh automatically. To refresh the page, click the refresh button, located above the table, or click the refresh button for your browser.

    4. In the table of servers, select the check box for the SignalServer, and click Start, located above and below the table.

    5. Wait until the State of the server changes to STARTING and then RUNNING. The page does not refresh automatically. To refresh the page, click the refresh button, located above the table, or click the refresh button for your browser.