<?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: Unable to get command line to start automatically in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Unable-to-get-command-line-to-start-automatically/m-p/2363896#M127720</link>
    <description>Hi, 
&lt;BR /&gt;Could you read the document 
&lt;A href="https://help.talend.com/search/all?query=Example+of+CommandLine+daemon+file&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:Example of CommandLine daemon file&lt;/A&gt; to launch the Command Line? Our support team are still addressing your issue. Feel free to contact them.(typing may be more better than saying if Poor network quality 
&lt;BR /&gt;for sound) 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina</description>
    <pubDate>Thu, 15 Aug 2013 04:18:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-08-15T04:18:04Z</dc:date>
    <item>
      <title>Unable to get command line to start automatically</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unable-to-get-command-line-to-start-automatically/m-p/2363895#M127719</link>
      <description>I have a new installation of TIS 5.2.2 on CentOS 6. I chose to install services durning the automated installer, then used chkconfig to turn all Talend-* services on during run levels 2345. Tomcat, and everything else comes up automatically after a reboot, expect the commandline. I couldn't understand a word the Talend Enterpise support rep was saying through his heavy mouth breathing on the phone, so I'm reaching out to the forums. Please help...it's much appreciated!</description>
      <pubDate>Sat, 16 Nov 2024 11:56:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unable-to-get-command-line-to-start-automatically/m-p/2363895#M127719</guid>
      <dc:creator>rwnetwork</dc:creator>
      <dc:date>2024-11-16T11:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to get command line to start automatically</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unable-to-get-command-line-to-start-automatically/m-p/2363896#M127720</link>
      <description>Hi, 
&lt;BR /&gt;Could you read the document 
&lt;A href="https://help.talend.com/search/all?query=Example+of+CommandLine+daemon+file&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:Example of CommandLine daemon file&lt;/A&gt; to launch the Command Line? Our support team are still addressing your issue. Feel free to contact them.(typing may be more better than saying if Poor network quality 
&lt;BR /&gt;for sound) 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina</description>
      <pubDate>Thu, 15 Aug 2013 04:18:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unable-to-get-command-line-to-start-automatically/m-p/2363896#M127720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-15T04:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to get command line to start automatically</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unable-to-get-command-line-to-start-automatically/m-p/2363897#M127721</link>
      <description>Thanks for your reply. The support tech sent me the same script, but it isn't working. 
