Note that there are some explanatory texts on larger screens.

plurals
  1. POInstalling Talend MDM Server on Ubuntu Server 12.04
    primarykey
    data
    text
    <p>While Ubuntu Server 12.04 64-bit is a <a href="https://help.talend.com/display/TalendOpenStudioforMDMInstallationandUpgradeGuide53EN/1.3+Compatible+Platforms" rel="nofollow">recommended operating system</a> for Talend MDM Server I couldn't find any installation instructions for this OS. So I had to build my own. Any proposals and amendments to the instruction below are appreciated.</p> <ul> <li><p>Install Oracle Java 7 (see complete instruction <a href="http://www.webupd8.org/2012/01/install-oracle-java-jdk-7-in-ubuntu-via.html" rel="nofollow">here</a>)</p> <pre><code>$ sudo add-apt-repository ppa:webupd8team/java $ sudo apt-get update $ sudo apt-get install oracle-java7-installer </code></pre></li> <li><p>Create system group 'talend'</p> <p><code> $ sudo addgroup --system talend </code></p></li> <li><p>Create system user 'talend' and include it into 'talend' group. Note we use here /opt/talend directory both as home directory for 'talend' user and installation directory for the server</p> <p><code> $ sudo adduser --system --ingroup talend --home /opt/talend --disabled-login talend </code></p></li> <li><p>Setup JAVA_HOME as system-wide environment variable:</p> <p><code> $ echo JAVA_HOME=\"/usr/lib/jvm/java-7-oracle/\" | sudo tee -a /etc/environment </code> </p></li> <li><p>Copy TOS_MDM-Server-*.jar file on machine to be MDM Server</p></li> <li><p>Start Talend MDM Server installer:</p> <p><code> $ sudo -u talend java -jar TOS_MDM-Server-*.jar -console </code></p></li> <li><p>Follow instructions on screen and point installer to unpack software into /opt/talend directory.</p></li> <li><p>Start server to check it's working</p> <p><code> $ sudo -u talend /opt/talend/jboss-4.2.2.GA/bin/run.sh </code></p></li> <li>Stop MDM server pressing Ctrl+C in console</li> </ul> <p>Keep reading if you need to start your MDM Server on system boot up. I decided to use Upstart for that.</p> <ul> <li><p>Create new file </p> <p><code> $ sudo vim /etc/init/talend-mdm-server.conf </code></p></li> <li><p>Add to the job definition file text like this:</p> <pre><code>description "Talend MDM Server" start on runlevel [2345] stop on runlevel [016] respawn setuid talend script exec /opt/talend/jboss-4.2.2.GA/bin/run.sh -b 0.0.0.0 end script </code></pre></li> <li><p>Check if it's working</p> <p><code> $ sudo start talend-mdm-server </code></p></li> <li><p>Stop MDM server on success</p> <p><code> $ sudo stop talend-mdm-server </code></p></li> <li><p>Reboot machine to make sure everything's working</p> <p><code> $ sudo reboot </code></p></li> </ul> <p>Your Talend MDM Server instance should be running on system startup.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload