Difference between revisions of "Installing Third-party Components for GlobalSight on Windows"

From Globalsight
Jump to navigation Jump to search
m (1 revision)
(Choosing passwords for GlobalSight components)
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
  
 
==Choosing passwords for GlobalSight components==
 
==Choosing passwords for GlobalSight components==
When installing the GlobalSight components, you define passwords for both MySQL and OpenLDAP. For simplicity, choose one cross-component password that you can use for all components.  
+
When installing the GlobalSight components, you define passwords for MySQL. Depending on your setup if MySQL 5.6.6 or later is installed, you may have password strength policy.
  
Use an 8-character password, that is the combination of the company name and an integer.
+
Use a strong password of minimum 8 characters.
  
 
For reference, the following is a list of usernames and passwords for all of the GlobalSight components. Your new cross-component GlobalSight password is shown as <password>.  
 
For reference, the following is a list of usernames and passwords for all of the GlobalSight components. Your new cross-component GlobalSight password is shown as <password>.  
Line 16: Line 16:
 
!width="400"|Description
 
!width="400"|Description
 
|-
 
|-
|MySQL|| root || root ||The root-user for MySQL. The default password is '''root''', but the password for your MySQL installation can be different. You need this for creating the GlobalSight MySQL resources
+
|MySQL|| root || root ||The root-user for MySQL. The default password is '''root''', but the password for your MySQL installation should be changed. You need this for creating the GlobalSight MySQL resources.
 
|-
 
|-
 
|MySQL|| globalsight || <password> ||The user that owns all of the GlobalSight tables
 
|MySQL|| globalsight || <password> ||The user that owns all of the GlobalSight tables

Latest revision as of 06:53, 20 May 2016

Developers
Go to: Getting Started Guide
Footer-logo.gif
System requirements

Installing GlobalSight
3rd party comps: Windows | Ubuntu
GlobalSight: Windows | Ubuntu
Desktop Icon

Setting up GlobalSight
Running GlobalSight Behind an Apache Reverse Proxy

Developing GlobalSight
GlobalSight Architecture
Getting the Code
Building and Deploying GlobalSight
GlobalSight Developer’s Guide
Setting up the Development Environment
Debugging GlobalSight
Designing the GlobalSight Adapters
GlobalSight Web Services API
Using the GlobalSight Web Services API Test Tool
Using the GlobalSight CVS Connector
Connecting to a CVS with the GlobalSight Desktop Icon

Upgrading GlobalSight
Comparing GlobalSight with WorldServer

Prerequisites

Choosing passwords for GlobalSight components

When installing the GlobalSight components, you define passwords for MySQL. Depending on your setup if MySQL 5.6.6 or later is installed, you may have password strength policy.

Use a strong password of minimum 8 characters.

For reference, the following is a list of usernames and passwords for all of the GlobalSight components. Your new cross-component GlobalSight password is shown as <password>.

Component Username Password Description
MySQL root root The root-user for MySQL. The default password is root, but the password for your MySQL installation should be changed. You need this for creating the GlobalSight MySQL resources.
MySQL globalsight <password> The user that owns all of the GlobalSight tables

Installing the MySQL Database Server

These instructions apply to MySQL Database Server version 5.5.30.

To install the MySQL database server and the GlobalSight application on separate servers, you need to install MySQL Client on the server that has the GlobalSight application. For instructions, see the Install the MySQL Client 5.5.30 section below.

Running the MySQL Server Setup Wizard

To run the wizard:

  1. Open the 3rd_party_software/mysql-<version>-rc-win32.zip file
  2. Double-click Setup.exe to launch the Setup Wizard
  3. Click Next when the welcome screen shows
  4. In Setup Type, choose Custom and click Next
  5. In Custom Setup, click Change and choose the install directory. Note that the data directory defaults to a user directory, and this is recommended to be changed.
  6. Click Next
  7. Click Install in Ready to Install the Program
  8. Click Next once the installation finishes
  9. Select Configure the MySQL Server now in Wizard Completed
  10. Click Finish

Configuring the database

