Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DFE7E6ED1 for ; Thu, 4 Aug 2011 14:39:50 +0000 (UTC) Received: (qmail 57047 invoked by uid 500); 4 Aug 2011 14:39:50 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 57012 invoked by uid 500); 4 Aug 2011 14:39:50 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 57004 invoked by uid 99); 4 Aug 2011 14:39:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Aug 2011 14:39:49 +0000 X-ASF-Spam-Status: No, hits=-2000.7 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Aug 2011 14:39:48 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 08229A77FB for ; Thu, 4 Aug 2011 14:39:28 +0000 (UTC) Date: Thu, 4 Aug 2011 14:39:28 +0000 (UTC) From: "Jonathan Ellis (JIRA)" To: commits@cassandra.apache.org Message-ID: <288086597.8025.1312468768029.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <2130663663.7999.1312468047941.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (CASSANDRA-2992) Cassandra doesn't start on Red Hat Linux due to hardcoded JAVA_HOME MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CASSANDRA-2992?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13079394#comment-13079394 ] Jonathan Ellis commented on CASSANDRA-2992: ------------------------------------------- Is this fixed by CASSANDRA-2785 ? > Cassandra doesn't start on Red Hat Linux due to hardcoded JAVA_HOME > ------------------------------------------------------------------- > > Key: CASSANDRA-2992 > URL: https://issues.apache.org/jira/browse/CASSANDRA-2992 > Project: Cassandra > Issue Type: Bug > Affects Versions: 0.8.3 > Environment: CentOS release 5.6 > Reporter: Taras Puchko > > On CentOS /etc/init.d/cassandra has > bq. export JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0/ > While there is no such a directory on our server it was ok for 0.8.2, because /usr/sbin/cassandra checked the executable > {quote} > if [ -x $JAVA_HOME/bin/java ]; then > JAVA=$JAVA_HOME/bin/java > else > JAVA=`which java` > fi > {quote} > But 0.8.3 builds replaced the above code with one that doesn't check if JAVA_HOME is set correctly. > {quote} > if [ -n "$JAVA_HOME" ]; then > JAVA="$JAVA_HOME/bin/java" > else > JAVA=java > fi > {quote} > That's why cassandra doesn't start anymore. > The correct fix would be to remove "export JAVA_HOME" from /etc/init.d/cassandra or set it only to correct path and only if it hasn't already been set. > It would also be nice to revert to "[ -x $JAVA_HOME/bin/java ]" in /usr/sbin/cassandra -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira