Netdata install not complete

sevenymedia

Verified User
Joined
Sep 28, 2015
Messages
34
After running ./build netdata it looks like the Netdata installation is still missing something.

Trying to restart the service using service netdata restart generates the following log lines.

Code:
May 22 10:49:00 s1 systemd: Stopped Real time performance monitoring.
May 22 10:49:00 s1 systemd: Starting Real time performance monitoring...
May 22 10:49:00 s1 systemd: Started Real time performance monitoring.
May 22 10:49:00 s1 netdata: /opt/netdata/usr/sbin/netdata: line 4: /opt/netdata/bin/srv/netdata: No such file or directory
May 22 10:49:00 s1 systemd: netdata.service: main process exited, code=exited, status=127/n/a
May 22 10:49:00 s1 systemd: Unit netdata.service entered failed state.
May 22 10:49:00 s1 systemd: netdata.service failed.
 
I use Centos 7
Some system in netdata need " musl-libc " that I can't install from REPO with tutorial from "https://copr.fedorainfracloud.org/coprs/ngompa/musl-libc/"
It required " /lib/ld-musl-x86_64.so.1 "
so I think install from source is bug too.

about "Segmentation fault" on yum commands


###UPDATE 17:28 - This can only use in port 19999 .
install musl libc from source can install and run success. but somebody use custom openssl on " /usr/local/ssl " or any else
you need install netdata with your self

load netdata source from git:
then

cd /netdata
edit: netdata-installer.sh

find line
# you can set CFLAGS before running installer
add
CFLAGS="-I/usr/local/include"
LDFLAGS="-L/usr/local/lib"
to line after
LDFLAGS="${LDFLAGS}"
CFLAGS="${CFLAGS--O2}"

#### I think netdata should fixed about musl-libc
 
Last edited:
Back
Top