(Click to open topic with navigation)
This topic contains instructions on how to install, configure, and start Moab Accounting Manager (MAM).
Perform the following:
The first step is determining the number of different hosts (physical machines) required for your MAM installation.
Your MAM installation includes:
Each of these components can be installed on their own hosts (meaning the actual physical machine) or can be combined on same hosts. For example, the MAM Database can be installed on the same host as the MAM Server. Or the MAM Server may be installed on the same host you installed the Moab Server.
If your configuration will have the MAM PostgresSQL database on the same host as the Insight PostgreSQL database, the MAM PostgreSQL database must be same version as the Insight PostgreSQL database. See 3.8 Installing Moab Accounting Manager for supported database versions.
Once you have determined which components are installed on which hosts, complete the rest of the instructions for the MAM installation.
The instructions that follow in this topic will use the term Host after each component to reflect installing on a host (again, meaning the physical machine). For example, MAM Server Host and MAM Database Host. Depending on your configuration, Host may refer to as installed on its own machine or installed on the same machine as another component.
In this section:
MAM is commonly installed on the same host as Moab; however, in some cases you might obtain better performance by installing them on different hosts.
3.8.2.B Supported Operating Systems
MAM has been tested on the following variants of Linux:
MAM uses an RDBMS as a back end.
Adaptive Computing recommends that the database used by MAM does not reside on the same host as the database used by Insight. However, if you choose to install the MAM PostgreSQL database on the same host where the Insight PostgreSQL database, then the MAM PostgreSQL database must be same version as the Insight PostgreSQL database. See 3.8 Installing Moab Accounting Manager for supported database versions.
If your site is running firewall software on its hosts, you will need to configure the firewall to allow connections to the necessary ports.
Do the following as needed.
[root]# iptables-save > /tmp/iptables.mod [root]# vi /tmp/iptables.mod # Add the following lines immediately *before* the line matching # "-A INPUT -j REJECT --reject-with icmp-host-prohibited" -A INPUT -p tcp --dport 7112 -j ACCEPT [root]# iptables-restore < /tmp/iptables.mod [root]# service iptables save
[root]# iptables-save > /tmp/iptables.mod [root]# vi /tmp/iptables.mod # Add the following lines immediately *before* the line matching # "-A INPUT -j REJECT --reject-with icmp-host-prohibited" -A INPUT -p tcp --dport 443 -j ACCEPT [root]# iptables-restore < /tmp/iptables.mod [root]# service iptables save
[root]# iptables-save > /tmp/iptables.mod [root]# vi /tmp/iptables.mod # Add the following lines immediately *before* the line matching # "-A INPUT -j REJECT --reject-with icmp-host-prohibited" -A INPUT -p tcp --dport 5432 -j ACCEPT [root]# iptables-restore < /tmp/iptables.mod [root]# service iptables save
3.8.4 Install Dependencies, Packages, or Clients
In this section:
3.8.4.A Install and Initialize PostgreSQL Server
Moab Accounting Manager uses a database for transactions and data persistence.
The MAM PostgreSQL database may be installed on:
On the host where the MAM PostgreSQL database will reside, do the following:
These instructions assume you will be installing the MAM PostgreSQL database on a different host from where the Insight PostgreSQL database will reside.
If you wish to install both the MAM and the Insight PostgreSQL databases on the same host, different instructions are required. For example, you will need to enable the Insight-specific postgresql RPM repo by following the RPM instructions to prepare the host (see 3.2 Preparing the Host – Typical Method or 3.4 Preparing the Host – Offline Method) and you will need to modify the MAM PostgreSQL install instructions to reflect the different version of PostgreSQL required by Insight (see 3.10.2.C Install PostgreSQL for an example of how to install PostgreSQL for Insight).
[root]# yum install postgresql-server [root]# service postgresql initdb
Edit or add a "host" line in the pg_hba.conf file for the interface from which the MAM Server will be connecting to the database and ensure that it specifies a secure password-based authentication method (for example, md5).
[root]# vi /var/lib/pgsql/data/pg_hba.conf # Replace 127.0.0.1 with the IP address of the MAM Server Host if the # MAM PostgreSQL server is on a separate host from the MAM server. host all all 127.0.0.1/32 md5 host all all ::1/128 md5 ---
[root]# vi /var/lib/pgsql/data/postgresql.conf # Replace <mam-server-host> with the interface name from which the MAM server # will be connecting to the database. listen_addresses = '<mam-server-host>' ---
[root]# chkconfig postgresql on [root]# service postgresql restart
3.8.4.B Install Perl ReadLine (Optional)
Moab Accounting Manager can be optionally configured to provide command history editing functionality in the mam-shell command.
The perl-Term-ReadLine-Gnu package is recommended and is typically included in the standard repositories for the OS.
To install the perl-Term-ReadLine-Gnu package:
[root]# yum install perl-Term-ReadLine-Gnu
You must complete all the previous sections in this topic before installing MAM server. See the list of steps at the beginning of this topic.
On the MAM Server Host do the following:
yum install moab-accounting-manager
If installing on RHEL, some packages may not be found in the standard RHEL distribution repositories. If the packages are not found, you will need to install the missing dependencies from EPEL or other reputable repositories.
For example (for the current RHEL 7 repositories):
[root]# rpm -Uvh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-7.noarch.rpm [root]# yum install yum-utils [root]# yum-config-manager --disable epel [root]# yum install --enablerepo=epel,rhel-7-server-optional-rpms moab-accounting-manager
As the database user, create a database called mam and grant database privileges to the mam user.
PostgreSQL was installed and initialized earlier in this topic. See 3.8.4.A Install and Initialize PostgreSQL Server.
[root]# su - postgres
[postgres]$ psql
create database mam;
create user mam with password 'changeme!';
\q
[postgres]$ exit
The password you define must be synchronized with the database.password value in /opt/mam/etc/mam-server.conf.
[root]# vi /opt/mam/etc/mam-server.conf database.password = changeme!
[root]# su - mam [mam]$ psql mam < /usr/share/moab-accounting-manager/hpc.sql [mam]$ exit
[root]# chkconfig --add mam [root]# service mam start
If you plan to use the web GUI, then on the MAM GUI Host, do the following:
[root]# vi /etc/httpd/conf.d/ssl.conf <Directory "/var/www/cgi-bin"> ## Add these lines Options ExecCGI AddHandler cgi-script .cgi AllowOverride All Order allow,deny Allow from all </Directory> # Aliases for /cgi-bin Alias /cgi-bin/ /var/www/cgi-bin/ Alias /mam /var/www/cgi-bin/mam/ # Make shorter sub-dir name available DirectoryIndex index.cgi
[root]# getenforce Enforcing
SELinux can vary by version and architecture and that these instructions may not work in all possible environments.
If you used the --prefix=<prefix> configuration option when you configured Moab Accounting Manager, you must replace references to /opt/mam in the example below with the <prefix> you specified. See 2.14 Moab Accounting Manager Configuration Options.
[root]# cat > mamgui.te <<EOF module mamgui 1.0; require { type httpd_sys_script_t; type port_t; class capability setuid; class tcp_socket name_connect; } allow httpd_sys_script_t port_t:tcp_socket name_connect; allow httpd_sys_script_t self:capability setuid; EOF [root]# checkmodule -M -m -o mamgui.mod mamgui.te [root]# semodule_package -m mamgui.mod -o mamgui.pp [root]# semodule -i mamgui.pp [root]# setenforce 0 [root]# chcon -v -t httpd_sys_content_t /opt/mam/log [root]# setenforce 1
Alternatively, if your network domain can be secured from man-in-the-middle attacks, you could use a self-signed certificate. Often this does not require any additional steps since in many distributions, such as Red Hat, the Apache SSL configuration provides self-signed certificates by default.
If your configuration uses self-signed certificates, no action is required. RedHat
[root]# chkconfig httpd on [root]# service httpd restart
If you plan to use the web GUI, then on the MAM Server Host, do the following:
[root]# su - mam [mam]$ mam-set-password [mam]$ exit
3.8.8 Configure Moab Workload Manager to use Moab Accounting Manager
Do the following, where applicable:
[root]# vi /opt/moab/etc/moab.cfg
AMCFG[mam] TYPE=MAM HOST=<mam_server_host>
[root]# vi /opt/moab/etc/moab-private.cfg CLIENTCFG[AM:mam] KEY=<MAMSecretKey>
[root]# service moab restart
3.8.9 Initialize Moab Accounting Manager
You will need to initialize Moab Accounting Manager to function in the way that is most applicable to the needs of your site. See Initial Setup in the Moab Accounting Manager Administrator Guide to set up Moab Accounting Manager for your desired accounting mode.
Related Topics