Jump to content
We've recently updated our Privacy Statement, available here ×

christian.guyot

Members
  • Posts

    4
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Security Advisories

Downloads

Everything posted by christian.guyot

  1. Hello Marianol, Thanks but I do have the stop/start scripts in place in the /home/ec2-user/Jaspersoft-5.4.1/ for jac/cmdline/jobserver... installed by the auto-installer. What I was missing was the script to add in the /etc/init.d/. With some search I found how to create it. It is now in place and seems to be working nicely. I attach it below. By the way, I had to activate the httpd service as well to have the svn server started. Regards, Christian. [root@ip]# cat /etc/init.d/jasperetl #! /bin/sh # Script used to manage the Jasper ETL as a service ### # chkconfig: 2345 98 55 # description: Manages the services jasperetl ### case "$1" in start) echo "Start jasperetl service ..." cd /home/ec2-user/Jaspersoft-5.4.1/jac/ ./start_jac.sh RETVAL=$? [ $RETVAL -eq 0 ] && echo " jac start success" [ $RETVAL -ne 0 ] && echo " jac start failure" cd /home/ec2-user/Jaspersoft-5.4.1/cmdline/ ./start_cmdline.sh RETVAL=$? [ $RETVAL -eq 0 ] && echo " cmdline start success" [ $RETVAL -ne 0 ] && echo " cmdline start failure" cd /home/ec2-user/Jaspersoft-5.4.1/jobserver/ ./start_jobserver.sh RETVAL=$? [ $RETVAL -eq 0 ] && echo " jobserver start success" [ $RETVAL -ne 0 ] && echo " jobserver start failure" echo "." ;; stop) echo "Stop jasperetl service ..." cd /home/ec2-user/Jaspersoft-5.4.1/jac/ ./stop_jac.sh RETVAL=$? [ $RETVAL -eq 0 ] && echo " jac stop success" [ $RETVAL -ne 0 ] && echo " jac stop failure" cd /home/ec2-user/Jaspersoft-5.4.1/cmdline/ ./stop_cmdline.sh RETVAL=$? [ $RETVAL -eq 0 ] && echo " cmdline stop success" [ $RETVAL -ne 0 ] && echo " cmdline stop failure" cd /home/ec2-user/Jaspersoft-5.4.1/jobserver/ ./stop_jobserver.sh RETVAL=$? [ $RETVAL -eq 0 ] && echo " jobserver stop success" [ $RETVAL -ne 0 ] && echo " jobserver stop failure" echo "." ;; status) echo "Checking status of jasperetl server ..." STATUS=`ps -ef | grep jac | grep -v "grep jac" | wc -l` if [ ${STATUS} -gt 0 ]; then echo " jac running." else echo " jac not running." fi STATUS=`ps -ef | grep org.talend.commandline | grep -v "grep org.talend.commandline" | wc -l` if [ ${STATUS} -gt 0 ]; then echo " cmdline running." else echo " cmdline not running." fi STATUS=`ps -ef | grep org.talend.remote.jobserver.server.TalendJobServerMain | grep -v "grep org.talend.remote.jobserver.server.TalendJobServerMain" | wc -l` if [ ${STATUS} -gt 0 ]; then echo " jobserver running." else echo " jobserver not running." fi ;; *) echo "Usage: /sbin/service jasperetl {start|stop|status}" exit 1 esac exit 0
  2. Thanks for your anser, but it is scrambled by the HTML formatting... Could you post it in plain text instead? Regards, Christian.
  3. Hello, I have installed JasperETL 5.4 on Linux and I try to access the H2 DB, via the data base configuration of the Administration Center. All username/password I have found on the examples and documentations are failing. The error message returned is: "Wrong user name or password [28000-160] 28000/28000". I have tried: "tisadmin"/"tisadmin", "admin@company.com"/"admin", "admin"/"admin", "admin"/"", "sa"/"",... nothing works! Can you help? Thanks, Christian.
  4. Hello, The Talend documentation mentions a script filer to be used to install the command line as a service in Linux. I do not find this file in my JasperETL package. Could you indicate where it is located or provide a sample of this file? Thanks, Christian.
×
×
  • Create New...