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

Messages - kiki

#1
Thanks. Installed Java SE Development Kit and it worked.
#2
General Support / Netxms Console Mac OS X 2.1 Error
August 12, 2017, 07:18:42 AM
Getting this error after login:

An error has occurred. See the log file
/Applications/NetXMS Console.app/Contents/Resources/Java/configuration/1502510613688.log

#3
Hi I'm getting this error
sudo netxmsd
Using configuration file "/etc/netxmsd.conf"
[17-Jul-2017 07:35:24.126] [INFO ] Platform subagent "/usr/lib/x86_64-linux-gnu/netxms/linux.nsm" successfully loaded
[17-Jul-2017 07:35:24.128] [INFO ] Database driver "pgsql.ddr" loaded and initialized successfully
[17-Jul-2017 07:35:24.138] [ERROR] Your database has format version 404, but server is compiled for version 456


What could be the problem?
#4
Yes. That must be the problem. This is what I have in the start up script.
# Description:
### END INIT INFO
#######################################
#
# NetXMS server startup script
# For Ubuntu Linux
#
# Written by Dmitry Chernyshov
# [email protected]
#
#######################################

NETXMS_BINDIR="~BINDIR~"
NETXMS_LIBDIR="~LIBDIR~"

NAME=netxmsd
DAEMON=$NETXMS_BINDIR/netxmsd
PIDFILE=/var/run/netxmsd.pid

test -x $DAEMON || exit 5


. /lib/lsb/init-functions
case "$1" in
start)
        # start daemon
        log_daemon_msg "Starting NetXMS server" "netxmsd"
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- -p $PIDFILE -d
        log_end_msg $?
        ;;
stop)
        log_daemon_msg "Stopping NetXMS server" "netxmsd"
        start-stop-daemon --stop --quiet --pidfile $PIDFILE
        log_end_msg $?
        ;;
restart)
        $0 stop && sleep 2 && $0 start
        ;;
esac
     


What line should I modify to make the netxms launch after 5 minutes?
#5
14-Mar-2017 21:04:11.465] Log file opened
[14-Mar-2017 21:04:11.884] [INFO ] Platform subagent "/usr/lib/x86_64-linux-gnu/netxms/linux.nsm" successfully loaded
[14-Mar-2017 21:04:12.362] [INFO ] Database driver "pgsql.ddr" loaded and initialized successfully
[14-Mar-2017 21:04:37.534] [ERROR] Unable to establish connection with database (FATAL:  the database system is starting up
FATAL:  the database system is starting up)


Whenever the computer restarts uncleanly I keep getting the above error and netxms doesn't run. Have to start netxsms manually through sudo netxmsd -d
#6
Keep getting this error whenever I run apt upgrade or remove.

Setting up netxms-agent:amd64 (2.0.8-2) ...
Job for nxagentd.service failed because the control process exited with error code. See "systemctl status nxagentd.service" and "journalctl -xe" for details.
invoke-rc.d: initscript nxagentd, action "start" failed.
dpkg: error processing package netxms-agent:amd64 (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of netxms-server:amd64:
netxms-server:amd64 depends on netxms-agent; however:
  Package netxms-agent:amd64 is not configured yet.

dpkg: error processing package netxms-server:amd64 (--configure):
dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
                          Processing triggers for libc-bin (2.23-0ubuntu5) ...
Errors were encountered while processing:
netxms-agent:amd64
netxms-server:amd64
E: Sub-process /usr/bin/dpkg returned an error code (1)
#7
General Support / Re: Mikrotik PPP Interfaces
January 17, 2017, 06:50:41 PM
Other Solution:
In mikrotik create PPPoE Server Binding.

Go to PPP>Interface>Add PPPoE Server Binding

User should be same as radius login name.
#8
General Support / Re: Last Values
January 10, 2017, 01:05:48 PM
Experimenting the transformation script below. Correct me if I'm wrong.
($1 > 999999999) ? 0 : $1 * 8
#9
Switching to postgres fixed the issue.
#10
General Support / Last Values
December 20, 2016, 09:59:39 AM
The image below shows last traffic values collected.

Traffic values in red are incorrect. How do I fix this? 

#11
Start up scripts are there. Like I mentioned, if I perform a clean reboot netxms works properly. Checked log and noted on every dirty shutdown
[ERROR] Unable to establish connection with database (Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2))

A clean reboot fixes the issue or running netxmsd -d
#12
After a power failure or dirty shutdown I Have to use run sudo netxmsd-d every time to get it back working. What's the issue?