-
- Veteran
- Posts: 665
- Liked: 4 times
- Joined: Nov 21, 2013 12:02 pm
- Full Name: Babak Seyedi nejad
- Contact:
error during install veeam-1.0.0.499-1.el6.i386.rpm
i want install veeam agent for linux and appear this error
rpm -ivh veeam-1.0.0.499-1.el6.i386.rpm
Preparing... ########################################### [100%]
1:veeam ########################################### [100%]
Starting veeamservice: /usr/sbin/veeamservice: error while loading shared libraries: libblkid.so.1: cannot open shared object file: No such file or directory
[FAILED]
rpm -ivh veeam-1.0.0.499-1.el6.i386.rpm
Preparing... ########################################### [100%]
1:veeam ########################################### [100%]
Starting veeamservice: /usr/sbin/veeamservice: error while loading shared libraries: libblkid.so.1: cannot open shared object file: No such file or directory
[FAILED]
-
- Product Manager
- Posts: 5803
- Liked: 1217 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
Can you try the following:
And then try to start the service again?
Code: Select all
yum install libblkid-devel
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- Veteran
- Posts: 665
- Liked: 4 times
- Joined: Nov 21, 2013 12:02 pm
- Full Name: Babak Seyedi nejad
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
thsnks it has been successfully installed and this message appear :vmniels wrote:Can you try the following:And then try to start the service again?Code: Select all
yum install libblkid-devel
rpm -ivh veeam-1.0.0.499-1.el6.i386.rpm
Preparing... ########################################### [100%]
package veeam-1.0.0.499-1.el6.i386 is already installed
You have new mail in /var/spool/mail/root
[root@redhat rpm]# veeam
veeam: error while loading shared libraries: libfuse.so.2: cannot open shared object file: No such file or directory
veeam can not run
-
- Product Manager
- Posts: 5803
- Liked: 1217 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
It seems you are missing quite some development libraries.
For libfuse this should be:
Please take a look at the list below and make sure you have these packages installed or else veeam won't run.
Software Dependencies
Protected Linux installation must have the following components installed:
• dkms*
• gcc
• make
• perl
• kernel-headers**
• kernel-devel**
• libudev
• libacl
• libattr
• lvm2
• libfuse
For libfuse this should be:
Code: Select all
yum install fuse fuse-devel
Software Dependencies
Protected Linux installation must have the following components installed:
• dkms*
• gcc
• make
• perl
• kernel-headers**
• kernel-devel**
• libudev
• libacl
• libattr
• lvm2
• libfuse
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- Veteran
- Posts: 665
- Liked: 4 times
- Joined: Nov 21, 2013 12:02 pm
- Full Name: Babak Seyedi nejad
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
these packages has been installed but not workvmniels wrote:It seems you are missing quite some development libraries.
For libfuse this should be:Please take a look at the list below and make sure you have these packages installed or else veeam won't run.Code: Select all
yum install fuse fuse-devel
Software Dependencies
Protected Linux installation must have the following components installed:
• dkms*
• gcc
• make
• perl
• kernel-headers**
• kernel-devel**
• libudev
• libacl
• libattr
• lvm2
• libfuse
rpm -qa fuse*
fuse-devel-2.8.3-4.el6.x86_64
fuse-libs-2.8.3-4.el6.x86_64
fuse-libs-2.8.3-4.el6.i686
fuse-2.8.3-4.el6.x86_64
fuse-devel-2.8.3-4.el6.i686
[root@redhat rpm]# veeam
veeam: error while loading shared libraries: libacl.so.1: cannot open shared object file: No such file or directory
-
- Product Manager
- Posts: 5803
- Liked: 1217 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
The list states you need libacl as well which you are missing.
Code: Select all
yum install libacl-devel libattr-devel libudevel
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- Veteran
- Posts: 665
- Liked: 4 times
- Joined: Nov 21, 2013 12:02 pm
- Full Name: Babak Seyedi nejad
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
after install and run veeam command this error appearvmniels wrote:The list states you need libacl as well which you are missing.Code: Select all
yum install libacl-devel libattr-devel libudevel
[root@redhat rpm]# veeam
veeam: error while loading shared libraries: libpanel.so.5: cannot open shared object file: No such file or directory
-
- Product Manager
- Posts: 5803
- Liked: 1217 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
Try the following:
Basically you need the development packages as well for any of the missing libraries.
Code: Select all
yum groupinstall "Development tools"
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- Veteran
- Posts: 665
- Liked: 4 times
- Joined: Nov 21, 2013 12:02 pm
- Full Name: Babak Seyedi nejad
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
all of these packages has been installed but veeam command not eworkvmniels wrote:Try the following:Basically you need the development packages as well for any of the missing libraries.Code: Select all
yum groupinstall "Development tools"
[root@redhat rpm]# veeam
veeam: error while loading shared libraries: libpanel.so.5: cannot open shared object file: No such file or directory
You have new mail in /var/spool/mail/root
-
- Product Manager
- Posts: 5803
- Liked: 1217 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
Try installing libncurses-dev as package.
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- Veteran
- Posts: 665
- Liked: 4 times
- Joined: Nov 21, 2013 12:02 pm
- Full Name: Babak Seyedi nejad
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
i download ncurses-devel-6.0-309.22.x86_64.rpmvmniels wrote:Try installing libncurses-dev as package.
but when want install appear this message attached pic
[img]
https://s31.postimg.org/rfc7rrd2z/err.jpg
[/img]
how can solve that ?
-
- Product Manager
- Posts: 5803
- Liked: 1217 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
What if you install via yum? What the error specificly means I can't say. Might be a broken download.
Yum install libncurses-dev should work or "yum install libncurses-devel"
Yum install libncurses-dev should work or "yum install libncurses-devel"
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- Product Manager
- Posts: 6559
- Liked: 765 times
- Joined: May 19, 2015 1:46 pm
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
Hi,
I'm curios if the installation of veeamsnap package went OK? Did you install it using rpm or yum? If the former then please try to reinstall it with the usage of yum - it should pull all needed packages automatically.
Thanks
I'm curios if the installation of veeamsnap package went OK? Did you install it using rpm or yum? If the former then please try to reinstall it with the usage of yum - it should pull all needed packages automatically.
Thanks
-
- Enthusiast
- Posts: 61
- Liked: 8 times
- Joined: Mar 29, 2016 4:22 pm
- Full Name: sg_sc
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
might I suggest:
When using yum to install a local RPM file it will try to install the dependencies automatically.
Code: Select all
cd /path/to/
yum reinstall veeamsnap*.rpm
yum reinstall veeam-*.rpm
-
- Veteran
- Posts: 665
- Liked: 4 times
- Joined: Nov 21, 2013 12:02 pm
- Full Name: Babak Seyedi nejad
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
thanks but my big problem is my server don't have internet connection and it can not access to internet now have to install manually packages
-
- Product Manager
- Posts: 6559
- Liked: 765 times
- Joined: May 19, 2015 1:46 pm
- Contact:
Re: error during install veeam-1.0.0.499-1.el6.i386.rpm
In this case I suggest you to use another machine to recursively download all required dependencies for packages that are required by veeam using yumdownloader, after that you can either install all rpms manually on the host that has no internet connection, or setup local repository and populate it with packages so you can use yum to resolve dependencies automatically. Please let me know if you need any help on that.
Thanks
Thanks
Who is online
Users browsing this forum: Baidu [Spider] and 6 guests