&lt;BR /&gt;Here's what I'm using: 
&lt;BR /&gt; cat /etc/init.d/talend-cmdline 
&lt;BR /&gt;#!/bin/bash 
&lt;BR /&gt;# Basic support for IRIX style chkconfig 
&lt;BR /&gt;### 
&lt;BR /&gt;# chkconfig: 235 98 40 
&lt;BR /&gt;# description: Starts talend components on the server 
&lt;BR /&gt;### 
&lt;BR /&gt;#JAVA_HOME environment variable needs to be set so that all the services can find it and the associated 
&lt;BR /&gt;#class path jars 
&lt;BR /&gt;#check to see if it's already set. 
&lt;BR /&gt;export JAVA_HOME= 
&lt;BR /&gt;if 
&lt;BR /&gt;then 
&lt;BR /&gt; #not set, so set it to a default value 
&lt;BR /&gt; export JAVA_HOME=/usr/local/java/bin 
&lt;BR /&gt;fi 
&lt;BR /&gt;if 
&lt;BR /&gt;then 
&lt;BR /&gt; export TALEND_HOME="/opt/Talend-5.2.2" 
&lt;BR /&gt;fi 
&lt;BR /&gt;#set the command line's home path, which currently is $TALEND_HOME/cmdline 
&lt;BR /&gt;COMMANDLINE_HOME="/opt/Talend-5.2.2/cmdline" 
&lt;BR /&gt;# include the red hat init functions. 
&lt;BR /&gt;if 
&lt;BR /&gt;then 
&lt;BR /&gt; . /etc/rc.d/init.d/functions 
&lt;BR /&gt;fi 
&lt;BR /&gt;#set the return value of the script to 0, which means no error. 
&lt;BR /&gt;RETVAL=0 
&lt;BR /&gt;start() { 
&lt;BR /&gt; # go to command line's home directory and call start_cmdline 
&lt;BR /&gt; # (note: on 64bit JVM, make sure the start_cmdline script calls the correct TIS executable) 
&lt;BR /&gt; echo -n "starting talend commandline server..." 
&lt;BR /&gt; cd $COMMANDLINE_HOME 
&lt;BR /&gt; ./start_cmdline.sh 
&lt;BR /&gt; echo " done." 
&lt;BR /&gt; # echo_success 
&lt;BR /&gt;} 
&lt;BR /&gt;stop () { 
&lt;BR /&gt; # shutdown the commandline server by first calling nicely to the 
&lt;BR /&gt; # stop_cmdline script and then terminating the process. 
&lt;BR /&gt; # you can also call the stop_cmdline.sh 
&lt;BR /&gt; echo -n "shutting down talend commandline server..." 
&lt;BR /&gt; cd $COMMANDLINE_HOME 
&lt;BR /&gt; ./stop_cmdline.sh 
&lt;BR /&gt; PIDS=`ps aux | grep talend.commandline | awk '{print $2}'` 
&lt;BR /&gt; kill -9 $PIDS &amp;gt; /dev/null 2&amp;gt;&amp;amp;1 &amp;lt; /dev/null 
&lt;BR /&gt; echo " done." 
&lt;BR /&gt;} 
&lt;BR /&gt;restart() { 
&lt;BR /&gt; stop 
&lt;BR /&gt; sleep 3 
&lt;BR /&gt; start 
&lt;BR /&gt;} 
&lt;BR /&gt;reload() { 
&lt;BR /&gt; restart 
&lt;BR /&gt;} 
&lt;BR /&gt;case "$1" in 
&lt;BR /&gt;start) 
&lt;BR /&gt; start 
&lt;BR /&gt; ;; 
&lt;BR /&gt;stop) 
&lt;BR /&gt; stop 
&lt;BR /&gt; ;; 
&lt;BR /&gt;reload) 
&lt;BR /&gt; reload 
&lt;BR /&gt; ;; 
&lt;BR /&gt;restart) 
&lt;BR /&gt; restart 
&lt;BR /&gt; ;; 
&lt;BR /&gt;condrestart) 
&lt;BR /&gt; if ; then 
&lt;BR /&gt; restart 
&lt;BR /&gt; fi 
&lt;BR /&gt; ;; 
&lt;BR /&gt;status) 
&lt;BR /&gt; echo -n "Checking status of talend commandliner server...." 
&lt;BR /&gt; STATUS=`ps -ef | grep org.talend.commandline | grep -v "grep org.talend.commandline" | wc -l` 
&lt;BR /&gt; if ; then 
&lt;BR /&gt; #all are running. 
&lt;BR /&gt; #echo_success 
&lt;BR /&gt; echo " ok." 
&lt;BR /&gt; else 
&lt;BR /&gt; #not all running. 
&lt;BR /&gt; #echo_failure 
&lt;BR /&gt; echo " failed." 
&lt;BR /&gt; fi 
&lt;BR /&gt; ;; 
&lt;BR /&gt;*) 
&lt;BR /&gt; echo $"Usage: $0 {start|stop|status|restart|condrestart|reload}" 
&lt;BR /&gt; RETVAL=3 
&lt;BR /&gt;esac 
&lt;BR /&gt;echo 
&lt;BR /&gt;exit $RETVAL</description>
      <pubDate>Thu, 15 Aug 2013 19:40:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unable-to-get-command-line-to-start-automatically/m-p/2363897#M127721</guid>
      <dc:creator>rwnetwork</dc:creator>
      <dc:date>2013-08-15T19:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to get command line to start automatically</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unable-to-get-command-line-to-start-automatically/m-p/2363898#M127722</link>
      <description>Hi, &lt;BR /&gt;Thanks your response.&lt;BR /&gt; Please keep in touch with support team. We are making a investigation on your issue and come back to you asap.&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Fri, 16 Aug 2013 03:09:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unable-to-get-command-line-to-start-automatically/m-p/2363898#M127722</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-16T03:09:47Z</dc:date>
    </item>
  </channel>
</rss>

