The database will stand as it is, so there is no need to do init or upgrade. Netxms will just connect to the database that it has in config file.
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| NAME | VERSION | FILE |
+---------------------+---------------------+---------------------+
| Linux | 4.0.484 | linux.nsm |
| PORTCHECK | 4.0.484 | portcheck.nsm |
| DBQUERY | 4.0.484 | dbquery.nsm |
| FILEMGR | 4.0.484 | filemgr.nsm |
| PING | 4.0.484 | ping.nsm |
| SSH | 4.0.484 | ssh.nsm |
| VMGR | 4.0.484 | vmgr.nsm |table=GetDCIValueByDescription($node, "Loaded subagents");
if (table!=NULL)
{
col=1;
for (i=0; i < table->rowCount; i++)
{
if (table->get(i, 0) == "PING")
{
return table->get(i, 1);
}
}
}
return null;// $1 - Table name
// $2 - Column name from where to return the value
// $3 - Column name where to search
// $4 - Value to search
table=GetDCIValueByDescription($node, $1);
if (table!=NULL)
{
col_return = table->getColumnIndex($2);
col_search = table->getColumnIndex($3);
if (col_search >=0 and col_return >= 0)
{
for (i=0; i < table->rowCount; i++)
{
if (table->get(i, col_search) == $4)
{
return table->get(i, col_return);
}
}
}
}
return null;cat ~/.nxmc/data/.metadata/.lognxadm -c "debug client.* 6"nxadm -c "debug userdb 6"nxadm -c "debug"