Installation Guide
- 1 Installation Prerequisites
- 2 Creating the Datameer X User
- 3 Creating Directories for Application, Cache, Logs, and Temporary Files (optional)
- 4 Switching the User and Changing the Working Directory
- 5 Downloading and Unzipping Datameer X
- 6 Configuring database
- 7 Installing the License
- 8 Starting Datameer X
- 9 Stopping Datameer X
- 10 Restarting Datameer X
- 11 Datameer X Graceful Shutdown
- 12 Service Check
- 13 Configuring Datameer X for a Kerberos Secured Cluster
- 14 Secure Hadoop Distributed Filesystem (HDFS)
- 15 Starting Testing
- 16 Best Practices for Installing Datameer X
- 16.1 Implement frequent database backups
- 16.1.1 Backup via crontab
- 16.1.2 Verify backup
- 16.2 Changing your Stored Data Directory
- 16.3 Change the default admin password
- 16.4 Downloading and installing Plug-ins
- 16.5 Configuring Datameer X for Enterprise
- 16.6 Review the Changes Implemented by Accessing the Change Log
- 16.7 Enable and Configure Transport Layer Security (TLS)
- 16.8 Configure Bash for Operations
- 16.9 Conductor.sh Commands and Parameters
- 16.1 Implement frequent database backups
Installation Prerequisites
Before installing Datameer X, complete the following prerequisites:
Install the Hadoop client
Datameer X application server, as well as all data nodes, are configured properly with host names, DNS, datetime, NTP, and other details
Datameer X application server, as well as all data nodes, have Java 1.8 (Oracle recommended)
Check this installation using the following commands:
java -versionandecho $JAVA_HOME
Datameer X application server has Oracle Java Cryptography Extension (JCE) already installed. See Java SE Security for more information.
Commands such as
hadoop,yarn, andmysqlcan be executed
Install MySQL client
For Datameer's application database, the MySQL server must be prepared with the necessary access
Grant administrative rights or
rootaccessEnsure Internet access to download packages and plug-ins or have necessary ZIP files downloaded and available
If using Kerberos, configure a Kerberos Secured cluster for secure impersonation
Creating the Datameer X User
Administrative rights are required to create the Datameer X user on the machine where Datameer X is being installed. This can be accomplished under the root account. Make sure the user ID is above 500 and that the account has enough resources and file descriptors available.
Create the user account under which the Datameer X service will be started and running later:
Create user
./usr/sbin/groupadd --system datameer ./usr/sbin/useradd --system --create-home --gid datameer datameerThese commands also create the directory
/home/datameer.
Check the max number of open files - global level or per-user limits (or both) - and set it to 64K if it isn't set already. This configuration needs to be done on all nodes within the cluster and might require a reboot.
Creating Directories for Application, Cache, Logs, and Temporary Files (optional)
For performance reasons and to have better control about where space on the file systems and on disks is used, create separate directories for application, cache, logs, and temporary files. Do this according the Linux Filesystem Hierarchy Standard (FHS). To create the directories and change the permissions you need administrative rights. Complete this task under the user account root.
Create the directories for application, cache, logs, and temporary files:
Create directories
mkdir -p /opt/datameer chown -R datameer:datameer /opt/datameer mkdir -p /var/cache/datameer chown -R datameer:datameer /var/cache/datameer mkdir -p /var/log/datameer chown -R datameer:datameer /var/log/datameer mkdir -p /tmp/datameer chown -R datameer:datameer /tmp/datameer
Switching the User and Changing the Working Directory
This should be the last task to which administrative rights are necessary.
Switch to the new Datameer X user and change to the working directory where Datameer X is being installed:
Switch user and directory
su - datameer cd /opt/datameerProceed from within the Datameer X installation directory and under the user account
datameeronly.
Downloading and Unzipping Datameer X
Get in touch with Datameer Support or your Datameer representative to receive the installation package download link.
Download and unzip the appropriate Datameer X package for your Hadoop cluster distribution:
INFO: If you already have a Datameer X installation, you can also start from here.
Switch user and directory
curl -s -k -o Datameer-<package>.zip "https://download.datameer.com.s3.amazonaws.com/releases/Datameer-<version>/<dist>/Datameer-<package>.zip?<AWSproperties>" ; unzip Datameer* Creating Symlinks for Future Updates
TIP
To be prepared for future upgrades, you should create symlinks to the current (or latest) package as well as for the log directory.
Create the symlink and change the working directory:
ln -s Datameer-<package> current
cd currentConfiguring database
INFO
By default, the Datameer X application runs with an HSQL file database that is created on the local filesystem under 'das-data/database/hsql-db'.
If you are setting up Datameer X for production use, Datameer strongly recommends MySQL instead of the HSQL file database.
MariaDB and PostgreSQL are also supported as alternative metastore database engines.
To define which database to use, make an entry in the 'live.properties' file under 'conf/live.properties':
For mysql
system.property.db.mode=mysqlFor mariadb
system.property.db.mode=mariadb For postgreSQL
system.property.db.mode=pgsqlDownloading and Installing the MySQL Database JDBC Connector
By default, the Datameer X application runs with an HSQL file database that is created on the local filesystem under das-data/database/hsql-db. If you are setting up Datameer X for production use, Datameer strongly recommends using MySQL instead of the HSQL file database.
Download the official MySQL JDBC driver ZIP file, extract the driver from the archive file, and copy it into the correct destination:
Download and install JDBC
# Lookup latest JDBC driver version JDBCDRV="$(curl -s -k 'https://dev.mysql.com/downloads/connector/j/' | grep -o -m 1 'mysql-connector-java.*zip')" # Download latest JDBC driver version curl -s -L0 -k -O "https://dev.mysql.com/get/Downloads/Connector-J/${JDBCDRV}" # Unzip driver package unzip mysql-connector* -d etc/custom-jars # Move only the necessary JAR file mv etc/custom-jars/mysql-connector*/*bin.jar etc/custom-jars # Clean up rm -rf etc/custom-jars/mysql-connector-java-?.?.??Double-check if
etc/custom-jarscontain the latestmysql-connector-java-<version>-bin.jar:Check installation
echo $JDBCDRV ll etc/custom-jars
Configuring Datameer X for MySQL Database
Datameer X service depends on the MySQL database. The MySQL database is used for writing to workbooks, permission changes, job execution, scheduling, and more. To function properly, a response time should be between ten and twenty milliseconds. To run the application in MySQL mode, the following changes need to be implemented.
Check the database connection:
mysqladmin version mysqladmin ping mysqladmin status echo q | telnet -e q `hostname` 3306 nc -z -w1 `hostname` 3306INFO: You can follow up later with using the Check if the Datameer X Application Database is Running and Accessible article.
Create a new database via the "./bin/mysql-init.sql" script:
for MYSQL 5.x and lower:
mysql -u <user> -p<password> -h <host/ip> -P <port> < bin/mysql-init.sql
for MYSQL 8.x and higher:mysql -u <user> -p<password> -h <host/ip> -P <port> < bin/mysql8x-init.sqlSet the deploy mode to "live" in the "./etc/das-env.sh" file:
# Change this to DAS_DEPLOY_MODE=live when you want to run in live mode against a mysql db export DAS_DEPLOY_MODE=liveSet the database name in the "./conf/default.properties" file:
# Set the name of the MySql database DATAMEER uses. system.property.db.name=dapExecute the command to initialize the database:
./bin/database.sh init
Downloading and Installing PostgreSQL JDBC Driver
Download the official PostgreSQL JDBC driver and copy it into
etc/custom-jarsfolder.
Configuring Datameer X for PostgreSQL Database
Create a new database via the "./bin/pgsql-init.pgsql" script:
sudo su postgres psql < ./bin/pgsql-init.pgsqlSet the deploy mode to "live" in the "./etc/das-env.sh" file:
# Change this to DAS_DEPLOY_MODE=live when you want to run in live mode against a mysql db export DAS_DEPLOY_MODE=liveSet the database name in the "./conf/default.properties" file:
# Set the name of the postgreSQL database DATAMEER uses. system.property.db.name=dap system.property.db.host=localhost system.property.db.port=5432Execute the command to initialize the database:
./bin/database.sh init
Installing the License
INFO
If you don't have a license, email the application's product ID to license@datameer.com and request the key. Find the product ID displayed at the 'Welcome' page.
See 'License Information' for information on how to update the license and for details about volume-based licensing.
If you have already received a Datameer X license:
Launch the Datameer X application and open the UI. The welcome page with all available licensing options is loaded.
Press the button "Activate" and upload the key you received from Datameer. The license is being activated. You will be redirected to the login page.
Starting Datameer X
Start the Datameer X service.
Working within the
currentinstallation directory, use the following commands:Start Datameer
# Start the Datameer X service ./bin/conductor.sh start # Check the process ID (PID) ps -ef | grep -i "java.*jetty.*datameer" | grep -v grep | tr -s " " | cut -d " " -f2 # Monitor the process booting and the log files cat logs/jvm-stdout.log; sleep 3; tail -F logs/`date +"%Y_%m_%d"`.stderrout.log logs/conductor.log
Stopping Datameer X
Stop the Datameer X service.
Working within the
currentinstallation directory, use the following commands:Start Datameer
# Stop the Datameer X service ./bin/conductor.sh stop # Monitor the process shutting down cat logs/jvm-stdout.log; sleep 3; tail -F logs/`date +"%Y_%m_%d"`.stderrout.log logs/conductor.log
Restarting Datameer X
Restart the Datameer X service.
Working within the
currentinstallation directory, use the following commands:Restart Datameer
# Restart the Datameer X service ./bin/conductor.sh restart # Monitor the process booting and the log files cat logs/jvm-stdout.log; sleep 3; tail -F logs/`date +"%Y_%m_%d"`.stderrout.log logs/conductor.log
Datameer X Graceful Shutdown
Gracefully shut down the Datameer X service.
Pause the Job Scheduler located under the Admin tab in Datameer.
Wait for current jobs to be marked as completed.
When all jobs have been completed, use the "stop" command on conductor.sh
After the Datameer X application has been stopped, perform needed maintenance.
With all maintenance completed, resume Datameer X using the "start" command on conductor.sh.
Under Datameer's Admin tab, resume the Job Scheduler.
Service Check
Check if the Datameer X service is running and accessible.
Working within the
currentinstallation directory, use the following commands:Check service
./bin/conductor.sh check ps -ef | grep -i "java.*datameer" | grep -v grep lsof -i tcp@`hostname`:8080 lsof -i tcp@`hostname`:8443 lsof -i tcp | grep 'datameer' echo -e "GET /login \n\n" | openssl s_client -connect `hostname`:8443 -quiet | grep -i -m 1 'datameer'Monitor if the service is running and accessible later:
Monitor service
curl -k "https://`hostname`:8443/watchdog" lsof -i -p ps -ef | grep -i "java.*jetty.*datameer" | grep -v grep | tr -s " " | cut -d " " -f2You can also monitor the Datameer X core directory size in HDFS.
Configuring Datameer X for a Kerberos Secured Cluster
Before configuring Datameer X for a Kerberos Secured cluster, test Kerberos authentication and job execution on CLI.
Send a test job to the cluster:
Test job execution
hadoop jar /<distribution-specific-path>/hadoop-mapreduce-examples-*.jar pi -Dmapreduce.job.queuename=root.default 3 10
To configure Datameer X for a Kerberos-secured cluster, follow the Secure Mode Configuration instructions.
Secure Hadoop Distributed Filesystem (HDFS)
You must have a properly configured connection to a Kerberos-secured cluster to use the tool to secure the Hadoop Distributed Filesystem (HDFS) .
For the initial setup of secure impersonation, execute the following commands:
Secure HDFS
# Check current available access rights hadoop fs -ls /user/datameer # Configure Datameer X Core Directories (aka Private Folder) ./bin/secure_hdfs_tool.sh -u -g <dasuser> hadoop fs -chown -R datameer:<dasuser> /user/datameer/.staging hadoop fs -chmod -R 770 /user/datameer/.staging # Check if changes are made correctly hadoop fs -ls /user/datameer
Starting Testing
Start the Datameer X service to do final testing.
Working within the
currentinstallation directory, use the following commands:Start Datameer
# Start the Datameer X service ./bin/conductor.sh start # Check the process ID (PID) ps -ef | grep -i "java.*jetty.*datameer" | grep -v grep | tr -s " " | cut -d " " -f2 # Monitor the process booting and the log files cat logs/jvm-stdout.log; sleep 3; tail -F logs/`date +"%Y_%m_%d"`.stderrout.log logs/conductor.log
Best Practices for Installing Datameer X
Implement frequent database backups
Datameer X service depends on the MySQL database, it is used for writing to workbooks, permission changes, job execution, scheduling, and more. It is highly recommended to backup the application database frequently.
Backup via crontab
0 * * * * mysqldump -u'dap' -p'dap' dap | gzip > /home/datameer/<company>_<system>_<datameer-version>_`date +\%Y\%m\%d_\%H\%M`.sql.gzDon't leave the backup unattended for a long time. Monitor the directory /home/datameer for its size!
Verify backup
# Check from time to tome how long the database dump will take and if it fits into the timeslot
time mysqldump -u'dap' -p'dap' dap | gzip > /home/datameer/<company>_<system>_<datameer-version>_`date +\%Y\%m\%d_\%H\%M`.sql.gz
# Verify from time to time if the files are OK
gzip -d /home/datameer/company>_<system>_<datameer-version>_<date>_<time>.sql.gz
head /home/datameer/<company>_<system>_<datameer-version>_<date>_<time>.sqlValidate the content. Don't leave backup files on the application server. Move backup files from /home/datameer to a safe and secure remote location.
Changing your Stored Data Directory
Use a path that doesn't depend on a Datameer X installation directory. Because the das-data folder is stored inside of your installation directory by default, you need to make a backup of your stored data every time you create a new distribution or upgrade.
Learn how to set a different path.
Change the default admin password
Log in and change the default admin password following the instructions on managing user accounts.
Downloading and installing Plug-ins
If you are setting up Datameer X for production use, it is most likely in a Kerberos Secured environment. To use Kerberos, an additional plug-in is necessary. This Datameer X plug-in is part of the Advanced Governance module.
Download the Kerberos plug-in and install it.
Download and install Kerberos plugin
# Look up for corresponding Kerberos plug-in version before curl -s -k -o plugin-kerberos-<version>.zip "https://download.datameer.com.s3.amazonaws.com/releases/Datameer-<version>/plug-ins_Advanced_Governance/plugin-kerberos-<version>.zip?<AWSproperties>" ; mv plugin-kerberos* etc/custom-pluginsIf you are an authorized Enterprise customer, you can request the download link from your Customer Success Manager (CSM).
Configuring Datameer X for Enterprise
By default, the application runs with settings where files are created on the local filesystem under the current directory. To address enterprise requirements, some changes need to be implemented.
To avoid any mismatch in the configuration files or incompatibility with different versions, don't copy over configuration files from other versions. Make changes every time based on the originally delivered versions.
Configure defaults
conf/default.properties
# Create a backup of the original configuration file cp conf/default.properties conf/default.properties.original # Move the cache for workbook-previews and dfs sed -i "s/\(localfs.cache-root=\).*\$/\1\/var\/cache\/datameer/" conf/default.properties # Move the temp folder for local-execution sed -i "s/\(localfs.temporary-files=\).*\$/\1\/tmp\/datameer/" conf/default.properties # Provide REST API access by setting failed.login.attempts.max=0 sed -i "s/\(failed.login.attempts.max=\).*\$/\10/" conf/default.properties # Switch off tutorial bar sed -i "s/\(system.property.integratedTutorial.enabled=\).*\$/\1false/" conf/default.properties # Depending on your infrastructure and data set the timezone UTC sed -i "s/\(system.property.das.default-timezone=\).*\$/\1UTC/" conf/default.properties # Create a log of changes made diff -e conf/default.properties.original conf/default.properties > changes.default.properties # Do not expose stack traces to end users sed -i "s/\(verbose.error.reporting=\).*\$/\1false/" conf/default.propertiesConfigure system properties
conf/live.properties
# Create a backup of the original configuration file cp conf/live.properties conf/live.properties.original # Name the address and port used to connect to Datameer X UI # The value given will be used in email notification only EXT_DM_URL="<hostname>.<domain>.<tld>" sed -i "s/\(system.property.server.address=\).*\$/\1https:\/\/${EXT_DM_URL}:8443/" conf/live.properties # Comment out temporary file directory since changes were implemented in default sed -i '/localfs.temporary-files=/ s/^#*/# /' conf/live.properties # Create a log of changes made diff -e conf/live.properties.original conf/live.properties > changes.live.propertiesConfigure UI behavior
conf/skin-default.properties
# Create a backup of the original configuration file cp conf/skin-default.properties conf/skin-default.properties.original # Make UI access faster sed -i '/#.*menu.show-welcome.visibility=/s/^#//' conf/skin-default.properties sed -i '/#.*dialog.welcome.visibility=/s/^#//' conf/skin-default.properties sed -i '/#.*page.home.visibility=/s/^#//' conf/skin-default.properties # Provide REST API access by setting force.license-agreement=false sed -i "s/\(force.license-agreement=\).*\$/\1false/" conf/skin-default.properties # Create a log of changes made diff -e conf/skin-default.properties.original conf/skin-default.properties > changes.skin-default.properties
Review the Changes Implemented by Accessing the Change Log
Review and back up change log
changes.*
more changes.* cp changes.* /home/datameerBack up the installation history
history
history > /home/datameer/install_command.log cp ~/.bash_history /home/datameer
INFO
Validate the changes made. Move files from /home/datameer to a safe and secure remote location.
Enable and Configure Transport Layer Security (TLS)
INFO
Before the next steps, consider reverse proxies or a load balancer to offload the SSL traffic or to use wild card certificates. In that case, you only need to configure rewrite handling.
Enable TLS for use with Datameer X in production environments. As Datameer X is packed with Jetty 9, you only need to enable modules.
Enable TLS:
Enable modules
# Check default configuration java -jar start.jar --list-config | grep -i 'etc/jetty*' # Add SSL and HTTPS to the startup modules java -jar start.jar --add-to-start=ssl,https # Check final configuration java -jar start.jar --list-configConfigure TLS for Embedded Jetty (for more security)
To change the HTTPS port follow the instructions under Configure TLS
Use your own custom certificate
You can proceed further with Enabling SSL for MySQL service as well.
Configure Bash for Operations
Set up shell aliases for most common commands to make work easier, faster, and less error prone.
Working within the
currentDatameer X installation directory, add the following aliases:Create Aliases
# Edit your profile file nano ~/.bash_profile~/.bash_profile
# Add aliases alias dmpid='ps -ef | grep -i "java.*jetty.*datameer" | grep -v grep | tr -s " " | cut -d " " -f2' alias dmver='ps -ef | grep -i "java.*datameer" | grep -v grep' alias dmstart='./bin/conductor.sh start' alias dmstop='./bin/conductor.sh stop' alias dmcheck='./bin/conductor.sh check' alias dmkill="kill `dmpid`" alias dmpath='readlink `pwd`; pwd' alias dmdap='mysql -udap -pdap dap -Bse' alias dmsqlping='for ((i=1; i<=5; i++)); do time -p dmdap "START TRANSACTION; INSERT INTO test_entity2 (version) VALUES ('1'); UPDATE test_entity2 SET version = 2 WHERE version = 1; DELETE FROM test_entity2 WHERE version = 2; ROLLBACK;"; sleep 1; done' alias jettyconf='java -jar start.jar --list-config' alias classpath='yarn classpath | tr ":" ","' alias dminit="kinit datameer@<DOMAIN>.<TLD> -k -t /home/datameer/datameer.keytab" alias dmfs="hadoop fs -du -h /user/datameer" # Most important alias to set, since this will cover all three phases of Datameer's boot process alias dmlog='cat logs/jvm-stdout.log; sleep 3; tail -F logs/`date +"%Y_%m_%d"`.stderrout.log logs/conductor.log'Load profile
# Load your profile file source ~/.bash_profile
Conductor.sh Commands and Parameters
Usage: conductor.sh <command> <option>
Commands:
start- Starts the conductorstop- Stops the conductorrestart- Restarts the conductorcheck- Checks if the conductor is already running
Options:
--injectExamples- Injects example import jobs and workbooks on start-up. (This option only works the first time when starting Datameer)--resetPassword- Resets the admin password to default value.--jobschedulerPaused- Previously scheduled jobs are paused until re-enabling the job scheduler.--jmx- Starts JMX management extension for managing and monitoring DAS.--profile- Runs conductor with attached profiling agent.--profile-sampling- Runs conductor with cpu profiling (sampling) activated.--profile-tracing- Runs conductor with cpu profiling (tracing) activated.--profile-memory- Runs conductor with cpu and memory profiling (sampling) activated.--help- Opens the help dialog.
Examples:
How to Monitor Datameer X via Java Management Extensions (JMX)
How to Check if a Datameer X Service is Running and Accessible