Problem with kea dhcp server

Hi

When i install and start the package "kea" i get this error.
Code:
root@fbsd-router-test-1:~ # service kea start
Starting kea.
INFO/keactrl: Starting /usr/local/sbin/kea-dhcp4 -c /usr/local/etc/kea/kea-dhcp4.conf
ld-elf.so.1: /lib/libcxxrt.so.1: version CXXABI_1.3.11 required by /lib/libc++.so.1 not found
INFO/keactrl: Starting /usr/local/sbin/kea-dhcp6 -c /usr/local/etc/kea/kea-dhcp6.conf
ld-elf.so.1: /lib/libcxxrt.so.1: version CXXABI_1.3.11 required by /lib/libc++.so.1 not found
INFO/keactrl: Starting /usr/local/sbin/kea-ctrl-agent -c /usr/local/etc/kea/kea-ctrl-agent.conf
root@fbsd-router-test-1:~ # ld-elf.so.1: /lib/libcxxrt.so.1: version CXXABI_1.3.11 required by /lib/libc++.so.1 not found

I can see there is something regarding this on fresports https://www.freshports.org/net/kea
Its that latest commit a fix for my problem? and when will that commit be ready. I am running on latest pkg repo.

Hope to hear from you
 
ld-elf.so.1: /lib/libcxxrt.so.1: version CXXABI_1.3.11 required by /lib/libc++.so.1 not found
This doesn't look like net/kea package is the problem.

More likely a incomplete / messed up (?) system upgrade.

On your system /lib/libc++.so.1 is ahead of /lib/libcxxrt.so.1

14.0
Rich (BB code):
 % strings  /lib/libc++.so.1 | grep CXXABI
CXXABI_1.3

14.1
Rich (BB code):
% strings  /lib/libc++.so.1 | grep CXXABI
CXXABI_1.3
CXXABI_1.3.11

14.0
Rich (BB code):
 % strings  /lib/libcxxrt.so.1 | grep CXXABI
CXXABI_1.3
CXXABI_1.3.1
CXXABI_1.3.5
CXXABI_1.3.6
CXXABI_1.3.9

14.1
Rich (BB code):
 # strings /lib/libcxxrt.so.1 | grep CXXABI
CXXABI_1.3
CXXABI_1.3.1
CXXABI_1.3.5
CXXABI_1.3.6
CXXABI_1.3.9
CXXABI_1.3.11
 
Thank you

I have upgrade this system from 14.0, but i dont remember any issue in that process.

Would the solutions just to reinstall, not really a issue. Or is there at solutions to this?

freebsd-update fetch install gives all is fine.
 
Back
Top