VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 8:36 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
I’ve built PJSIP a few months ago on a server that was 12.04 and can’t remember how I got past this same issue. I’ve looked at the links I’ll put below and the comments section where others had the issue, but those tips aren’t helping either.
Basically everything seems to compile and install correctly, but then the “ldconfig –p | grep pj” doesn’t show anything. So ldconfig when ran by itself isn’t picking up on the install of pjsip. Also when going into the process of menuselect it shows that it’s not available as a resource.
https://wiki.asterisk.org/wiki/display/AST/Building+and+Installing+pjproject
https://www.ringroost.com/blog/installing-asterisk-13-from-source-on-ubuntu-14/ |
|
Back to top |
|
|
jcolp at digium.com Guest
|
Posted: Wed Sep 23, 2015 8:39 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Ryan, Travis wrote:
Quote: | I’ve built PJSIP a few months ago on a server that was 12.04 and can’t
remember how I got past this same issue. I’ve looked at the links I’ll
put below and the comments section where others had the issue, but those
tips aren’t helping either.
Basically everything seems to compile and install correctly, but then
the “ldconfig –p | grep pj” doesn’t show anything. So ldconfig when ran
by itself isn’t picking up on the install of pjsip. Also when going into
the process of menuselect it shows that it’s not available as a resource.
|
Do you have the pkg-config package installed? That is what the build
system uses for finding the right stuff.
Also what does the following show:
ls /usr/lib/libpj*.so
ls /usr/local/lib/libpj*.so
And what did you pass to the configure script for pjproject?
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US
Check us out at: www.digium.com & www.asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 8:55 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Joshua Colp
Sent: Wednesday, September 23, 2015 9:39 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Ryan, Travis wrote:
Quote: | I've built PJSIP a few months ago on a server that was 12.04 and
| can't
Quote: | remember how I got past this same issue. I've looked at the links
| I'll
Quote: | put below and the comments section where others had the issue, but
those tips aren't helping either.
Basically everything seems to compile and install correctly, but then
the "ldconfig -p | grep pj" doesn't show anything. So ldconfig when
ran by itself isn't picking up on the install of pjsip. Also when
going into the process of menuselect it shows that it's not available
| as a resource.
Do you have the pkg-config package installed? That is what the build
system uses for finding the right stuff.
Also what does the following show:
ls /usr/lib/libpj*.so
ls /usr/local/lib/libpj*.so
And what did you pass to the configure script for pjproject?
| [Ryan, Travis]
travis@pcimphone1:~$ ls /usr/lib/libpj*.so
ls: cannot access /usr/lib/libpj*.so: No such file or directory
travis@pcimphone1:~$ ls /usr/local/lib/libpj*.so
ls: cannot access /usr/local/lib/libpj*.so: No such file or directory
travis@pcimphone1:~$ ls /usr/lib/libpj*.so
lib/ lib64/
travis@pcimphone1:~$ ls /usr/lib64/libpj*.so
/usr/lib64/libpjlib-util.so /usr/lib64/libpjmedia-codec.so /usr/lib64/libpjmedia-videodev.so /usr/lib64/libpjsip-simple.so /usr/lib64/libpjsip-ua.so /usr/lib64/libpjsua2.so
/usr/lib64/libpjmedia-audiodev.so /usr/lib64/libpjmedia.so /usr/lib64/libpjnath.so /usr/lib64/libpjsip.so /usr/lib64/libpj.so /usr/lib64/libpjsua.so
As you can see it put them in the lib64 folder. I've done the command and recompiled so many times with the following attempts....
./configure --prefix=/usr --enable-shared --disable-sound --disable-resample --disable-video --disable-opencore-amr CFLAGS='-O2 -DNDEBUG'
./configure
./configure --prefix=/usr
./configure --libdir=/usr/lib64 --prefix=/usr --enable-shared --disable-sound --disable-resample --disable-video --disable-opencore-amr
[Ryan, Travis]
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 9:02 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Ryan, Travis
Sent: Wednesday, September 23, 2015 9:55 AM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Joshua Colp
Sent: Wednesday, September 23, 2015 9:39 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Ryan, Travis wrote:
Quote: | I've built PJSIP a few months ago on a server that was 12.04 and
| can't
Quote: | remember how I got past this same issue. I've looked at the links
| I'll
Quote: | put below and the comments section where others had the issue, but
those tips aren't helping either.
Basically everything seems to compile and install correctly, but
then the "ldconfig -p | grep pj" doesn't show anything. So ldconfig
when ran by itself isn't picking up on the install of pjsip. Also
when going into the process of menuselect it shows that it's not
available
| as a resource.
Do you have the pkg-config package installed? That is what the build
system uses for finding the right stuff.
Also what does the following show:
ls /usr/lib/libpj*.so
ls /usr/local/lib/libpj*.so
And what did you pass to the configure script for pjproject?
| [Ryan, Travis]
travis@pcimphone1:~$ ls /usr/lib/libpj*.so
ls: cannot access /usr/lib/libpj*.so: No such file or directory
travis@pcimphone1:~$ ls /usr/local/lib/libpj*.so
ls: cannot access /usr/local/lib/libpj*.so: No such file or directory
travis@pcimphone1:~$ ls /usr/lib/libpj*.so
lib/ lib64/
travis@pcimphone1:~$ ls /usr/lib64/libpj*.so
/usr/lib64/libpjlib-util.so /usr/lib64/libpjmedia-codec.so
/usr/lib64/libpjmedia-videodev.so /usr/lib64/libpjsip-simple.so
/usr/lib64/libpjsip-ua.so /usr/lib64/libpjsua2.so
/usr/lib64/libpjmedia-audiodev.so /usr/lib64/libpjmedia.so
/usr/lib64/libpjnath.so /usr/lib64/libpjsip.so
/usr/lib64/libpj.so /usr/lib64/libpjsua.so
As you can see it put them in the lib64 folder. I've done the command
and recompiled so many times with the following attempts....
./configure --prefix=/usr --enable-shared --disable-sound --disable-
resample --disable-video --disable-opencore-amr CFLAGS='-O2 -DNDEBUG'
./configure
./configure --prefix=/usr
./configure --libdir=/usr/lib64 --prefix=/usr --enable-shared --
disable-sound --disable-resample --disable-video --disable-opencore-amr
| Now for some reason they are showing after running the usual .configure from the wiki. I swear to God it wasn't working last night. SMH
[Ryan, Travis]
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 9:09 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Ok so now I'm getting this when doing a make in asterisk...
travis@pcimphone1:~/downloads/asterisk-13.5.0$ make
[LD] chan_pjsip.o pjsip/dialplan_functions.o -> chan_pjsip.so
/usr/bin/ld: /usr/local/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a(sip_inv.o): relocation R_X86_64_32S against `.rodata' can not be used when making a shared object; recompile with -fPIC
/usr/local/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
make[1]: *** [chan_pjsip.so] Error 1
make: *** [channels] Error 2
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Ryan, Travis
Sent: Wednesday, September 23, 2015 10:01 AM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Ryan, Travis
Sent: Wednesday, September 23, 2015 9:55 AM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users- bounces@lists.digium.com] On Behalf Of
Joshua Colp
Sent: Wednesday, September 23, 2015 9:39 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Ryan, Travis wrote:
Quote: | I've built PJSIP a few months ago on a server that was 12.04 and
| can't
Quote: | remember how I got past this same issue. I've looked at the links
| I'll
Quote: | put below and the comments section where others had the issue,
|
|
| but
Quote: | Quote: | Quote: | those tips aren't helping either.
Basically everything seems to compile and install correctly, but
then the "ldconfig -p | grep pj" doesn't show anything. So
ldconfig when ran by itself isn't picking up on the install of
pjsip. Also when going into the process of menuselect it shows
that it's not available
| as a resource.
Do you have the pkg-config package installed? That is what the
|
| build
Quote: | Quote: | system uses for finding the right stuff.
Also what does the following show:
ls /usr/lib/libpj*.so
ls /usr/local/lib/libpj*.so
And what did you pass to the configure script for pjproject?
| [Ryan, Travis]
travis@pcimphone1:~$ ls /usr/lib/libpj*.so
ls: cannot access /usr/lib/libpj*.so: No such file or directory
travis@pcimphone1:~$ ls /usr/local/lib/libpj*.so
ls: cannot access /usr/local/lib/libpj*.so: No such file or directory
travis@pcimphone1:~$ ls /usr/lib/libpj*.so
lib/ lib64/
travis@pcimphone1:~$ ls /usr/lib64/libpj*.so
/usr/lib64/libpjlib-util.so /usr/lib64/libpjmedia-codec.so
/usr/lib64/libpjmedia-videodev.so /usr/lib64/libpjsip-simple.so
/usr/lib64/libpjsip-ua.so /usr/lib64/libpjsua2.so
/usr/lib64/libpjmedia-audiodev.so /usr/lib64/libpjmedia.so
/usr/lib64/libpjnath.so /usr/lib64/libpjsip.so
/usr/lib64/libpj.so /usr/lib64/libpjsua.so
As you can see it put them in the lib64 folder. I've done the command
and recompiled so many times with the following attempts....
./configure --prefix=/usr --enable-shared --disable-sound --disable-
resample --disable-video --disable-opencore-amr CFLAGS='-O2 -DNDEBUG'
./configure
./configure --prefix=/usr
./configure --libdir=/usr/lib64 --prefix=/usr --enable-shared --
disable-sound --disable-resample --disable-video
--disable-opencore-amr
| Now for some reason they are showing after running the usual .configure
from the wiki. I swear to God it wasn't working last night. SMH [Ryan,
Travis]
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
jcolp at digium.com Guest
|
Posted: Wed Sep 23, 2015 9:12 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Ryan, Travis wrote:
Quote: | Ok so now I'm getting this when doing a make in asterisk...
travis@pcimphone1:~/downloads/asterisk-13.5.0$ make
[LD] chan_pjsip.o pjsip/dialplan_functions.o -> chan_pjsip.so
/usr/bin/ld: /usr/local/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a(sip_inv.o): relocation R_X86_64_32S against `.rodata' can not be used when making a shared object; recompile with -fPIC
/usr/local/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
make[1]: *** [chan_pjsip.so] Error 1
make: *** [channels] Error 2
|
It has picked up an install of pjproject which was not built with
"--enable-shared". You need to remove all instances on your system to
return it to a known state and then rebuild pjproject and install it.
./configure CFLAGS="-DNDEBUG -DPJ_HAS_IPV6=1" --enable-shared
--with-external-speex --with-external-gsm --with-external-srtp
--disable-sound --disable-resample --prefix=/usr
Those are the options I use normally on Ubuntu 14.04.
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US
Check us out at: www.digium.com & www.asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 9:50 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Ok that did it after I did the steps to completely remove everything and do a new install. Thanks!
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Joshua Colp
Sent: Wednesday, September 23, 2015 10:12 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Ryan, Travis wrote:
Quote: | Ok so now I'm getting this when doing a make in asterisk...
travis@pcimphone1:~/downloads/asterisk-13.5.0$ make
[LD] chan_pjsip.o pjsip/dialplan_functions.o -> chan_pjsip.so
/usr/bin/ld:
/usr/local/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a(sip_inv.o):
relocation R_X86_64_32S against `.rodata' can not be used when making
a shared object; recompile with -fPIC
/usr/local/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a: error adding
symbols: Bad value
collect2: error: ld returned 1 exit status
make[1]: *** [chan_pjsip.so] Error 1
make: *** [channels] Error 2
|
It has picked up an install of pjproject which was not built with "--
enable-shared". You need to remove all instances on your system to
return it to a known state and then rebuild pjproject and install it.
./configure CFLAGS="-DNDEBUG -DPJ_HAS_IPV6=1" --enable-shared --with-
external-speex --with-external-gsm --with-external-srtp --disable-sound
--disable-resample --prefix=/usr
Those are the options I use normally on Ubuntu 14.04.
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US Check us out at:
www.digium.com & www.asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 10:15 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Spoke too soon. Same thing.
Josh, any other ideas?
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Ryan, Travis
Sent: Wednesday, September 23, 2015 10:50 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Ok that did it after I did the steps to completely remove everything
and do a new install. Thanks!
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Joshua Colp
Sent: Wednesday, September 23, 2015 10:12 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Ryan, Travis wrote:
Quote: | Ok so now I'm getting this when doing a make in asterisk...
travis@pcimphone1:~/downloads/asterisk-13.5.0$ make
[LD] chan_pjsip.o pjsip/dialplan_functions.o -> chan_pjsip.so
/usr/bin/ld:
/usr/local/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a(sip_inv.o):
relocation R_X86_64_32S against `.rodata' can not be used when
making a shared object; recompile with -fPIC
/usr/local/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a: error adding
symbols: Bad value
collect2: error: ld returned 1 exit status
make[1]: *** [chan_pjsip.so] Error 1
make: *** [channels] Error 2
|
It has picked up an install of pjproject which was not built with "--
enable-shared". You need to remove all instances on your system to
return it to a known state and then rebuild pjproject and install it.
./configure CFLAGS="-DNDEBUG -DPJ_HAS_IPV6=1" --enable-shared --with-
external-speex --with-external-gsm --with-external-srtp
--disable-sound --disable-resample --prefix=/usr
Those are the options I use normally on Ubuntu 14.04.
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US Check us out at:
www.digium.com & www.asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
jcolp at digium.com Guest
|
Posted: Wed Sep 23, 2015 10:26 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
On 15-09-23 12:14 PM, Ryan, Travis wrote:
Quote: | Spoke too soon. Same thing.
Josh, any other ideas?
|
Not really, that's the exact configure line I use. You may have to do a
"make distclean" on both pjproject and asterisk.
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US
Check us out at: www.digium.com & www.asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 10:46 am Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Joshua Colp
Sent: Wednesday, September 23, 2015 11:25 AM
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
On 15-09-23 12:14 PM, Ryan, Travis wrote:
Quote: | Spoke too soon. Same thing.
Josh, any other ideas?
|
Not really, that's the exact configure line I use. You may have to do a
"make distclean" on both pjproject and asterisk.
--
| I think that did it.
[Ryan, Travis]
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 5:18 pm Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Getting constant segfaults now...
[ 157.894809] asterisk[1424]: segfault at c ip 00007f8b2fbcfd04 sp 00007f8b91722010 error 4 in res_hep_pjsip.so[7f8b2fba2000+45000]
[ 481.101031] asterisk[1581]: segfault at c ip 00007ff4805f0d04 sp 00007ff4ba438010 error 4 in res_hep_pjsip.so[7ff4805c3000+45000]
[ 1151.182223] asterisk[1787]: segfault at c ip 00007f3a29ef7d04 sp 00007f3a7fdec010 error 4 in res_hep_pjsip.so[7f3a29eca000+45000]
[ 1289.185181] asterisk[1974]: segfault at c ip 00007f039bb8ed04 sp 00007f03fda21010 error 4 in res_hep_pjsip.so[7f039bb61000+45000]
[ 2434.066780] asterisk[2082]: segfault at c ip 00007ff49a69ad04 sp 00007ff4c7ffe010 error 4 in res_hep_pjsip.so[7ff49a66d000+45000]
[ 2618.073360] asterisk[2390]: segfault at c ip 00007fb93f391d04 sp 00007fb9a11fd010 error 4 in res_hep_pjsip.so[7fb93f364000+45000]
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Ryan, Travis
Sent: Wednesday, September 23, 2015 11:46 AM
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Joshua Colp
Sent: Wednesday, September 23, 2015 11:25 AM
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
On 15-09-23 12:14 PM, Ryan, Travis wrote:
Quote: | Spoke too soon. Same thing.
Josh, any other ideas?
|
Not really, that's the exact configure line I use. You may have to do
a "make distclean" on both pjproject and asterisk.
--
| I think that did it.
[Ryan, Travis]
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
jcolp at digium.com Guest
|
Posted: Wed Sep 23, 2015 5:22 pm Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
On 15-09-23 07:17 PM, Ryan, Travis wrote:
Quote: | Getting constant segfaults now...
[ 157.894809] asterisk[1424]: segfault at c ip 00007f8b2fbcfd04 sp 00007f8b91722010 error 4 in res_hep_pjsip.so[7f8b2fba2000+45000]
[ 481.101031] asterisk[1581]: segfault at c ip 00007ff4805f0d04 sp 00007ff4ba438010 error 4 in res_hep_pjsip.so[7ff4805c3000+45000]
[ 1151.182223] asterisk[1787]: segfault at c ip 00007f3a29ef7d04 sp 00007f3a7fdec010 error 4 in res_hep_pjsip.so[7f3a29eca000+45000]
[ 1289.185181] asterisk[1974]: segfault at c ip 00007f039bb8ed04 sp 00007f03fda21010 error 4 in res_hep_pjsip.so[7f039bb61000+45000]
[ 2434.066780] asterisk[2082]: segfault at c ip 00007ff49a69ad04 sp 00007ff4c7ffe010 error 4 in res_hep_pjsip.so[7ff49a66d000+45000]
[ 2618.073360] asterisk[2390]: segfault at c ip 00007fb93f391d04 sp 00007fb9a11fd010 error 4 in res_hep_pjsip.so[7fb93f364000+45000]
|
Instructions are on the wiki[1] for getting a backtrace. As well - what
version of Asterisk?
[1] https://wiki.asterisk.org/wiki/display/AST/Getting+a+Backtrace
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US
Check us out at: www.digium.com & www.asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 5:24 pm Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Should be the current which is 13.5.0
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Joshua Colp
Sent: Wednesday, September 23, 2015 6:22 PM
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
On 15-09-23 07:17 PM, Ryan, Travis wrote:
Quote: | Getting constant segfaults now...
[ 157.894809] asterisk[1424]: segfault at c ip 00007f8b2fbcfd04 sp
00007f8b91722010 error 4 in res_hep_pjsip.so[7f8b2fba2000+45000]
[ 481.101031] asterisk[1581]: segfault at c ip 00007ff4805f0d04 sp
00007ff4ba438010 error 4 in res_hep_pjsip.so[7ff4805c3000+45000]
[ 1151.182223] asterisk[1787]: segfault at c ip 00007f3a29ef7d04 sp
00007f3a7fdec010 error 4 in res_hep_pjsip.so[7f3a29eca000+45000]
[ 1289.185181] asterisk[1974]: segfault at c ip 00007f039bb8ed04 sp
00007f03fda21010 error 4 in res_hep_pjsip.so[7f039bb61000+45000]
[ 2434.066780] asterisk[2082]: segfault at c ip 00007ff49a69ad04 sp
00007ff4c7ffe010 error 4 in res_hep_pjsip.so[7ff49a66d000+45000]
[ 2618.073360] asterisk[2390]: segfault at c ip 00007fb93f391d04 sp
00007fb9a11fd010 error 4 in res_hep_pjsip.so[7fb93f364000+45000]
|
Instructions are on the wiki[1] for getting a backtrace. As well - what
version of Asterisk?
[1] https://wiki.asterisk.org/wiki/display/AST/Getting+a+Backtrace
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US Check us out at:
www.digium.com & www.asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
RyanT at OscarWinski.com Guest
|
Posted: Wed Sep 23, 2015 5:36 pm Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
Quote: | -----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-
bounces@lists.digium.com] On Behalf Of Joshua Colp
Sent: Wednesday, September 23, 2015 6:22 PM
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] problems with PJSIP install on UBUNTU
14.04
On 15-09-23 07:17 PM, Ryan, Travis wrote:
Quote: | Getting constant segfaults now...
[ 157.894809] asterisk[1424]: segfault at c ip 00007f8b2fbcfd04 sp
00007f8b91722010 error 4 in res_hep_pjsip.so[7f8b2fba2000+45000]
[ 481.101031] asterisk[1581]: segfault at c ip 00007ff4805f0d04 sp
00007ff4ba438010 error 4 in res_hep_pjsip.so[7ff4805c3000+45000]
[ 1151.182223] asterisk[1787]: segfault at c ip 00007f3a29ef7d04 sp
00007f3a7fdec010 error 4 in res_hep_pjsip.so[7f3a29eca000+45000]
[ 1289.185181] asterisk[1974]: segfault at c ip 00007f039bb8ed04 sp
00007f03fda21010 error 4 in res_hep_pjsip.so[7f039bb61000+45000]
[ 2434.066780] asterisk[2082]: segfault at c ip 00007ff49a69ad04 sp
00007ff4c7ffe010 error 4 in res_hep_pjsip.so[7ff49a66d000+45000]
[ 2618.073360] asterisk[2390]: segfault at c ip 00007fb93f391d04 sp
00007fb9a11fd010 error 4 in res_hep_pjsip.so[7fb93f364000+45000]
|
Instructions are on the wiki[1] for getting a backtrace. As well - what
version of Asterisk?
[1] https://wiki.asterisk.org/wiki/display/AST/Getting+a+Backtrace
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US Check us out at:
www.digium.com & www.asterisk.org
| [Ryan, Travis]
I've got the backtrace, but how much of the info do you want?
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
jcolp at digium.com Guest
|
Posted: Wed Sep 23, 2015 5:38 pm Post subject: [asterisk-users] problems with PJSIP install on UBUNTU 14.04 |
|
|
On 15-09-23 07:36 PM, Ryan, Travis wrote:
Quote: | I've got the backtrace, but how much of the info do you want?
|
Ideally everything.
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US
Check us out at: www.digium.com & www.asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|