Cloning of servers and Agent Manager

I'm running into a situation where our AIX engineers are cloning of servers with configurations Manager Agent. When I check the configuration file for the Agent on the cloned Server Manager it shows the host name of cloned servers and agents. What is the right way to install the agent Manager. Must it be freshly installed on each server? If he is cloned, what measures must be taken to ensure that all configurations are changed on the new conical Server?

Raul,

You want to change the display host name in a file named fglam.config.xml (directory of the example that you can see the path: C:\Quest_Software\Foglight_Agent_Manager_32Bit\state\default\config\fglam.config.xml)

In the file, you will see the old name of the host. You want to change this string for the name of the new server

Make the change in the display of the hostname

MININT-hi87m9s_32Bit

David Mendoza

Tags: Dell Tech

Similar Questions

  • Removing servers still have the cluster database and agent status 'pending '.

    Enterprise Manager 12.1.0.2

    We have recently decommissioned 3 servers that were part of a cluster.  Servers and their agents are gone.

    Em, I deleted the nodes in the cluster, removed the hosts and all of its objects.

    A node is gone, two left.

    I have 'cluster of databases' which show the status pending.

    I have 2 principles that show too inaccessible.

    I tried to delete these courses, which all but no luck. Any suggestions?

    This code still works?

    Start

    mgmt_admin.cleanup_agent('agentname:port');   commit;

     -mgmt_admin.delete_target_internal ('agentname', 'official');   commit;

    end;

  • Foglight Agent error manager and Agent infrastructure

    I get the following in the Foglight Agent Manager error message:

    ECHO myWindowsAgent > com.quest.remoteos.SystemMonitorImpl ERROR [Quartz-1] - unable to connect to . No data has been collected.com.quest.glue.api.services.RemoteConnectionException: a connection could not be established

    Also when you try to add a single host to remotely monitor I get the same error message.

    I checked the credentials and they are correct... any ideas how to solve this problem?

    See if this article helps you, as he mentions it exactly the same problem (3 types of problems, it's too long to copy/paste).

    https://support.quest.com/SolutionDetail.aspx?ID=SOL92051

    Also, please check the release notes troubleshooting section because it may be a problem getting WMI wogs.

    http://eDOCS.quest.com/Foglight/567/files/CartridgeForInfrastructure_567_ReleaseNotes.html

    Troubleshooting

    This section provides a list of references that deal most often face questions about remote connectivity, which allows easily using the information provider knowledgebase or Foglight documentation for troubleshooting:

    Golan

  • How can I start the BI and ODI Managed Servers?

    Well,.

    I read at step 4 of Doc-ID 1589540.1 the following:

    "BI applications requires the BI and the ODI Managed Servers (bi_server1 and odi_server1) should be started via the node Manager. This setting is required for settings, memory, and jvm arguments are correctly defined.

    Starting not not the BI and managed servers of ODI can lead to memory problems and the loss of functionality BI Applications Configuration Manager, the Manager of functional installation and ODI.

    To ensure that the BI and ODI Managed Servers are started through the node Manager, start using the Console of Administration WebLogic user interface.  Do not start the BI and servers managed by ODI by using the managed server start script. »

    Well, as I'm new Weblogic management, then, what are the steps to start all of the services?  (I have OBIEE, ODI and Bi Apps on the same server).

    I mean, was that you should not start their script. What is the proper sequence and how should I do this?

    Could someone help me on this?

    Thanks in advance...

    the appearance of the home screen for environment-> servers-> here you will see the admin and managed servers-> click the tab control and then check off the boxes related to managed servers, and then click start that's all

  • Find the Agent and their Manager - connect by

    Hello
    version database Oracle 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production
    Please help me to know Agent and their Manager. also published the desired output
    CREATE TABLE AGENT
    (
      AGENT_NAME  VARCHAR2(100 BYTE),
      SID         NUMBER,
      MGR1        VARCHAR2(100 BYTE),
      MGR2        VARCHAR2(100 BYTE),
      DEPT_ID     NUMBER,
      START_DT    DATE,
      END_DT      DATE
    );
    
    CREATE TABLE PERSON
    (
      PERSON_NAME  VARCHAR2(100 BYTE),
      SID          NUMBER,
      DEPT_ID      NUMBER,
      START_DT     DATE,
      END_DT       DATE
    );
    
    SET DEFINE OFF;
    Insert into PERSON
       (PERSON_NAME, SID, DEPT_ID, START_DT, END_DT)
     Values
       ('DEEPAK', 200, NULL, NULL, NULL);
    Insert into PERSON
       (PERSON_NAME, SID, DEPT_ID, START_DT, END_DT)
     Values
       ('VIJAY', 300, NULL, NULL, NULL);
    Insert into PERSON
       (PERSON_NAME, SID, DEPT_ID, START_DT, END_DT)
     Values
       ('MICHELLE', 400, NULL, NULL, NULL);
    Insert into PERSON
       (PERSON_NAME, SID, DEPT_ID, START_DT, END_DT)
     Values
       ('NATLO', 500, NULL, NULL, NULL);
    COMMIT;
    
    
    SET DEFINE OFF;
    Insert into AGENT
       (AGENT_NAME, SID, MGR1, MGR2, DEPT_ID, 
        START_DT, END_DT)
     Values
       ('AGENT4', 103, 'NATLO', 'MISHKA', NULL, 
        NULL, NULL);
    Insert into AGENT
       (AGENT_NAME, SID, MGR1, MGR2, DEPT_ID, 
        START_DT, END_DT)
     Values
       ('AGENT1', 100, 'DEEPAK', 'MICHELLE', 10, 
        TO_DATE('01/01/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('12/31/9999 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into AGENT
       (AGENT_NAME, SID, MGR1, MGR2, DEPT_ID, 
        START_DT, END_DT)
     Values
       ('AGENT2', 101, 'MICHELLE', 'VIJAY', 55, 
        TO_DATE('01/01/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('05/01/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into AGENT
       (AGENT_NAME, SID, MGR1, MGR2, DEPT_ID, 
        START_DT, END_DT)
     Values
       ('AGENT3', 102, 'VIJAY', 'NATLO', 105, 
        TO_DATE('05/12/2013 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('12/31/9999 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    COMMIT;
    output Required:
    Agent1  100 DEEPAK MICHELLE VIJAY NATLO MISHKA
    Agent2  101 MICHELLE VIJAY NATLO MISHKA
    Agent3  102 VIJAY NATLO MISHKA
    Agent4  103 NATLO MISHKA

    Hello

    You can simplify the solution Al's using pseudo-column CONNECT_BY_ISLEAF:

    SELECT    CONNECT_BY_ROOT(agent_name) agent_name
            , CONNECT_BY_ROOT(sid) sid
            , SYS_CONNECT_BY_PATH(mgr1,' ')||' '||mgr2 path
    --      , ROW_NUMBER() is not needed
         FROM  agent
         WHERE CONNECT_BY_ISLEAF     = 1     -- *****  Added  *****
      CONNECT BY PRIOR mgr2 = mgr1
    ;
    

    In addition, mixture of analytical functions and CONNECT BY in the same query does not always. Before Oracle 11.2, it almost never works. I have not seen documentation on this, but I am always wary. In any case, CONNECT_BY_ISLEAF is simpler and more efficient, if you want even use ROW_NUMBER here.

    Remember that Oracle 11.2 has recursive WITH clauses, which can do everything that CONNECT AT the time, and much more. For this particular problem, CONNECT BY is always the best solution, but don't forget that you now have a choice.

  • Foglight Agent Manager 5.6.6

    Hello

    Currently, we are on Foglight Agent Manager 5.6.2 and we want to go to Foglight Agent Manager 5.6.6.

    Should install us Foglight Agent Manager 5.6.6 or we should go to?

    I can't find the Foglight Upgrade Guide on support.quest.com.

    Thanks for the help.

    5.6.7.2 fglam is the most recent (but also an additional patch for 5.6.7.3)

    Upgrade from FMS guides can be extracted from edocs.quest.com

    David Mendoza

    Foglight Consultant

  • Embedded Agent Manager

    Move us to a new platform and update our version of Foglight sometime this year (it will be a new total installation).  What is recommended as the best practice with Foglight Manager Agent:

    1. leave the Agent Manager automatically installs or

    2. install the Agent as an external Manager Agent Manager

    Thank you

    In general, do not run a local FMS FGLAM, unless your environment is tiny, or you have a massive FMS server.

    Local FGLAMs consume resources better used memory by increasing the size of the heap on the FMS.

    That being said, there are use cases for the execution of a local FGLAM:

    • running the agent monitor newspaper inherited FMS (at least until the new version coming out later this year)

    Our standard is a 2 8 GB Windows VM as a basic FGLAM server, but the specifications can vary widely, depending on what type of agents you will use with the FGLAM.

  • Stop a server managed using WLST and Node Manager

    Hello

    I use Node Manager (NM) to start my managed servers. After connecting to the Server Admin, I run the command:

    Start ('myserver1', 'Server')

    I check the log file and the console and the managed server shows no error, either it RUNS. The tail of the log file says "SOA platform is running accept queries"

    I'm now trying to write a script to stop for the same managed servers. I connect to the Node Manager via wlst, connect to the Admin Server successfully and deliver:

    Shutdown ('myserver', 'Server')

    Here is the error I see in the managed server log file:

    [JCABindingManager]: this operation is not supported for JCA base MDB.

    The managed server then passes State SUSPENDED.

    I have renamed the data files, cache and tmp, restarted the server and once again tried to arrest him, but the same thing happened.

    Any suggestion is appreciated.

    Thank you

    Andy

    What happens if you add strength = "true" as an additional parameter for your

    stop command?

  • Where to increase Java Heap for Admin settings and the managed server.

    Hello Experts

    I have issues with the JVM arguments of memory expansion for the Admin and managed servers. I tried in some places to increase the arguments of memory (Xms and Xmx 1024 m) but is not effective. When I start the Server Admin Server and managed, I don't see the segment increased memory settings. Here's what I see-

    "From WLS line: / oracle/app/bi/Oracle_BI1/jdk/java - Server - Xms256m-Xmx512m - XX: MaxPermSize = 512 m.

    I have the following arguments of memory in the setDomainEnv.sh located in < DOMAIN_HOME > / bin

    XMS_SUN_64BIT = "2048".

    export XMS_SUN_64BIT

    XMX_SUN_64BIT = "2048".

    export XMX_SUN_64BIT

    It looks that it did not work, so I added an entry in the setOBIDomainEnv.sh file in the hope to increase the memory of Java, but that does not work either. Here is the setOBIDomainEnv.sh file.

    jvm.jpg

    Really, try to understand where and how the JVM settings are controlled from. Please guide me.

    Enjoy your time.

    Rakesh

    Under the setobidomainenv.sh you will also find the tag server administrator to increase settings in jvm in there too. Depending on your version of the seller and little Java (Sun, Oracle, IBM, HP and vs 32 - bit 64-bit) so change accordingly

    for example:

    If the server group is not Olivier then we can assume that it is the server administrator

    If ["${JAVA_VENDOR}" = "Sun"]; then

    # - UseSSE42Intrinsics required for the server running EM

    If ["${JAVA_USE_64BIT}" = "true"]; then

    # Server Admin memory for 64-bit Sun JVM args

    SERVER_MEM_ARGS = ""-Xms256m - Xmx1024m - XX: MaxPermSize = 512 m - XX:-UseSSE42Intrinsics ""

    export SERVER_MEM_ARGS

    Similarly, in setdomain.sh, you will find the args as below:

    XMX_SUN_64BIT = '512 '.

    export XMX_SUN_64BIT

    XMS_SUN_64BIT = "256".

    export XMS_SUN_64BIT

    If ["${JAVA_VENDOR}" = "Sun"]; then

    WLS_MEM_ARGS_64BIT = "- Xms256m - Xmx512m".

    export WLS_MEM_ARGS_64BIT

    WLS_MEM_ARGS_32BIT = "- Xms256m - Xmx512m".

    export WLS_MEM_ARGS_32BIT

    After setting their just executer./setdomain.sh et./setobidomainenv.sh and then try to start the admin and managed servers and see the processes running with the updated values.

  • Problem starting managed server and Node Manager

    Hello

    I created the WebLogic domain with 2 managed servers. I use Jdevevloper11.2.3 integrated WebLogic server.  I can't start the servers ManagedWebLogic. On the console, I get an error stating:

    "For the server Server1, the Node Manager associated with new_Machine_1 of the machine is not accessible."

    Nor any of the management server is started through the startManagedWebLogic.cmd. Any help on this?

    Hello

    To start the managed from the console server, you must first start the node Manager process and then you can start managed based on the console server.

    Find the link to the screenshot of how to configure Nodemanager and start the managed server.

    NODE MANAGER configuration and starting managed server from Console - weblogicexpert

    To start the managed break with start-up follow the link below Scrip.

    Starting/Stoping Weblogic Managed Server - weblogicexpert

    It may be useful

  • Cloned 2 servers, but now the original servers are not part of the domain

    I have 2 servers I cloned, and I'm sure they are full of clones - my first major attempt at this. Yesterday I was able to connect to their end, but today I can only connect locally as if they are no longer in the domain. I missed a step in the process of cloning? The strange thing is that these are 2 Blackboard learning system production servers and that part for users works very well.

    Thanks for any help

    There is no need to do a full didn't convert on these comments, just move in a fictitious area, then add it to the appropriate domain, if these customers have different computer names, then they will add to the field as new Member servers, as side effect of this is that they will get a new SID of domain too.

    If as I suspect, they don't actually get a new computer name, then you need to run sysprep on the two guests to make them unique. This will change the local SID and the name of the computer, then once finished. Re add them to the domain.

  • Security roles and workflow management groups

    People,

    There is a section on Workflow management groups and security roles in vCloud Request Manager Installation and Configuration Guide - Guide of Directors Chapter 5 and 6. I have difficulty working on the relationship between the two settings.

    My first question is around the goal of the WM default checkbox that the specific guide is used to set the default user workflow management group.

    What would a never used default WM? I mean, what would he ever substitute the other workflow management groups that you define.

    In addition, in the guide, it say cloud Blueprint Admin and Asset Manager security role is a combination of the Admin of Blueprint of cloud and the Asset Manager. Is cloud Blueprint Admin & Asset Manager being the two groups of workflow management, reasonable to assume that a security role is composed of workflow management groups?

    And when I select agent, I do not see a cloud Blueprint Admin and Asset Manager security role listed?

    Finally, is there a way to determine the exact permissions that contains a workflow management group/security role?

    Thank you

    Cormac

    The Group Management (WM) default workflow is largely an artifact of vSM based vRM.

    VSM, a group of WM is a collection of agents used to apply security and route of tasks, among other responsibilities. (For the purpose of vRM, an agent can defined as users who have access to the vRM admin interface).

    vRM mainly use WM groups as a way to deliver relevant communications to users based on their responsibilities for example vCD Admins, Asset Managers etc. vRM does not require other functions related to WM groups.

    For functional reasons, vSM requires that each officer with access to the capabilities of WM belong at least a WM group. In addition, at least one of these groups must be designated the default WM for this officer group. These functional reasons are not immediately relevant to the specific use of vRM rest however case the constraint. Suffice to say for vRM, every WM user must have a WM group by default even if this information must never be used.

    Roles and groups are separate entities. A role defines a set of privileges to access a particular functional area of the admin interface for example a role WM sets permissions to interact with the workflow. of the roles of management (CM) configuration sets permissions to review and modify records in the repository of vRM.

    A special role of WM can be associated with one or more groups WM. When this WM role is assigned to a user, that user inherits groups associated with this role, WM allowing to simplify the administration of groups. An individual user can also have other WM assigned groups to them directly, complementary to those inherited from their role of WM.

    At an abstract level, vRM defines three types of users of the admin interface:

    1 vCD Admins

    2. plan Admins

    3. managers

    However, the security of MSM model requires that each individual user must be implemented with several components. By default, vRM sets a "Asset Managers" WM Group of what assets all managers must belong. However, WM groups cannot be used to give access to the features as well, so a separate from the "Asset Managers" WM role is obliged to grant access to these features asset managers. By default, the role of "Asset Manager" WM is associated with the "Asset Managers" group such that any user who is assigned the role automatically belongs to the Group also. There is also a separate 'Asset Managers' CM role that gives asset managers they need to the repository vRM for example the possibility to add new licenses for software products.

    This model of definitions is repeated for 3 personas above with a group and several roles defined for each. When an administrator assigns a user to one of these characters they should assign the groups and roles appropriate according to the documentation. They should not need to be concerned by the distinctions between each component.

    The role of the "Plan Director Admin and Asset Manager" reflects that a user may need to be asset manager and a Director of Blueprint. Because a user can have a role to the maximum by functional area, vRM provides a compound that provides two sets of permissions. However, a user can belong to several groups WM, so it is never necessary to provide a composite group.

    The role of composite is there; just maybe not where you expect to find. Blueprint Admins do not need to access WM, so there is not a 'Blueprint' Admin or a composite WM role. Blueprint Admins do need access to configuration management so it's an "Admin blueprint" and a role of CM composite.

    The details of the user screen provides:

    • a summary of all groups to which a user belongs

    • provides a 'Détails' button to drill down on each role assigned to the user to inspect the permissions granted by this particular role

    You must be a vCD Admin to see areas of the screen.

  • consolidation of servers, and hardware/software required

    Let me give a brief on the current and what we would need:

    We have Oracle/hyperion application running on all the () 8 servers DL585G2

    (To two cores) AMD Opteron™ Processor 8220 - CPU # 8 logic) and each server with 8 G of RaM and

    I'm bringing this to 3, after either using a BL465/DL585 G7.

    Either I go for

    DL585 G7 (4 x 12 base) - 1 No. 64 Gb

    BL465/DL585(2 x12 core) - 2 No. 48 each.

    or BL465 (core 2 * 12) - n190 4 GB RAM

    The data resides on the SAN storage. I would also like to include a failover with VM and dynamic resource planning.

    More details;

    How can I configure a failover of the VM for servers 3/4 with production - possible failover to other servers?

    How did the SAN related on the dynamic resource planning?

    You have all the diagrams architecture example on them, white papers?

    Why do we need control of storage i/o and data network control. This is with the company more vpshere?

    VMware vConverter autonomous is free and works perfectly and you can P2V DCPromo or servers you want but remember the domain controllers suggested to build the new VM and fine tune first it.  Depends on what servers/apps you, planning is the key and for DB and Exchange to ensure that all services stop and databases itself stop transaction.  If you can build the new VM and migrate users Inbox, and of databases would be cool, depends on how lar ge your virtual machines may take some time.

    Your consolidation report depends on what size your physical servers and if you have 24 hearts + 256 GB you can virtualized many machines virtual and everything depends on the workload and Ops ARE / s, make sure that your San can manage other IOPS performance issues / s and leads to the locks of the iSCSI.

    Most of the servers for the high end between 4GB - 32 GB and 2GB - 4 GB it not your math and consolidate nicely, also to analyze the performance of vCenter and if saturated its VMotion them and activate DRS.  For networking, you need at least 2 x 1GBe NIC attached to each port groups.

    If you found this information useful, please consider awarding points to 'Correct' or 'useful '. Thank you!!!

    Kind regards

    Stefan Nguyen

    VMware vExpert 2009

    iGeek Systems Inc.

    VMware, Citrix, Microsoft Consultant

  • On vSphere Linked Clone and Lab Manager 4

    Hello

    In the Lab Manager Installation and Upgrade guide, there is a sentence saying: "Lab Manager is not compatible VMware Fault Tolerance (FT) or clones linked vSphere.".

    My question is: "what is a vSphere Linked Clone? Is is distinguished by a Clone of VMware? Because as far as I am concerned, the linked cloning technology came from Lab Manager right?

    Thank you!

    Welcoem to the Forums - Yes TI a vSphere Linked Clone is different from that in Lab Manager Linked Clone but unserlying technology is the same - the difference is whtechnology manages the linked clone - vSphere is handled only by the vSphere environment while a cloned associated Lab Manager is managed by you are your Lab Manager environment.

    If you find this or any other answer useful please consider awarding points marking the answer correct or useful

  • View customer and Agent for 64 bit?  Windows 7? Vista? XP?

    Hi all

    The documents to see 3.1.2 and 4.x show NO support for 64-bit operating systems.  What is happening with this?

    We use Windows XP 64 bit for ProE a 3D mechanical CAD package.  I am sure that we are not the only company that has the memory required to go from 32 bit to 64 bit.  SPREP is a pig on Vista, Vista x 64 is really a dead-end.  Windows 7 x 64 is perhaps too recent.  It will never support for XP (Server 2003) Windows 64-bit?

    Yes, I'm sure that performance will be fine, otherwise we just buy more servers Dell R905 with 128 GB of ram for engineers. Buy more servers and their distribution to users are cake, replace all machines in a Department every 3 years is a PITA!

    Thank you

    The average user

    VMware View 4 does support Windows XP x 64 so I guess they also gave support to Vista x 64.  The program will be installed in the Program Files x 86 folder, but it will work unlike some verisons permeable who gave an error message about the software not being not not compatiable with the version of the operating system that you are running.  One thing to note is that the view Portal still does not support x 64 OS, but the stand-alone installation only.  In addition, the VMware View client and the agent with support offline does not install on Windows 7.

Maybe you are looking for

  • How "inspect element" arrived on my right click menu?

    I have installed several addons when it appeared. Anyone know where this right click menu item came? My research has suggested "firebug" - whatever that is. This isn't on my XP but it's on my Vista and both have the same addons.Thank you

  • MacBook pro has frozen three times in one day

    I currently own the MacBook Pro (retina, 13 inches, early 2015) with OS X El Capitan worm young 10.11.4, about 2 months. It has frozen 3 times today, which means I had to force reboot it three times as well. When it freezes, the keyboard and the trac

  • EtreCheck - slow 2012 Mini 10.11.3 results

    Aside from the RAM is a little low I don't know what could be the problem. The real memory usage is usually low on this machine and it worked fine for a while after the upgrade to El Capitan, so I would like to first explore other possible solutions.

  • Age of Empires manual

    original title: Empires age of the game, I have not received a user manual, where can I get one please? I loaded the game, need manual to follow. Age of Empires game

  • Remote Desktop hangs - Pro Win/7 Win/2003 Server access

    I'm access to about 20 different servers - mostly Win/2003.  On two of them. After working for a while; the screen turns off (gray); the task bar (sort of) will appear at the top of the screen. None of the keys work correctly; I can sometimes part of