<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Talend Container Wrapper in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304924#M76646</link>
    <description>I usually do not use the Talend installer. I guess you mean der Karaf Container?&lt;BR /&gt;All the Talend services should run under the talend user! Otherwise they would not be able to use their own resources.</description>
    <pubDate>Mon, 29 Aug 2016 11:39:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-08-29T11:39:43Z</dc:date>
    <item>
      <title>Talend Container Wrapper</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304923#M76645</link>
      <description>I've currently got a case active with Talend support, but I also thought I'd reach out to the community about my issue because I don't really think they are able to diagnose the problem, since it's more relate to Linux. 
&lt;BR /&gt;We're running Talend ESB on CentOS Linux release 7.2.1511, and cannot get the container wrapper to start at startup. &amp;nbsp;I have followed the documentation to the letter, and can start the services manually (service TALEND-CONTAINER-service start) with the root user, but will not start upon reboot. &amp;nbsp;I cannot find a log of what the problem could be either, so I'm flying blind. 
&lt;BR /&gt;In terms of the startup - is the wrapper dependent upon any other services (commandline, tac)? 
&lt;BR /&gt;All the other Talend are run as "talenduser" - should the wrapper also be run as this user (RUN_AS_USER in&amp;nbsp;/esb/container/bin/TALEND-CONTAINER-service)? 
&lt;BR /&gt;A definitive answer to these would help to provide some clarity. 
&lt;BR /&gt;Thanks</description>
      <pubDate>Sat, 16 Nov 2024 10:25:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304923#M76645</guid>
      <dc:creator>c0utta</dc:creator>
      <dc:date>2024-11-16T10:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Container Wrapper</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304924#M76646</link>
      <description>I usually do not use the Talend installer. I guess you mean der Karaf Container?&lt;BR /&gt;All the Talend services should run under the talend user! Otherwise they would not be able to use their own resources.</description>
      <pubDate>Mon, 29 Aug 2016 11:39:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304924#M76646</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-29T11:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Container Wrapper</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304925#M76647</link>
      <description>Thanks for your reply.&lt;BR /&gt;Yes, I am talking about the Karaf container, which isn't installed as a part of the standard Talend installer.&lt;BR /&gt;I have set RUN_AS_USER = talenduser in /esb/container/bin/TALEND-CONTAINER-service but still no luck, but at least I know that I should be using this user.&lt;BR /&gt;Are there any logs that I can check maybe?</description>
      <pubDate>Mon, 29 Aug 2016 15:12:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304925#M76647</guid>
      <dc:creator>c0utta</dc:creator>
      <dc:date>2016-08-29T15:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Container Wrapper</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304926#M76648</link>
      <description>I usually use such a script:
&lt;BR /&gt;
&lt;PRE&gt;#!/bin/bash&lt;BR /&gt;### BEGIN INIT INFO&lt;BR /&gt;# Provides: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; talend-runtime&lt;BR /&gt;# Required-Start: &amp;nbsp; &amp;nbsp; &amp;nbsp; $local_fs $remote_fs $network $time&lt;BR /&gt;# Required-Stop: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$local_fs $remote_fs $network $time&lt;BR /&gt;# Should-Start: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $syslog&lt;BR /&gt;# Should-Stop: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$syslog&lt;BR /&gt;# Default-Start: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2 3 4 5&lt;BR /&gt;# Default-Stop: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 1 6&lt;BR /&gt;# Short-Description: &amp;nbsp; &amp;nbsp;Talend Runtime&lt;BR /&gt;### END INIT INFO&lt;BR /&gt;&lt;BR /&gt;RUN_AS_USER=talend&lt;BR /&gt;case "$1" in&lt;BR /&gt; start)&lt;BR /&gt; &amp;nbsp; echo $"Starting Talend Job Server"&lt;BR /&gt; &amp;nbsp; /bin/su - $RUN_AS_USER -c '/opt/talend/6.1.1/runtime/server/bin/start &amp;amp;'&lt;BR /&gt;;;&lt;BR /&gt; stop)&lt;BR /&gt; &amp;nbsp; echo $"Stopping Talend Job Server"&lt;BR /&gt; &amp;nbsp; /bin/su - $RUN_AS_USER -c '/opt/talend/6.1.1/runtime/server/bin/stop &amp;amp;'&lt;BR /&gt; &amp;nbsp;;;&lt;BR /&gt; *)&lt;BR /&gt; &amp;nbsp;echo $"Usage: $0 {start|stop}"&lt;BR /&gt;exit 1&lt;BR /&gt;;;&lt;BR /&gt;esac&lt;BR /&gt;exit $RETVAL&lt;/PRE&gt;
&lt;BR /&gt;You need to change the path here but this script surely starts the container.
&lt;BR /&gt;I would start the error analysis with logging in a talend user and run the start command and check the output.
&lt;BR /&gt;If you have tried to start the container with different users, I suggest you fix the file system rights preventively
&lt;BR /&gt;
&lt;BR /&gt;
&lt;PRE&gt;sudo chown -R talend:talend /your/path/to/karaf&lt;/PRE&gt;</description>
      <pubDate>Mon, 29 Aug 2016 17:04:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304926#M76648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-29T17:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Container Wrapper</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304927#M76649</link>
      <description>I replaced the standard script with your script - bingo, it now works.&lt;BR /&gt;This means that the script that comes with Talend ESB is buggy, but their script comes from TanukiSoftware so I'm wondering where to report the bug.&lt;BR /&gt;I'm also wondering if it's an edge case with CentOS 7, because I'm sure it works on other Linux varieties.&amp;nbsp;</description>
      <pubDate>Tue, 30 Aug 2016 14:47:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304927#M76649</guid>
      <dc:creator>c0utta</dc:creator>
      <dc:date>2016-08-30T14:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Container Wrapper</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304928#M76650</link>
      <description>ok fine, do not forget to use the update-rc command to allow the start when the system boots. 
&lt;BR /&gt;We use CentOS as well as Debian or SuSE - whatever the customer prefers. 
&lt;BR /&gt;Take care under Debian 8 (especially if you have installed it from scratch) the Init-V start is not enabled anymore. 
&lt;BR /&gt;You can of course add your script to /etc/init.d/ but you have to setup a so called your_name.service file referencing to your init.d script. 
&lt;BR /&gt;In one of the next Talend releases the installer will create such a config file too.&amp;nbsp;</description>
      <pubDate>Tue, 30 Aug 2016 15:27:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Container-Wrapper/m-p/2304928#M76650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-30T15:27:24Z</dc:date>
    </item>
  </channel>
</rss>

