Return-Path: X-Original-To: apmail-qpid-users-archive@www.apache.org Delivered-To: apmail-qpid-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EBFA118ACB for ; Thu, 17 Mar 2016 16:24:10 +0000 (UTC) Received: (qmail 63139 invoked by uid 500); 17 Mar 2016 16:24:05 -0000 Delivered-To: apmail-qpid-users-archive@qpid.apache.org Received: (qmail 63104 invoked by uid 500); 17 Mar 2016 16:24:05 -0000 Mailing-List: contact users-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@qpid.apache.org Delivered-To: mailing list users@qpid.apache.org Received: (qmail 63087 invoked by uid 99); 17 Mar 2016 16:24:05 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Mar 2016 16:24:05 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 2EEE21A0B0C for ; Thu, 17 Mar 2016 16:24:04 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.273 X-Spam-Level: X-Spam-Status: No, score=-0.273 tagged_above=-999 required=6.31 tests=[KAM_INFOUSMEBIZ=0.75, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, URIBL_BLACK=4] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id 67W17R3QggN2 for ; Thu, 17 Mar 2016 16:24:02 +0000 (UTC) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTPS id ABB765F1F3 for ; Thu, 17 Mar 2016 16:23:55 +0000 (UTC) Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 263FA29ACD for ; Thu, 17 Mar 2016 16:23:55 +0000 (UTC) Received: from marigold ([10.18.97.146]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u2HGNsUT013025 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Thu, 17 Mar 2016 12:23:54 -0400 Message-ID: <1458231833.3542.26.camel@redhat.com> Subject: Re: ./qpidd: symbol lookup error: ./qpidd: undefined symbol: From: Andrew Stitcher To: users@qpid.apache.org Date: Thu, 17 Mar 2016 12:23:53 -0400 In-Reply-To: References: Organization: Red Hat Inc Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 On Thu, 2016-03-17 at 16:39 +0530, Kaushal Shriyan wrote: > ...Further to the earlier post, please find the below pastebin > > http://sprunge.us/EfAI pastebin for ldd -d -r > /opt/apigee4/share/apache-qpid/sbin/qpidd I'm a little puzzled by this and by what you are attempting to do. Are you building your own qpidd to run? Are you running the system qpidd? If the latter why is it in /opt/...../qpidd? If you are trying to run your own qpidd in /opt/... then you need to tell it to find *the libraries that you compiled when you made it* rather than the system installed libraries. I assume that you did something like: cmake -DCMAKE_INSTALL_PREFIX=/opt/..... ... ... make install In which case cmake installed the things it made it the location you specified but it assumes that you have set up things so that they will run correctly from there. In particular this means that the Shared library search path must include the relevant lib directory in the install area. >From your qpidd path I guess that this might work: LD_LIBRARY_PATH=/opt/apigee4/share/apache- qpid/lib64 /opt/apigee4/share/apache-qpid/sbin/qpidd -v Andrew --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@qpid.apache.org For additional commands, e-mail: users-help@qpid.apache.org