Installing and Configuring Operating Systems
Installing a Supported Operating System
The admin user's first task is to install a supported operating system on both nodes that will support the Orchestrator application. See General Requirements for details on supported operating systems.
Updating Your Environment
# yum –y update
Checking Network Settings and Names
Confirm that your network settings are correctly configured and that each host has a unique host name that is properly configured within the name resolution mechanism you use (DNS, hosts file, and so on). Each host must be able to resolve its own name, as well as the name of the other node.
# hostname
haorchestratornode_id.my_domain.comConfiguring Local Firewalls
# service iptables stop
iptables: flushing firewall rules: [ OK ]
iptables: Setting chaings to policy ACCEPT: filter [ OK ]
iptables: Unloading modules: [ OK ]
# service ip6tables
ip6tables: Flushing firewall rules: [ OK ]
ip6tables: Setting chains to policy ACCEPT: filter [ OK ]
ip6tables: Unloading modules: [ OK ]
# chkconfig iptables off
# chkconfig ip6tables offIf
using CentOS 7 or RHEL 7, you must run two final commands to disable the
firewall:# systemctl stop firewalld
# systemctl disable firewalldDisabling SELinux on All Servers
# sestatus
SELinux status: disabledCreating User Accounts and Groups on Each Orchestrator Server (For Non-Root User)
The installation of the Aspera Common Components automatically creates a mysql user.
Ensure that the permissions defined on an NFS server are appropriate for the shared directories (in other words, consistent with what has already been defined on the shared directories).
NFS v. 4 uses ID mapping to ensure the enforcement of shared directory ownership; it must be configured on the NFS server and each NFS client in a way that avoids access problems with Orchestrator and ACM.
Mounting Remote File Systems on Each Orchestrator Server
| Mount Point | Usage | Owner | Permissions |
|---|---|---|---|
| /mnt/shared/orchestrator/mysql_data Note: Replace
/mnt/shared/orchestrator/mysql_data
by the mount point you chose for mysql
data
|
Stores shared MySQL data files | mysql:mysql | drwx------ |
| /mnt/shared/orchestrator/orchestrator_var_data | Stores Orchestrator upload and download files | nobody.nobody | drwx------ |
| /mnt/shared/orchestrator/acm_data/ | Stores shared ACM files | nobody.nobody | drwx------ |