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

Tags: Business Intelligence

Similar Questions

  • 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

  • Question from beginner on the installation of 1.5 on the new machine

    I signed up for an account of creative cloud when Edge animate 1.0 came out and installed it on my laptop.  I finally set aside some time to learn the software, but now I have a laptop better, new.

    It was my understanding at the time, and I read about this recently too, Adobe was kind enough to offer versions 1.0 and 1.5 indefinitely for free.

    My problem is that I can't install the software on my new laptop.  I found links for the Adobe Application Manager and the people who say that you can get there.  But when I opened MAO there is no option to download the software.  I also installed the Creative Cloud software, but can't download 1.5 there either, only the 30-day trial version (not what I was looking for).

    I was hoping to get one that will work indefinitely to version 1.5 as I had already, on my new computer (except that I actually 1.0 on my old computer).

    Any tips?

    I apologize if this has already been covered, I searched extensively through the forums to see if there was already an answer to my question.

    Hi, Jason.

    I want to clarify that we do not offer 1.0 and 1.5 indefinitely for free; We offer 1.x in a perpetual license for a promotional price of free.  The first statement implies that we will always offer 1.5, no matter what happens with the HTML world.  The means of this last once you download 1.x, we expire not the version you download.  I just wanted to clarify your statement.

    Thank you

    -Elaine

  • 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

  • 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.

  • Installation Cloud Control agent 12 c on other blades thru RPM file and answer sets name of the bad cluster

    Hello

    I hope someone can help me with this. We have installed Cloud control 12 c em and its agents on various machines.

    First, we conducted with the target part two nodes of a network Infra cluster (let's call it proclu_1). Operating system is RH6.

    Then, using the same method (1 / y yum install /tmp/oracle-agt-12.1.0.3.0-1.0.x86_64.rpm then)

    2 / /etc/init.d/oracle-agt RESPONSE_FILE=/usr/lib/oracle/agent/agent.properties) we have installed the agent on the other 2

    blades that are part of another cluster (proclu_2). The agent.properties file that precedes contained only the usual key-value lines:

    OMS_HOST = omsmachine.stuff.be

    OMS_PORT = 4889

    AGENT_REGISTRATION_PASSWORD = ametemp

    AGENT_USERNAME = oracle

    AGENT_GROUP = oinstall

    AGENT_PORT = 3873

    ORACLE_HOSTNAME = promachine.stuff.be

    Now, if I change to the/usr/lib/oracle/agent dir and search for the name "proclu *" from there, I found the name of the

    First install (on the first cluster of proclu_1):

    [oracle@bladb0406 officer] $ pwd

    / usr/lib/Oracle

    [oracle@bladb0406 oracle] $ find. -name "proclu_1."

    ./agent/agent_inst/SYSMAN/EMD/State/has/proclu2/cluster/proclu

    ./agent/agent_inst/SYSMAN/EMD/State/configstate/cluster/proclu_1

    ./agent/agent_inst/SYSMAN/EMD/State/statemgmt/cluster/proclu_1

    ./agent/agent_inst/SYSMAN/log/targets/cluster/proclu_1

    My questions:

    1 / the first two nodes (blada0204 & blada0406) in our first group this 'find' send him back

    same directory names with "proclu_1", this is what we expected: where to look for the agt oracle script

    our cluster name?

    2 / why he put the name of 'proclu_1' even - and evil - on our other two nodes (bladb0204 & bladb0406)?

    (us have expected 'proclu_2'...)

    Is there a way to fix this, or should I reinstall the agent (after you set/change something somewhere

    While it contains the name of the correct cluster...) ??

    Thank you very much.

    Kind regards

    SEB

    Unfortunately, this goes back to the RAC install procedures.   Check the name of the cluster for each cluster.   If they are all the same, installed, then you will need to manually discover/change name when you promote so that your clusters are unique in EM.

    To verify the name together for clusterware installation:

    / bin/cemutlo n

  • HP Support Assistant on my laptop or desktop does not detect the other machine.

    HP Support Assistant on my desktop or my laptop does not detect the other machine.  They are both on the same network.  Both are HP machines. Both are running Windows 10.  Is normal.  I would like to kind of monitor my desktop with my laptop when I'm away from home.

    @bmedbury

    The behavior you describe is normal - the HP Support Assistant is a program "per computer", in other words, each program HPSA lies and keeps track of just a computer on which the program is installed.

    When you see a post that will help you,

    Who inspires you, gives a cool idea,

    Or you learn something new.

    Click the 'Thumbs Up' on this post.

    My answer-click accept as Solution to help others find answers.

  • Error during installation of the agent on the monitored host Manager

    Hi all

    All in SOLARCOSY a manager of the agent in the host control, we are faced with this problem. Please could someone help me on this ASAP.

    Please find the attached screenshot.

    Kind regards

    Shiva G

    Please check this article, he talks about a similar error start agents, the solution may be the same

    https://support.quest.com/SolutionDetail.aspx?ID=SOL116611&PR=Foglight

    • Title

      Cannot start agents on Windows FglAM: no memory buffer space available JVM_Bind
    • Description

      Agents installed on an Agent Manager of windows may not start. The following errors appear in the journal of FglAM:

      2013-11-22 14:16:17.270 ERROR [start Thread] com.quest.glue.core.Glue - cannot start
      java.net.SocketException: no available buffer space (maximum number of connections reached?): JVM_Bind

      2013-11-22 14:16:17.270 ERROR [start Thread] com.quest.glue.core.Glue - an unexpected error has occurred which may cause undesired behavior. You can contact Quest Software customer support if you see this error again: could not stop the native Launcher
      java.lang.NullPointerException

    • Cause

      The number of ephemeral TCP ports by default is 5000. Sometimes, this number can be less if the server has too many active client connections through which ephemeral TCP ports are all used to the top and in this case no more can be allocated to a new client connection request.

    • Resolution

      Resolution

      The solution is to open the registry editor and look for the registry subkey: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters and add a new entry, as shown below:

      Value name: MaxUserPort
      Value type: DWORD
      Value data: 65534

      Workaround

      Restart the Agent Manager Foglight

    • More information

      Ref: http://support.microsoft.com/kb/196271

  • I am running vista ultimate SP2 32 bit. I'm unable to complete the installation. Support for koadak says that I need to update my windows install. When I go on the site microst, I don't know that one to download. Help!

    I am running vista ultimate SP2 32 bit.  I'm unable to complete the installation. Support for koadak says that I need to update my windows install.  When I go on the site microst, I don't know that one to download. I am running vista ultimate SP2 32 bit.  I'm unable to complete the installation. Support for kodak says that I need to update my windows install.    Help!

    Update your OS via windows update (start > Control Panel > Security > windows update).

  • I get an error "the disk hard virtual parent is in a saved state. Discard the saved state or stop the virtual machine and try again. "during the installation of XP mode.

    I have Win7 Pro SP1 x 64.  I downloaded WindowsXPMode_en - us.exe (from Microsoft downloads) and run it.  The installation seems to work OK (I've specified a different location for the parent virtual hard disk file).  Then, installation happening and I provide the information requested (name of user and password for the XP Mode), updates Windows and OK to the issue of sharing.  The installation program then reports the following error:

    The disk hard virtual parent is in a saved state.  Discard the saved state or stop the virtual machine and try again.

    I get the error even if I try manually configure XP Mode (use the Setup Wizard).  I downloaded the installer XPMode (3 times) and reinstalled several times, always with the same result.  If it helps, I can't locate anywhere .vsv file.

    Any idea what's going on?

    Original title: XP Mode Setup error

    Hi smithnr10,

     

     

    You must post your question in the TechNet forums because it caters to an audience of it professionals.

    To do this, you must consult the link-

    http://social.technet.Microsoft.com/forums/en-us/w7itprovirt/threads

     

    Hope this helps!

  • I have a digital signature, but when trying to install its software, it says "(Package of Installation not supported by the processor - it comes to i3)?

    I have a digital signature, but when trying to install its software, it says "(Package of Installation not supported by the processor - it comes to i3)?

    Hi Richard,

    1. what software are you trying to install?

    2 are. what digital signature you referring?

    3. What is the brand and model of the computer?

    4. you made any hardware or software comes to the computer before the show?

    Also check out the links for more information:

    What is a digital signature?

    http://Windows.Microsoft.com/en-us/Windows7/what-is-a-digital-signature

    How can I decide that drivers are safe to install?

    http://Windows.Microsoft.com/en-us/Windows7/how-can-i-decide-which-drivers-are-safe-to-install

    Please write to us with the exact details of the question and the answers to the questions above so that we can help you further.

  • Error "have sufficient privileges to complete this installation for all users of the machine. "log on as an administrator and try again the installation" when you try to install iTunes

    Original title:

    I just installed windows7, I had to uninstall itunes in order to complete the instalation of windows7. everything went well until I tried to reinstall itunes.

    During this process, I get the message "you don't have sufficient privileges to complete this installation for all users of the machine. log on as an administrator and try this installation again. ». but I am logged on as administrator.

    Hello

    To resolve this problem, use the following methods. After completing the steps in each method, check to see if the issue is resolved before you go to the next method. If the problem is resolved by any method, you do not have to use other methods.

    Method 1:

    Right click on the installer for iTunes and click Run as administrator.

    Method 2:

    Disable user account control settings and check.

    Enable or disable the User Account Control

    Note: User Account Control (UAC) can help prevent your computer from unauthorized changes. UAC notifies you when changes will be made to your computer that require administrator-level permissions. Disabling it can make your compromised computer. Please make sure that enable you UAC, once you have completed troubleshooting.

    Method 3:

    Allow the default Administrator and try to install it in this user account.

    a.Click on Start, click principally made programs, Accessories, right-click on command prompt and select run as administrator.

    b.Type in the following command and press ENTER.

    NET user administrator / active: yes

    c.Log disable the current user account and log in to the user called Administrator account.

    d.Install iTunes in this default Administrator account.

    e.Once of that installation is complete, the default administrator is disconnected.

    f. log in to your user account.

    g.Disable the default Administrator account. Follow these steps.

    i.Click on Start, click principally made programs, Accessories, right-click on command prompt and select run as administrator.

    II. type the following command and press ENTER.

    NET user administrator / active: No.

  • Problem with the installation of MS Agent 12cR5 for Windows

    Hi, Im going to use Oracle EM 12 c.

    Installation of serveir is complete and Im now attacking agent installation.

    I have added Agents to catalog and retrieve them to an FTP server where I can download and then on my clients servers.

    After you unzip the agent, I run the Setup with the command:

    agentDeploy.bat AGENT_BASE_DIR = % AGENT_HOMEDIR % OMS_HOST = % FTPHOST % EM_UPLOAD_PORT = % EM_PORT % AGENT_REGISTRATION_PASSWORD = % OMS_PASSWORD % ORACLE_HOSTNAME=%COMPUTERNAME%.%USERDNSDOMAIN%

    Problem, it's a moment, the service is installed, the agent is safe, everything is OK, except this error message:

    INFO: C:\oracle\agent12c > "C:\oracle\agent12c\core\12.1.0.5.0\jdk\jre\bin\java" - classpath "C:\oracle\agent12c\core\12.1.0.5.0\oui\jlib\OraInstallerNet.jar; C:\oracle\agent12c\core\12.1.0.5.0\oui\jlib\OraInstaller.jar; C:\oracle\agent12c\core\12.1.0.5.0\oui\jlib\xmlparserv2.jar; C:\oracle\agent12c\core\12.1.0.5.0\oui\jlib\srvm.jar; C:\oracle\agent12c\core\12.1.0.5.0\oui\jlib\emCfg.jar; C:\oracle\agent12c\core\12.1.0.5.0\oui\jlib\share.jar; C:\oracle\agent12c\core\12.1.0.5.0\oui\jlib\ojmisc.jar; C:\oracle\agent12c\core\12.1.0.5.0\oui\jlib\xml.jar' oracle.sysman.oii.oiic.OiicRunConfig C:\oracle\agent12c\core\12.1.0.5.0\oui ORACLE_HOME=C:\oracle\agent12c\core\12.1.0.5.0 RESPONSE_FILE=c:\oracle\agent12c\core\12.1.0.5.0\agent.rsp ACTION = set MODE = perform COMPONENT_XML = {oracle.sysman.top.agent.11_1_0_1_0.xml} RERUN = true

    INFO:

    NEWS: make - launch of current mode for action: Configure

    INFO:

    INFO: the value passed to dir splitc: / oracle/agent12c

    INFO: length of time is2

    INFO: Return the value: c: \ / oracle/agent12c

    INFO: Forwarding proxy Port agent Mode execDeployAgentOnly

    INFO: Getting Inet addresses host vsrvpeai

    INFO: * Port Agent Check completed successfully.* *.

    INFO: The Agent Mode is None

    INFO: Error: management agent configuration failed. The expansion of monitoring oracle.sysman.oh module configuration may have failed, or this plug-in is not present in the management agent software. CONFEZIONE management agent software have the extension of monitoring oracle.sysman.oh module. Otherwise, try the operation again. If the agent software have the extension of monitoring oracle.sysman.oh module, check module extension C:\oracle\agent12c\agent_inst\install\logs deployment log to see if the configuration of the expansion of monitoring oracle.sysman.oh module has failed.

    INFO:

    NEWS: make - mode stopped for action: Configure

    INFO:

    INFO: You can view the log file: C:\oracle\agent12c\core\12.1.0.5.0\cfgtoollogs\oui\configActions2016-02-17_11-26-41-AM.log

    INFO:

    INFO: C:\oracle\agent12c > exit/b 3

    INFO: Houses of Plugin:

    INFO: Houses of Plugin:

    INFO: C:\oracle\agent12c\core\12.1.0.5.0\oui\bin\runConfig.bat ORACLE_HOME=C:\oracle\agent12c\core\12.1.0.5.0 RESPONSE_FILE=c:\oracle\agent12c\core\12.1.0.5.0\agent.rsp ACTION = set MODE = perform COMPONENT_XML = {oracle.sysman.top.agent.11_1_0_1_0.xml} RERUN = true completed with status = 3

    SEVERE: ERROR: failure of the agent configuration

    SEVERE: ERROR: the failure of the agent deployment

    Here's the log of configAction Yes

    ###################################################

    The configuration of the action which is in

    ------------------------------------------------------

    The plug-ins Agent Configuration Wizard is running

    AgentConfiguration: the configuration of the agent started

    Validation of OMS_HOST and EM_UPLOAD_PORT

    Detecting the current free ports...

    AgentConfiguration: run the command emctl deploy agent...

    AgentConfiguration: configuration of the agent continued with the status = False

    The plug-ins Agent Configuration Wizard failed his method

    ------------------------------------------------------

    The configuration of the action doesn't have its method

    ###################################################

    I couldn't find any other reference error.

    I can start the agent, is the 'running and ready' status, but it not download anything.

    WHO do not see this new agent.

    No problem on my setup firewall.

    Could you help me?

    Thank you

    Problem was that I miss to copy the Plugin file in good location.

    It must be copied to the zip file in the unzipped folder of AgentCore (same place as agentDeploy.bat)

  • Is it necessary that the guest OS to support SSD if the file of the virtual machine is placed on an SSD?

    Dear,

    I have a plan to set up a file of the virtual machine on an SSD. The host system is windows 10 (on an other SSD, I'll use 2 SSD), it should support the SSD very well.  Then comes the question: should I also install an OS that needs support also guest SSD?

    My opinion is it does not matter since the disk i/o operation is made by host operating system, it is the host operating system which finally determin whick block data will be published (optimization of the disk).

    Am I wrong? Thank you.

    Sorry for the enigmatic answer...

    In your case, the answer is Yes: he cares about the type of media, while the virtual disk is a vmdk (virtual material treaty) and placed in an SSD.

    There are a few cases where you might use a physical disk directly to the virtual machine (called peripheral raw disk or RDM in vSphere environment).

    Concerning

  • Please explain number maximum support of the virtual machine by exsi 5.5 and exsi 6 service console

    Please explain number maximum support of the virtual machine by exsi 5.5 and exsi 6 service console

    What exactly do you want to know?

    For supported máxima, see one of the following documents:

    https://www.VMware.com/PDF/vsphere5/R55/vSphere-55-configuration-maximums.PDF

    https://www.VMware.com/PDF/vsphere6/R60/vSphere-60-configuration-maximums.PDF

    Full documentation can be found at:

    https://www.VMware.com/support/pubs/vSphere-ESXi-vCenter-Server-pubs.html

    https://www.VMware.com/support/pubs/vSphere-ESXi-vCenter-Server-6-pubs.html

    André

Maybe you are looking for