News:

We really need your input in this questionnaire

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - masespacio.eu

#1
General / install NetXMS server in Raspberry Pi 3 B+
April 06, 2020, 02:26:48 AM
Hello,

I'm trying to install NetXMS server in a Raspberry Pi 3 B + but I canĀ“t made to work it.
I'm following the steps indicated in the message:
https://www.netxms.org/forum/general-support/when-netxms-3-0-coming-out-raspberry-pi/msg27035/#msg27035

apt update
apt install automake libssl-dev libcurl4-openssl-dev libssh-dev libmosquitto-dev libpcre3-dev postgresql-client libpq-dev unixodbc-dev

PCRE:
wget https://ftp.pcre.org/pub/pcre/pcre-8.43.tar.gz
tar zxvf pcre-8.43.tar.gz pcre-8.43 /
cd pcre-8.43 /
./configure --prefix = / opt / pcre --enable-pcre32 --disable-cpp --enable-utf --disable-stack-for-recursion --enable-unicode-properties --disable-dependency-tracking
make
make install

OpenSSL:
wget https://www.openssl.org/source/openssl-1.1.1d.tar.gz
tar zxvf openssl-1.1.1d.tar.gz
cd openssl-1.1.1d
./config --prefix = / opt / openssl no-comp threads
make
make install

bcm2835 which is needed for --with-rpi-agent
apt-get install html-xml-utils
mkdir -p bcm2835 && (wget -qO - `curl -sL http://www.airspayce.com/mikem/bcm2835 | hxnormalize -x -e | hxselect -s '\ n' -c" div.textblock> p: nth-child (4)> a: nth-child (1) "` | tar xz --strip-components = 1 -C bcm2835)
cd bcm2835
./configure
make
make install

NetXMS Agent:
./configure --prefix = / opt / netxms --with-agent --with-internal-libexpat --with-internal-sqlite --with-internal-zlib --with-internal-libjansson --with-mariadb - -with-odbc --with-pgsql --with-sqlite --with-openssl = / opt / openssl --with-pcre = / opt / pcre --with-rpi-agent
make
make install [/ i]
I have changed some lines of commads:
wget https://www.openssl.org/source/openssl-1.1.1f.tar.gz................/i]
openssl-1.1.1f instead of openssl-1.1.1d
Like this line is not working:
mkdir -p bcm2835 && (wget -qO - `curl -sL http://www.airspayce.com/mikem/bcm2835 | hxnormalize -x -e | hxselect -s '\ n' -c" div.textblock > p: nth-child (4)> a: nth-child (1) "` | tar xz --strip-components = 1 -C bcm2835) [/ i]

I have tried with this commands:
http://www.airspayce.com/mikem/bcm2835/bcm2835-1.63.tar.gz
tar zxvf bcm2835-1.63.tar.gz
cd bcm2835-1.63
./configure
make
sudo make check
sudo make install [/ i]

In spite of this changes, I don't making it work.

What I can do?

Thanks!