asterisk: error while loading shared libraries: libasteriskssl.so.1
up vote
0
down vote
favorite
I am using Ubuntu 14.04 and followed the instructions to install asterisk from this link
Ubuntu 14.04 Asterisk server installation
All worked well until I run asterisk and get a shared lib error.
asterisk: error while loading shared libraries: libasteriskssl.so.1: cannot open shared object file: No such file or directory
further examining of the dynamically linked lib using "ldd"...
$ldd /usr/sbin/asterisk
linux-vdso.so.1 => (0x00007fff2d50a000)
libasteriskssl.so.1 => not found
libxml2.so.2 => /usr/lib/x86_64-linux-gnu/libxml2.so.2 (0x00007f7315902000)
...
...reveals that the symlink is missing.
I know how to create a symlink but the question is from where do I create the link?
linux ubuntu symbolic-link asterisk shared-libraries
add a comment |
up vote
0
down vote
favorite
I am using Ubuntu 14.04 and followed the instructions to install asterisk from this link
Ubuntu 14.04 Asterisk server installation
All worked well until I run asterisk and get a shared lib error.
asterisk: error while loading shared libraries: libasteriskssl.so.1: cannot open shared object file: No such file or directory
further examining of the dynamically linked lib using "ldd"...
$ldd /usr/sbin/asterisk
linux-vdso.so.1 => (0x00007fff2d50a000)
libasteriskssl.so.1 => not found
libxml2.so.2 => /usr/lib/x86_64-linux-gnu/libxml2.so.2 (0x00007f7315902000)
...
...reveals that the symlink is missing.
I know how to create a symlink but the question is from where do I create the link?
linux ubuntu symbolic-link asterisk shared-libraries
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using Ubuntu 14.04 and followed the instructions to install asterisk from this link
Ubuntu 14.04 Asterisk server installation
All worked well until I run asterisk and get a shared lib error.
asterisk: error while loading shared libraries: libasteriskssl.so.1: cannot open shared object file: No such file or directory
further examining of the dynamically linked lib using "ldd"...
$ldd /usr/sbin/asterisk
linux-vdso.so.1 => (0x00007fff2d50a000)
libasteriskssl.so.1 => not found
libxml2.so.2 => /usr/lib/x86_64-linux-gnu/libxml2.so.2 (0x00007f7315902000)
...
...reveals that the symlink is missing.
I know how to create a symlink but the question is from where do I create the link?
linux ubuntu symbolic-link asterisk shared-libraries
I am using Ubuntu 14.04 and followed the instructions to install asterisk from this link
Ubuntu 14.04 Asterisk server installation
All worked well until I run asterisk and get a shared lib error.
asterisk: error while loading shared libraries: libasteriskssl.so.1: cannot open shared object file: No such file or directory
further examining of the dynamically linked lib using "ldd"...
$ldd /usr/sbin/asterisk
linux-vdso.so.1 => (0x00007fff2d50a000)
libasteriskssl.so.1 => not found
libxml2.so.2 => /usr/lib/x86_64-linux-gnu/libxml2.so.2 (0x00007f7315902000)
...
...reveals that the symlink is missing.
I know how to create a symlink but the question is from where do I create the link?
linux ubuntu symbolic-link asterisk shared-libraries
linux ubuntu symbolic-link asterisk shared-libraries
asked Nov 13 at 14:20
Naten Baptista
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Found the answer in this link
https://community.asterisk.org/t/asterisk-does-not-start/74617
Please run
find / -name libasteriskssl.so.1 -print
to locate your library and then check if it is one of the directories
listed in /etc/ld.so.conf
If not, add it and run “ldconfig -v”
if yes, try just running “ldconfig -v” and check if the library is now
cached
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Found the answer in this link
https://community.asterisk.org/t/asterisk-does-not-start/74617
Please run
find / -name libasteriskssl.so.1 -print
to locate your library and then check if it is one of the directories
listed in /etc/ld.so.conf
If not, add it and run “ldconfig -v”
if yes, try just running “ldconfig -v” and check if the library is now
cached
add a comment |
up vote
0
down vote
Found the answer in this link
https://community.asterisk.org/t/asterisk-does-not-start/74617
Please run
find / -name libasteriskssl.so.1 -print
to locate your library and then check if it is one of the directories
listed in /etc/ld.so.conf
If not, add it and run “ldconfig -v”
if yes, try just running “ldconfig -v” and check if the library is now
cached
add a comment |
up vote
0
down vote
up vote
0
down vote
Found the answer in this link
https://community.asterisk.org/t/asterisk-does-not-start/74617
Please run
find / -name libasteriskssl.so.1 -print
to locate your library and then check if it is one of the directories
listed in /etc/ld.so.conf
If not, add it and run “ldconfig -v”
if yes, try just running “ldconfig -v” and check if the library is now
cached
Found the answer in this link
https://community.asterisk.org/t/asterisk-does-not-start/74617
Please run
find / -name libasteriskssl.so.1 -print
to locate your library and then check if it is one of the directories
listed in /etc/ld.so.conf
If not, add it and run “ldconfig -v”
if yes, try just running “ldconfig -v” and check if the library is now
cached
answered Nov 16 at 5:34
Naten Baptista
1
1
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1375040%2fasterisk-error-while-loading-shared-libraries-libasteriskssl-so-1%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown