Process of monitoring in Unix machine foglight 5.6.10

Hi, I want to know how to monitor the process on the unix machine, we have foglight 5.6.10

as a legacy, we weight to appmonitor but now I think that the inheritance is no longer in use in this version

Please notify

Shipi,

I have this conversation with Golen a couple of weeks.

http://en.community.Dell.com/TechCenter/performance-monitoring/Foglight-administrators/f/4788/t/19562604#93855

Ann

Tags: Dell Tech

Similar Questions

  • Monitoring of virtual machines running on the UCS blades

    We are in the process of migration of servers HP rack to Cisco UCS blades. I have 4 blades UCS running ESXi and dΘmarrez from SAN. We have configured in HP SIM HP servers to monitor hardware issues and the status of the VM. Now Let's watch the material of the UCS in UCS Manager, but I still need to monitor the status of virtual machines. I looked at existing Solarwinds NPM we have all our ESXi HP servers to Solarwinds. What I've discovered, is that we cannot add the individual to NPM ESXi blades, because we can not configure SNMP (or we).

    Which means that migrate us from HP servers for UCS blades, we lose the ability to monitor the State of the CPU and VM.

    How people monitor their virtual machines in an environment of UCS?

    Thank you.

    We monitor our UCS ESXi 5 with SNMP hosts and use Solarwinds NPM.  It works well.  These are the commands that we send through our VMA (free VMware) server to a new host.

    vicfg-snmp - root server - username - password it

    vicfg-snmp - root server - username - password you @162.

    vicfg-snmp - root server - username - password e

    There's probably a way to do it on the console of the host, but I don't know what it could be.

  • Deploying a LabVIEW Windows executable on a Unix machine

    Hello everyone,

    Can someone tell me if it is possible to deploy an executable file created in Windows Labview 8.5 on a Unix machine. We would launch an executable and also to display a Web page on the UNIX-based computer to view the currently running program. And if it is possible, you have some tips?

    Thank you!

    Rocio

    I don't know anything about these older UNIX systems. If it is possible I don't know how to do it.

    Is it possible to get another machine and install Windows on it and then connect to the Tru64 on the network by using web services?

  • How to check when the software installed on the unix machine

    Team,

    I need to check when the s/w is installed on the unix machine, can someone tell me

    Thank you

    PMP

    Prakash_dba wrote:

    Team,

    I need to check when the s/w is installed on the unix machine, can someone tell me

    Thank you

    PMP

    Find /-name oracle - ls 2 >/dev/null

  • Java to access windows machine code from unix machine

    Hi all

    I have a requirement where I need to send a file from a local system to the (present on the client side) unix machine using java code. I developed a code that sends the local system in unix box file successfully on the client side (I connect to the unix box using VPN client-side) provided that I run the code in my eclipse IDE present in the local system. But when I run the same code in the unix box he throws null pointer exception. May be that the unix system is not recognizing the local system. Please find the code.

    abc package.

    import java.io.File;

    import java.io.FileInputStream;

    import java.io.FilenameFilter;

    import java.io.IOException;

    import java.util.Properties;

    import com.jcraft.jsch.Channel;

    import com.jcraft.jsch.ChannelSftp;

    import com.jcraft.jsch.JSch;

    import com.jcraft.jsch.JSchException;

    import com.jcraft.jsch.Session;

    import com.jcraft.jsch.SftpException;

    public class TransferFile {}

    private static properties props = new Properties ();

    Public Shared Sub main (string args []) throws IOException JSchException, SftpException,

    {

    sftpConnection();

    }

    public static sftpConnection() Sub survey JSchException, SftpException, IOException {}

    System.out.println ("inside the sftpConnection method");

    JSch jsch = new JSch();

    A session = null;

    Channel = null;

    props.loadFromXML (new FileInputStream ("Config.xml"));

    User String = props.getProperty("server.username");

    Host of chain = props.getProperty ("server.hostname"); UNIX box hostname

    Around port = Integer.parseInt (props.getProperty ("server.port")); port of UNIX box

    Password String = props.getProperty ("server.password"); password on UNIX box

    String watchFolder = props.getProperty ("localmachine.watchFolder"); folder on the local machine where I have to pick up the leader (D:\textFiles)

    String outputDir = props.getProperty ("server.outputDir"); UNIX box output folder (/ home/oracle /)

    String filemask = props.getProperty ("filemask");  file mask (.txt)

    ChannelSftp sftpChannel = null;

    Try

    {

    session = jsch.getSession (user, host, port);

    System.out.println ("Louis");

    session.setConfig ("StrictHostKeyChecking", "no");

    session.setPassword (password);

    System.out.println ("fffffffffffff");

    session.setConfig ("PreferredAuthentications","publickey, keyboard-interactive, password");

    session. Connect();

    System.out.println ("login success");

    Channel = session.openChannel("sftp");

    Channel.Connect ();

    System.out.println ("successful connection of the channel");

    sftpChannel = channel (ChannelSftp);

    System.out.println ("aaaaa");

    File [] files = findFile (watchFolder, filemask);

    for (file: files)

    {

    putFile (file, sftpChannel, outputDir);

    }

    }

    Finally

    {

    If (sftpChannel! = null) {}

    sftpChannel.exit ();

    }

    session. Disconnect();

    }

    }

    public static void putFile (file, ChannelSftp sftpChannel, String outputDir) survey SftpException, IOException

    {

    FileInputStream fis = null;

    Try

    {

    sftpChannel.cd (outputDir);

    FIS = new FileInputStream (file);

    sftpChannel.put (fis, file.getName ());

    FIS. Close();

    }

    Finally

    {

    }

    }

    public static File [] findFile (String dirName, final String mask)

    {

    System.out.println ("inside the findFile method");

    File dir = new File (dirName);

    Return dir.listFiles (new FilenameFilter() {}

    public boolean accept (file dir, filename As String)

    {

    System.out.println ("eeeeeee");

    Return filename.endsWith (mask);

    }

    }

    );

    }

    }

    Error on UNIX I get is: -.

    SftpConnection internal method

    llllllll

    Linda

    Success of the connection

    Channel successful login

    AAAAA

    Inside findFile method

    Exception in thread "main" java.lang.NullPointerException

    at abc. TranferFile.sftpConnection (TranferFile.java:58)

    at abc. TranferFile.main (TranferFile.java:21)

    Please help urgently...

    If I understand TransferFile, what it is he's looking for the files in the local where the application is running, and then them SFTP file system to the remote system (server.hostname). Local here is the perspective from which the application runs.

    I developed a code that sends the local system in unix box file successfully on the client side (I connect to the unix box using VPN client-side) provided that I run the code in my eclipse IDE present in the local system.

    The reason the works above is defined in localmachine.watchFolder file/directory exists in Windows machine when you run the code. In case above you run Eclipse; the same would apply if you run the jar file outside Eclipse on the same machine.

    When you run on the Unix machine while keeping the unchanged Config.xml, the application will search the directory defined in localmachine.watchFolder in the local of the UNIX file system, which obviously does not exist because the property is still set on "D: / / textFiles / / '-this way only exists in your Windows box.

    Do not look into the code again to understand what it actually does. There is nothing in the code that will reach out to the file "D: / / textFiles / /" your Windows box when the application runs on the Unix machine. The code is written to always look for the directory/folder (located in localmachine.watchFolder) in the local machine file system.

    If you want the ability to transfer files from your Windows machine to Unix machine with the application running on the Unix machine, you will need to change your code and the Config.xml file for:

    1. connect to your Windows box
    2. 'cd' to ' D: / / textFiles / / ' in your Windows box
    3. 'get' files in the file to the Unix machine

    This requires that your Windows box, such as the Unix box, willing to apply running SFTP server.

  • Unable to start sqlplus on my unix machine

    Hello people am not able to launch sqlplus on my unix machine

    I'm in this directory now
    [oracle@xyz 11.2.0.1]$ pwd
    /opt/oracle/product/11.2.0.1
    
    [oracle@xyz 11.2.0.1]$ sqlplus
    Error 6 initializing SQL*Plus
    SP2-0667: Message file sp1<lang>.msb not found
    SP2-0750: You may need to set ORACLE_HOME to your Oracle software directory
    [[email protected]]$
    
    
    [oracle@xyz 11.2.0.1]$ pgrep -lf smon
    9463 ora_smon_oakdene
    Please help me

    Thank you very much

    Try:

    export ORACLE_SID=orcl
    export ORACLE_HOME=/opt/oracle/product/11.2.0.1
    export PATH=$ORACLE_HOME/bin:$PATH
    
    sqlplus / as sysdba
    
  • Monitoring of Virtual Machines

    Hello

    VCenter is capable of monitoring inside virtual machines? (For example space logical disks inside the VM disk) and we can add alerts?

    If not, is there a technical reason not to do so? (I know you can monitor inside the virtual machine and RAM vCPUs and...)

    VMware plans to control these things, or you need a third party software to take care of this task for you?

    I don't want to buy a tool of surveillance as a tool for monitoring vFoglight / ip and discover VMware will have these features in the future.

    Any comments will be appreciated.

    Said wrote:

    VCenter is capable of monitoring inside virtual machines? (For example space logical disks inside the VM disk) and we can add alerts?

    Laughing out loud

    I don't want to buy a tool of surveillance as a tool for monitoring vFoglight / ip and discover VMware will have these features in the future.

    There are free tools available, they use SNMP or WMI or watch the "/ proc" for Linux.

    AWo
    VCP / VMware vEXPERT 2009

    \[:o]===\[o:]

    = You want to have this ad as a ringtone on your mobile phone? =

    = Send 'Assignment' to 911 for only $999999,99! =

  • Identify underutilized Virtual Machines Foglight

    Hello

    Could someone guide me how to identify underutilized Virtual Machines with Foglight, so if I assigned 4 CPU, but it is used only 2 CPU or 16 GB of memory, but only with the help of 12 GB. This could perhaps be done in VMware cartridge.

    Concerning

    Peter Mayer

    There is also a rule for the overcommitment of memory

    http://eDOCS.quest.com/vFoglight/671/doc/wwhelp/wwhimpl/common/HTML/frameset.htm?context=cartridge&file=vFoglightCartridge/reference.66.3.php&single=true

    Detection of computer memory virtual zero Page VMW

    Goal

    Memory of This monitors rule for virtual machines that have a large amount of memory that is only equal to zero .

    Scope of application

    VMWVirtualMachineMemory

    Conditions

    State

    Action

    Resources of virtual machine not to have overcommitted memory .

    Normal

    None

    Resources of the virtual machine can have overcommitted memory ; more than 33 percent of his memory is filled with zeros. It is likely that the memory allocated to this virtual machine can be reduced without any impact on performance.

    Warning

    None

    Golan

  • Service monitoring on virtual machines in windows

    Hi people,

    We recently bought VFoglight and also NMS.how (with what I bought) if I monitor the status of windows services? -i.e. can I follow specific (or all automatic) services and warning of the they change order?  Is this doen via the infra cartridge as it would be easier than having to alos use a NMS agent on each server.

    All advice appreciated!

    Thanks in advance.

    Hey Davie,

    If you see this - http://edocs.quest.com/foglight/563/doc/Cartridge/InfrastructureCartridge/UsingTheCartridge.02.4.php

    You can see the agent properties different (accessible from the Administration-> the State of the Agent). Click on your WindowsAgent agents in the list and change the properties.

    The drop-down menu to "Collect measures of Service" has a few options for all, no or specified.

    The rule of "HostServiceRestart", generates an email if a monitored service is stopped and an agent is configured to restart. It is disabled by default.

    The rule "HostServices" generates an alarm and sends an email if a host service changes its status. If it changes to run anything else, it generates a warning alert.

    Hope that helps,

    -Darren

  • monitoring of java with foglight

    Hello

    We monitor Java - Weblogic.

    We deploy soa and IOM in that weblogic.

    Successful integration. But if we integrate, there is error in when we

    start the IOM.

    Cartridge for 5.9.2 application servers

    FMS:

    OS: RHEL 5.7

    WebLogic:

    OS: RHEL 5.7

    WebLogic: 10.3.5.0

    startWeblogic.sh *.

    # export QUEST_PREINST_OPTS QUEST_AGENT_CONFIG QUEST_LOG_CONFIG

    PERFORMASURE_OPTIONS

    "' # QUEST_PREINST_OPTS = '".

    # PERFORMASURE_OPTIONS =

    "' # QUEST_AGENT_CONFIG = '".

    "' # QUEST_LOG_CONFIG = '".

    QUEST_DEPLOYMENT_DIRECTORY = "/ home/idm/Quest_Software/Foglight_Agent_Manager/agents/JavaEE.

    If [f ' $QUEST_DEPLOYMENT_DIRECTORY/include - JavaMonitoring.sh "]

    then

    QUEST_JAVA_ENV_OPTS = WEBLOGIC:NODEAGENT: ${JAVA_HOME}

    Export

    PERFORMASURE_OPTIONS = "-Dquest.agent.appserverinfo = $ {server_name}": WEBLOGIC:10.3.5.0 ""

    . "$QUEST_DEPLOYMENT_DIRECTORY/include - JavaMonitoring.sh".

    on the other

    echo agent Java EE not activated

    FI

    # END * Quest Foglight integration * END

    ECHO ' from weblogic Java version:

    ${JAVA_HOME} / bin/java ${JAVA_VM} - version

    # START WEBLOGIC

    If ["${WLS_REDIRECT_LOG}" = ""]; then

    echo "Starting WLS with line:

    echo "${JAVA_HOME} / bin/java ${JAVA_VM} ${MEM_ARGS}.

    -Dweblogic.Name = ${SERVER_NAME}

    -Djava.Security.policy=${WL_HOME}/server/lib/WebLogic.policy

    ${JAVA_OPTIONS} {PROXY_SETTINGS}

    ${PERFORMASURE_BOOTSTRAP :-"-Dquest.env.bootstrap_opt=unused}"

    ${PERFORMASURE_JAVA5 :-"-Dquest.env.java5_opt=unused}"

    ${QUEST_AGENT_CONFIG_OPT :-"-Dquest.env.agent_config_opt=unused}"

    ${QUEST_LOG_CONFIG_OPT :-"-Dquest.env.log_config_opt=unused}"

    "${PERFORMASURE_OPTIONS} {PERFORMASURE_BOOTAGENT} ${SERVER_CLASS}".

    ${JAVA_HOME} / bin/java ${JAVA_VM} ${MEM_ARGS}

    -Dweblogic.Name = ${SERVER_NAME}

    -Djava.Security.policy=${WL_HOME}/server/lib/WebLogic.policy

    ${JAVA_OPTIONS} {PROXY_SETTINGS}

    ${PERFORMASURE_BOOTSTRAP :-"-Dquest.env.bootstrap_opt=unused}"

    ${PERFORMASURE_JAVA5 :-"-Dquest.env.java5_opt=unused}"

    ${QUEST_AGENT_CONFIG_OPT :-"-Dquest.env.agent_config_opt=unused}"

    ${QUEST_LOG_CONFIG_OPT :-"-Dquest.env.log_config_opt=unused}"

    ${PERFORMASURE_OPTIONS} ${PERFORMASURE_BOOTAGENT} {SERVER_CLASS}

    on the other

    echo "output window WLS Redirection to ${WLS_REDIRECT_LOG}".

    ${JAVA_HOME} / bin/java ${JAVA_VM} ${MEM_ARGS}

    -Dweblogic.Name = ${SERVER_NAME}

    -Djava.Security.policy=${WL_HOME}/server/lib/WebLogic.policy

    ${JAVA_OPTIONS} {PROXY_SETTINGS}

    ${PERFORMASURE_BOOTSTRAP :-"-Dquest.env.bootstrap_opt=unused}"

    ${PERFORMASURE_JAVA5 :-"-Dquest.env.java5_opt=unused}"

    ${QUEST_AGENT_CONFIG_OPT :-"-Dquest.env.agent_config_opt=unused}"

    ${QUEST_LOG_CONFIG_OPT :-"-Dquest.env.log_config_opt=unused}"

    ${PERFORMASURE_OPTIONS} ${PERFORMASURE_BOOTAGENT} {SERVER_CLASS}

    > "${WLS_REDIRECT_LOG}" 2 > & 1

    FI

    Thank you

    Mariya

    I recommend to open a business of pension as soon as possible because it may be the best way to solve this problem.

    You see warnings when you remerk the integration of Fogliight lines or are they just visible when foglight is present?

    Can echo you the java command which starts weblogic, so we can see what actually works?

    Thank you

    Golan

  • ZPrint accident of process before starting the virtual machine

    I see the following messages in system.log everytime my Windows VM starts. These accidents zprint apparently never happened before today. There is no previous accident for zprint report. The messages below always repeat 3 times before other messages on VM, commissioning.

    09/02/15 21:20:33... Report of incidents ReportCrash [7538] advice for zprint processes [7537]

    09/02/15 21:20:33... ReportCrash [7538] error saved crashreport to /Library/Logs/CrashReporter/zprint_2015-02-09-212033_...crash using uid: gid 0: 0, euid: egid 0: 0

    Extract from the report of crash:

    Exception type: EXC_ARITHMETIC (SIGFPE)

    Exception codes: EXC_I386_DIV (division by zero)

    Why the merger issues the command zprint? If she has always done so before, why is zprint now blocking?

    (If I run the terminal zprint command without specifying the name of the area it blocks the same way.)

    Anyone have any ideas?

    Some things that I did today that might be important:

    My Mac Pro locked up while I was running Firefox (open Youtube and Yahoo pages).  I pushed the power button / stop. The virtual Windows machine was running at the time.

    After restarting the Mac Pro, when I tried to start the virtual machine, I got the message: "... vmdk has one or more internal errors that cannot be repaired. The only option is to restore from a backup copy of this disk... »

    So I renamed the corrupt VM bundle, then drag-and - drop copied all of the virtual machine to a backup volume.

    When I started the virtual machine restored, I noticed the crash zprint above messages.

    Thank you!

    OS X 10.5.8, Fusion 3.1.4

    Fusion uses zprint to internal information of the kernel which are very difficult to obtain by other means.

    Given how long it has been since OS X 10.5.8 or Fusion 3.1.4 were changed, either something has been corrupted or something has changed in the system environment for that to happen early.  I can't find any other references to zprint triggering a SIGFPE anywhere else on the Internet...

    If you do not already done, I highly recommend running disk utility and check (and possibly repair) the disks of your host before doing anything else.

    See you soon,.

    --

    Darius

  • How to monitor bandwidth of machine comments

    Hello

    I need to monitor bandwidth usage «vm machine comments»

    fact any body knows how to do?

    I need a command or a name file within esx that give me appropriate values.

    Help, please?

    Thank you

    I would recommend a third-party tool like Xangati. I know they have a free version, or a trail. This example uses a net flow collector to display the speed of the protocols in and out of your hosts.

    Roger Lund VMware VMUG Leader VMware vExpert

  • Could not virtualize an old System V Unix machine running?

    I have a friend with an old (90) Unisys U6000/35 (Intel 486) server running Unix System V and a necessary Cobol program.

    One of these days, the server will crash.

    Y at - there a Posibility to virtualize (P2V for example) all current delivery system?

    Any suggestion will be appreciated nostly.

    Thank you

    Jose

    Post edited by: jalourenco

    Hello

    If this version of Unix Sys V has a SCSI BusLogic driver then Yes you can virtualize (because it runs on hardware 486), however I doubt that. You might it virtualize in WS running on IDE drives and maybe VMware Server v1.

    To run an x 86 OS as a virtual machine on ESX, it must have a driver LSI or logical SCSI Bus.

    In general, even if it does not, it is not possible.

    Best regards
    Edward L. Haletky
    VMware communities user moderator
    ====
    Author of the book ' VMWare ESX Server in the enterprise: planning and securing virtualization servers, Copyright 2008 Pearson Education.
    Blue gears and SearchVMware Pro items - top of page links of security virtualization - Security Virtualization Round Table Podcast

  • Download windows vista with additional recovery process recorder monitor disk 1 and 2 more system treats... recovery time remaining 16; will not simply stop 39: 30

    How can I fix it

    For any questions/problems with the software/recovery process, contact the manufacturer of your computer.

    It is the process of recovering from the manufacturer of the computer, not Microsoft.

    See you soon. Mick Murphy - Microsoft partner

  • Installation of support. Agent on the unix machine

    Hi, I need to install an agent on unix Server stanalone (my master repository is on another windows server)? How can I do? Should I run setup.exe with the choice of autonomous agent on unix Server?

    Run the installer on your unix system and choose the single agent installation

    Thank you
    Fati

Maybe you are looking for