To configure the database:

  1. Open the 3rd_party_software/mysql-<version>-rc-win32.zip file
  2. Click Next on the Welcome to the MySQL Server Instance Configuration Wizard page
  3. Select Detailed Configuration and click Next in Select a configuration type
  4. Select Server Machine and click Next in Select a server type
  5. Select Transactional Database only and click Next in Select the database usage
  6. Accept the default installation path and click Next in Select the drive for the InnoDB datafile
  7. Select Online Transaction Processing (OLTP) or set the concurrent connections to 500 manually and click Next in Set the approximate number of concurrent connections to the server
  8. Select Enable TCP/IP Networking, leave the Port Number as 3306, select Add firewall exception for this port, select Enable Strict Mode and click Next in Set the networking options
  9. Select Best Support for Multilingualism and click Next in Select the default character set
  10. Select Install as Windows Service, set the Service Name (for example MySQLGlobalSight), select Launch the MySQL Server automatically, select Include Bin Directory in Windows PATH and click Next in Set the Windows Options
  11. Select Modify Security Settings, set the password to root for the MySQL root user, confirm the password, do NOT check Enable root access from remote machines and click Next in Set the Security Options
  12. Click Finish to close the wizard after the configuration is finished
  13. Edit MySQL_HOME\my.ini by changing the value of the option max_allowed_packet to 16M. If this does not exist, add max_allowed_packet = 16M to the bottom of the mysqld section
  14. Restart the MySQL service

Creating the GlobalSight Database and User using MySQL Command Line

To create the database and user using the MySQL command line:

  1. Log in to mysql as root
    Type: mysql -uroot –p<mysql_root_password> -h<MySQL_Host_name_or_ip_Addr>
    Example: C:\>mysql –uroot –proot –hlocalhost
    Note: This assumes that the MySQL database server has been successfully installed and you are executing MySQL commands on the same host. This also assumes root as the MySQL root user's password
  2. Create the GlobalSight database
    Type: create database <GlobalSight Database Name>;
    Example: mysql> create database globalsight;
  3. Create the GlobalSight database username
    Type: create user '<User Name>'@'%' identified by '<Password>';
    Example: mysql> create user 'globalsight'@'%' identified by 'password';
  4. Grant all privileges on the GlobalSight database created above to the user created above)
    Type: grant all on <GlobalSight Database Name>.* to '<User Name>'@'%';
    Example: mysql> grant all on globalsight.* to 'globalsight'@'%';
  5. Commit
    Type: commit;
    Example: mysql> commit;

Testing the MySQL Setup

To test the MySQL setup:

  1. Log in to MySQL with the user created earlier. This example uses the MySQL user globalsight and password password
    Type: mysql –uglobalsight –ppassword –hlocalhost
  2. Connect to the MySQL database created earlier. This example uses the database name globalsight
    Type: connect globalsight;
  3. Check the status
    Type: status
    Note: The status of the Current database: and Current user: should match the information entered above. You can also use the same MySQL username, password and database name later in the GlobalSight setup
  4. Exit
    Type: exit
3rdwind1.jpg


Installing the MySQL Client

To install the MySQL Database Server and the GlobalSight application on separate servers, you need to install MySQL Client on the server with the GlobalSight application.

Otherwise skip this step.

To install the client:

  1. Double-click Setup.exe to launch the MySQL 5.5.30 Setup Wizard
  2. Wait for the welcome screen and then click Next
  3. Select Custom and click Next in Setup Type
  4. In Custom Setup:
    3rdwind2.jpg

    • De-select all features, and then select Client Programs->MySQL Command Line Shell and Client Programs->MySQL Command Line Utilities
    • Select Documentation, if needed
    • Click Change and adjust the install directory
    • Click Next
  5. Click Install in Ready to Install the Program
  6. Click Next once the installation finishes
  7. Click Finish in Wizard Completed
  8. Set environment variables for the system variable path:
    • Go to My Computer->Properties->Advanced->Environment Variables
    • Add <MySQL_home>\bin (example: C:\Program Files\MySQL\MySQL Server 5.1\bin) to the end of Path variable_value

Installing JDK

Before beginning, uninstall any versions previously installed.

To install JDK:

  1. Download the latest supported version. You can also find the setup file in the GlobalSight Software Package
  2. Select the installation directory - for example C:\jdk1.6.0_45 and click Next in Custom Setup
  3. Click Next in JRE installation
  4. In InstallShield Complete, click Finish
  5. Set the following system (not User) environment variables:
    • Open My Computer->Properties->Advanced-> Environment Variables
    • Add JAVA_HOME=<java_home> (for example: C:\jdk1.6.0_45)
    • Add %JAVA_HOME%\bin to the front of PATH variable

Installing JRE for Client

The client machine needs JRE to access the GlobalSight application.

To install JRE:

  1. Download the latest supported version. You can also find the setup file in the GlobalSight Software Package
  2. Double-click the .exe to install
  3. Select the install directory, if needed, and click Next all the way
  4. In InstallShield Complete, click Finish