Date: Wed, 26 Jun 2013 08:20:00 GMT From: Mark Linimon <linimon@lonesome.com> To: freebsd-java@FreeBSD.org Subject: Re: java/179927: JBoss 7.2 Can't start with rc script Message-ID: <201306260820.r5Q8K0Nh063095@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/179927; it has been noted by GNATS. From: Mark Linimon <linimon@lonesome.com> To: bug-followup@FreeBSD.org Cc: Subject: Re: java/179927: JBoss 7.2 Can't start with rc script Date: Wed, 26 Jun 2013 03:17:45 -0500 ----- Forwarded message from horst leitenmueller <horst.leitenmueller@liwest.at> ----- Date: Wed, 26 Jun 2013 09:46:55 +0200 From: horst leitenmueller <horst.leitenmueller@liwest.at> To: Alexander Yerenkow <yerenkow@gmail.com> Cc: hasanalpinan@gmail.com, "freebsd-java@freebsd.org" <freebsd-java@FreeBSD.org> Subject: Re: java/179927: JBoss 7.2 Can't start with rc script X-Mailer: Apple Mail (2.1503) hi Alexander, this is not enough the script has more problems: 1) if i call the generate startup code i get the error message /usr/local/etc/rc.d/jboss72 start calls daemon -u www /usr/local/jboss-as-7.2.0.Final/bin/standalone.sh >> /var/log/jboss72/stdout.log 2>> /var/log/jboss72/stderr.log >> /var/log/jboss72/boot.log 2>> /var/log/jboss72/boot.log Ambiguous output redirect. if i remove the >> /var/log/jboss72/boot.log 2>> /var/log/jboss72/boot.log its working... 2) the jboss startup attributes are also missing jboss_args they are declared but not sent to standalone.sh -b 0.0.0.0 -bmanagement 0.0.0.0 -c standalone-full.xml as example daemon -u ${jboss72_user} ${JBOSS_HOME}/bin/standalone.sh ${jboss72_args} >> ${jboss72_logdir}/stdout.log 2>> ${jboss72_logdir}/stderr.log results in daemon -u www /usr/local/jboss-as-7.2.0.Final/bin/standalone.sh -b 0.0.0.0 -bmanagement 0.0.0.0 -c standalone-full.xml >> /var/log/jboss72/stdout.log 2>> /var/log/jboss72/stderr.log is same like direct call from terminal /usr/local/jboss-as-7.2.0.Final/bin/standalone.sh -b 0.0.0.0 -bmanagement 0.0.0.0 -c standalone.xml and it will start; jboss72_enable="YES" jboss72_jvm_opts=" -server -Xms128m -Xmx512m -XX:MaxPermSize=256m" >>> not working !! jboss72_args=" -b 0.0.0.0 -bmanagement 0.0.0.0 -c standalone-full.xml " # standalone.xml standalone-full.xml it will not work, because params are not given to standalone.sh 3) please add at the end & from the script not to block the terminal ; also for stopping 4) cool would be to be definable which i want to start standalone.sh / domain.sh 5) cool would be also to get info after installation that its needed to execute /usr/local/jboss-as-7.2.0.Final/bin/add-user.sh for administration access br horst ----- End forwarded message -----
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306260820.r5Q8K0Nh063095>