Zenoos Monitoring Tool vs. Ops Manager...some help

Good Morning Guys, (Dont know if this is the right forum for this)
I am a network consulant at a firm where they are using Zenoos Monitoring software. I personally think the tool is not that great and at best it is not condusive to affective monitoring and alerting without being highly skilled in understanding the interface. In addition, the software has to be installed and configured on Linux which I am not against anything Linux however the environment is Windows based and the current skill set outside the Sr. Network Admin is not Linux admins.Can anyone let me know what you think about Zenoos and if anyone has used Op Manage Engine (which I am currently comparing Zenoos too). I would like to replace the product (Zenoos) with Ops Manage Engine but I have to build a strong case to do so.your help is appreciated..Thank you

The first part of your mcelog (the bit about " failed to prefill DIMM database from DMI data") strongly suggest one of the new RAM chips is defective. Start by simply putting the old one back in place and seeing if that helps. If it does, exchange the new faulty one with the seller for one that works. However, since you say yourself you aren't very tech savvy, it may be the case that you've simply purchased a RAM chip that is not compatible with your motherboard (although if both of the new chips are identical and the first one works, that may not be so).
When deciding to upgrade all the most vital hardware components of a machine, it's best to do it one piece at a time, and reconfigure the operating system to account for the new hardware. Uninstall old drivers, install new ones, change any personal settings related to the old hardware, reboot, make sure everything's fine and then repeat the process for every other new piece of hardware. Replacing everything at once without ensuring it will all work together increases the chances problems like this immensely---the problem itself may be very simple, but you've undertaken so many changes in such a short time that finding out what the problem is in the first place can be very complicated.

Similar Messages

  • Managed Server Monitoring tools for WLS 8.1 on linux

    Our organization uses a set of locally written shell scripts to monitor the status of the managed servers in a WLS 8.1 domain installed on RedHat Linux 4, update4.
    The main monitoring script uses the output of the "ps" and "netstat" commands to determine the process-id, server name, and tcp ports used by each managed server.
    It is able to determine the name of the managed server by parsing the value of the "-Dweblogic.Name" parameter from the command line of the java command that launches the jvm that represents the managed server.
    When a managed server is started, the command line resembles the following:
    java \
    -DLotsofVariables \
    -classpath LotsofCpElements \
    -Djava.security.policy==PolicyFile \
    -Dweblogic.Name=NameOfMgdServer
    The maximum number of characters displayed by the "ps" command with the wide (-w) option is 4096.
    A recent addition to the class path has increased the length of the command line, resulting in the "NameOfMgdServer" being truncated.
    It now appears similar to the following:
    java \
    -DLotsofVariables \
    -classpath LotsofCpElements \
    -Djava.security.policy==PolicyFile \
    -Dweblogic.Name=NameO
    This breaks our monitoring script because it is looking for a managed server named "NameOfMgdServer", not "NameO".
    Each managed server is monitored by the WLS administration server and the local node manager.
    Is there a way to restructure or rewrite the command line used to launch the managed server java jvm such that the "-Dweblogic.Name=NameOfMgdServer" appears before the specification of the classpath?
    I can find no mention of the "-Dweblogic.Name" parameter on the "Remote Start" tab corresponding to each managed server, so it appears that WLS is building the java command line internally based on the contents of the config.xml file, before launching the managed server process.
    I've considered adding an additional parameter to the java command line preceding the specification of the classpath, simply to identify the identity of the managed server, but I don't like this type of hack.
    Perhaps someone else has developed a similar monitoring tool, and could provide some advice?
    Any feedback is appreciated

    Our organization uses a set of locally written shell scripts to monitor the status of the managed servers in a WLS 8.1 domain installed on RedHat Linux 4, update4.
    The main monitoring script uses the output of the "ps" and "netstat" commands to determine the process-id, server name, and tcp ports used by each managed server.
    It is able to determine the name of the managed server by parsing the value of the "-Dweblogic.Name" parameter from the command line of the java command that launches the jvm that represents the managed server.
    When a managed server is started, the command line resembles the following:
    java \
    -DLotsofVariables \
    -classpath LotsofCpElements \
    -Djava.security.policy==PolicyFile \
    -Dweblogic.Name=NameOfMgdServer
    The maximum number of characters displayed by the "ps" command with the wide (-w) option is 4096.
    A recent addition to the class path has increased the length of the command line, resulting in the "NameOfMgdServer" being truncated.
    It now appears similar to the following:
    java \
    -DLotsofVariables \
    -classpath LotsofCpElements \
    -Djava.security.policy==PolicyFile \
    -Dweblogic.Name=NameO
    This breaks our monitoring script because it is looking for a managed server named "NameOfMgdServer", not "NameO".
    Each managed server is monitored by the WLS administration server and the local node manager.
    Is there a way to restructure or rewrite the command line used to launch the managed server java jvm such that the "-Dweblogic.Name=NameOfMgdServer" appears before the specification of the classpath?
    I can find no mention of the "-Dweblogic.Name" parameter on the "Remote Start" tab corresponding to each managed server, so it appears that WLS is building the java command line internally based on the contents of the config.xml file, before launching the managed server process.
    I've considered adding an additional parameter to the java command line preceding the specification of the classpath, simply to identify the identity of the managed server, but I don't like this type of hack.
    Perhaps someone else has developed a similar monitoring tool, and could provide some advice?
    Any feedback is appreciated

  • Lab Manager 3 reports - SQL Queries - looking for some help

    Hi Everyone
    Our management has asked for metrics on the use of Lab Manager so I started looking around and noticed that none of the 3rd party tools support Lab Manager. I started to poke around the SQL database and managed to extract some info however my SQL knowledge is very limited. I am wondering if anyone out there has written their own queries or can help me sort some things out.
    I thought I would start a community thread as i'm sure I am not the only one out there looking to do this.
    This first query gives you the usernames and deploys in order
    SELECT *
    FROM Jobs
    WHERE (starttime > '02/01/2007') AND (object NOT LIKE 'VirtualRouter%') AND (operation LIKE 'JOB_Deploy') AND (object_type_full = 'Virtual Machine') and (status <> 3)
    This query gives you the daily deployments per organization
    SELECT convert(char(10), starttime, 101) as MonthYear, count(operation) as Deployments, bucket_name AS Organization
    FROM Jobs
    WHERE (operation LIKE 'JOB_Deploy')AND starttime BETWEEN '12/01/2006' AND '12/01/2009' AND (status <>3)
    GROUP BY convert(char(10), starttime, 101),bucket_name
    ORDER BY MonthYear
    This last query shows total deployments listed by username (someone helped me with this)
    SELECT U.username, COUNT(J.job_id) AS Deploys
    FROM  Jobs J INNER JOIN
                         Usr U ON J.user_id = U.user_id
    WHERE (J.object_type_full = 'Virtual Machine') AND (J.operation = 'JOB_Deploy') AND (starttime BETWEEN '12/01/2006' AND '12/01/2009')
    GROUP BY U.username
    I would like to know how to get some of the following:
    Top 10 Users (Query 3 lists the total deployments per user but i don't know how to have it display this)
    number of images created monthly (VM Templates / Workspace Configurations)
    number of images captured to the library monthly
    Biggest VMs
    Number of logins daily (to Lab Manager)
    Top 10 images checked out
    Images not used in x days
    Any help would be greatly appreciated

    Troubleshooting Queries for Lab Manager 4
    I always had the need to map the VM IDs in vSphere Client and public IPs to the actual user and organisation. Also, LUN and ESX relations I need from time to time.
    SQL file to show all deployed VMs in all configurations
    use LabManager
    go
    select
      right('000000' + convert(varchar,bvs.dir_id),6) + '-' + left(bvs.name,15) as "Name in VCeneter",
      left(bko.name,12) as "Organization",
      left(bkw.name,8) as "Workspace",
      left(us.fullname,20) as "User",
      left(cfg.name,25) as "Configuration",
      dir.chain_length as "Chain Length",
      left(ds.display_name,15) as "LUN",
      left(ms.display_name,26) as "ESX Server",
      rii.ip_addr as "Internal IP",
      rie.ip_addr as "External IP",
      left(bvs.vm_tools_version,7) as "VM Tools",
      bvs.vcpu_count "CPU Count",
      left(bvs.mem,5) as "Memeory",
      convert(varchar(19), bvs.date_created, 120) as "Created",
      convert(varchar(19), dvs.date_deployed, 120) as "Deloyed"
    from BucketVirtualServer bvs
      inner join Bucket bko on bko.bucket_id=bvs.OrganizationBucketId
      inner join Bucket bkw on bkw.bucket_id=bvs.bucket_id
      inner join ConfigurationView cfg on bvs.sg_id=cfg.sg_id
      inner join Usr us on us.user_id=bvs.user_id
      inner join FsDir dir on dir.dir_id=bvs.dir_id
      inner join Datastore ds on ds.datastore_id=dir.datastore_id
      inner join NetworkInterface ni on bvs.vs_id=ni.vs_id
      inner join ReservedIPAddress rii on rii.address_id=ni.ip_address_id
      left join ReservedIPAddress rie on rie.address_id=ni.ext_address_id
      inner join DeployedVirtualServer dvs on dvs.vs_id=bvs.vs_id
      inner join ManagedServer ms on ms.ms_id=dvs.ms_id
    where bvs.is_vrouter=0
    order by bvs.dir_id
    go
    Batch file
    osql -S localhost\LABMANAGER -E -i vmlist.sql -o vmlist.txt -w 1024 -n
    start notepad vmlist.txt
    SQL file to show all VMs in all configurations
    use LabManager
    go
    select
    right('000000' + convert(varchar,bvs.dir_id),6) + '-' + left(bvs.name,15) as "Name in VCeneter",
    left(bko.name,12) as "Organization",
    left(bkw.name,8) as "Workspace",
    left(us.fullname,20) as "User",
    left(cfg.name,25) as "Configuration",
    dir.chain_length as "Chain Length",
    left(ds.display_name,15) as "LUN",
    left(ms.display_name,26) as "ESX Server",
    rii.ip_addr as "Internal IP",
    rie.ip_addr as "External IP",
    left(bvs.vm_tools_version,7) as "VM Tools",
    bvs.vcpu_count "CPU Count",
    left(bvs.mem,5) as "Memeory",
    convert(varchar(19), bvs.date_created, 120) as "Created",
    convert(varchar(19), dvs.date_deployed, 120) as "Deloyed"
    from BucketVirtualServer bvs
      inner join Bucket bko on bko.bucket_id=bvs.OrganizationBucketId
      inner join Bucket bkw on bkw.bucket_id=bvs.bucket_id
      inner join ConfigurationView cfg on bvs.sg_id=cfg.sg_id
      inner join Usr us on us.user_id=bvs.user_id
      inner join FsDir dir on dir.dir_id=bvs.dir_id
      inner join Datastore ds on ds.datastore_id=dir.datastore_id
      inner join NetworkInterface ni on bvs.vs_id=ni.vs_id
      inner join ReservedIPAddress rii on rii.address_id=ni.ip_address_id
      left  join ReservedIPAddress rie on rie.address_id=ni.ext_address_id
      left  join DeployedVirtualServer dvs on dvs.vs_id=bvs.vs_id
      left  join ManagedServer ms on ms.ms_id=dvs.ms_id
    /* where bvs.is_vrouter=0 */
    order by bvs.dir_id
    go
    Batch file
    osql -S localhost\LABMANAGER -E -i vmlist_all.sql -o vmlist_all.txt -w 1024 -n
    start notepad vmlist_all.txt

  • Unix Application monitor tool : Help needed

    Hi All,
    I am planning to develop an Application monitor tool for internal use.
    In a Nutshell this tool will monitor set of services (user applications), which or running on HP UNIX box from a windows terminal. Just to know whether they are running OK or not (red green amber!). In other words executing small command on unix and sending the result back to client.
    I am wondering is there any open source tools for this type purpose from which I can take some help.
    Thanks in advance

    A few simple Google searches will probably pull up what you are looking for on HP Unix. For starters
    http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=GGLD,GGLD:2004-08,GGLD:en&q=open+source+monitoring+tools+HP+unix

  • I'm looking for some help connecting linksys IP Cameras to my home network to monitor my property when I'm travelling. I used to do this with linksys WAPS, but since I've discarded all my old linksys networking and standardized on airport, I can't get the

    I'm looking for some help connecting linksys IP Cameras to my home network to monitor my property when I'm travelling.  I used to do this with linksys WAPS, but since I've discarded all my old linksys networking and standardized on airport, I can't get these things working.  I know that I have to identify my camera through the DHCP table and set up port forwarding and there is the problem. 
    My network consists of 4  base stations set up in a roaming network - same network name and passwords.  I need to do it this way so I don't have to switch network when I move from one side of the house to the other, go to the cabana, or my shop in the barn.  The network works pretty well since I went to a roaming set up.  Good performance, yata, yata, yata.
    However, the roaming network requires the AEBS's to be set up in bridge mode, rather than sharing an ip address.  When the AEBS is set to  bridge mode, you don't see a DCHP table or have the ability to identify your IP Cam through the AEBS - and hence, no port forwarding. 
    I am able to identify and set up my Linksys IP Cam by locating the ip address on my FIOS router, even though, it's plugged into an AEBS.  I set it up, see the video, remove the ethernet cable from the IP Cam, restart - and I can't get to it from an AEBS.  In researching this, it appears, I should be setting up the AEBS to "share an IP Address", going to the DHCP table and identifying the camera's IP address and setting up port forwarding.  However, you don't see any of the DHCP or port forwarding options in Airport Network Utility when configuring in bridge mode. 
    I'm hoping I'm missing something here and that the solution isn't to set it up at the FIOS router level, but I'm beginning to think that's my only hope.  What concerns me there is that I should be able to see the IP cam on the network without port forwarding since I'm not coming from outside, and I can't even do this unless it's connected hard wire.
    I'd appreciate any insight into this that anyone might have.  I've hit the wall with what I know.
    Thanks.

    In a roaming network, your "main" router is the device that would require port mapping/forwarding to be configured in order to access the IP camera from the Internet. This router is also the one that would be provide the private IP address for the camera which you will want to be a static one.
    So as you described your network, the IP cameras should be getting an IP address or you assigned it a static one and this is the address that you would enter in the Private IP address (or equivalent depending on the router used) field when setting up port mapping.
    If you are not able to access this camera from the local network, then this should be troubleshot first.

  • Cannot get slide show in full screen mode to come up on secondary monitor regardless of how I set up show it always opens on primary screen.  Need some help here.

    Slide show in PowerPosint for mac 2011 on iMac will not open full screen mode on secondary monitor.  Regardless of how I set the slide show preferences it always opens on primary monior with secondardy monitor having totally balck screen.  Need some help if anyone else has run into this problem.

    You should contact Microsoft for Mac Support  and/or post in their forums.

  • Need some help from the management : A deeply dissatisfied customer

    Hi,
    I hope I am one of the very dissatisfied customers of you company. I bought a new T715 and it has already gone for a repair twice. I gave it for repair for the first time in october (ETA was 20 days and told by the service centre) and I got the phone after some 30days only after an intervention of a manager. Prior to that the customer care was saying that they do not have the parts and they have no idea about how much time the repair is gonna take. Surprisingly it took only 2day once the manager intervened.
    When I was submitting the phone on jan 14th 2011(work order number SE311MM110015), they again said that I'll get my phone back in 20 days. This time I expected that the service center guys will learn some thing from the past incidents and provide me a better service. But this time it was even worse. I did not hear from them for 35 days. So I called the customer care and had a long conversation with them on the service that is being provided but no-one including the floor supervisor(nishant) had a clue about what happening with my phone. I was startled by thier reply that they will start working on it as I have registered the complaint. Then I asked them what were they doing till now for which they had no idea. I asked for an escalation of this case to a manager which they refused. They said that I'll get an update after 48 working hours(5days).
    The episode continues. I called the help desk after 5days. Now their reply is that I will get my phone back on march 10 2011. So, it is some 57 days since the day i submitted the phone which is 3 times the ETA they promosed. Now when I ask them why is it taking so long I get the same reply as I got for the first time that they do not have parts. The I told them I cannot accept this kind of service from a company like sony erricsson for the second time. For this the floor supervisor harish said that If I want my phone back earlier they'll return the piece back to me without repairing and they are not responsible for this. This time I again asked for a managerial escalation which they again refused and asked me to call after 2 days. Can I atleast hope for a positive reply this time??
    I am perfectly okay with one device out of a lakh being defective. I understand this is the reason that you provide the customers a warranty. But I have some issues with the support which you are providing:
    1) Managerial escalations : I think I am entitled to talk to some one who can actually solve my issue when the lower level doesn't solve it in time. I do not understand why I am being denied the escalation which I did not find in any other support. They do not even provide me an email ID of a manager.
    2) Support process : What is the use of those processes in place where the people I am talking have no idea of what the next step should be. They do not have the database or knowledge of the previous cases. Even the floor supervisor have no aswers to the legitamate questions that the customer poses, they talk as if they are not responsible for these issues.
    3) Time taken: Taking some  days to provide the customer a mere update is not how a 21st century support should work.
    I hope you people agree with my ideas. And please I request all the managers who stumble upon this thread to reply and guide me about my next action.
    Thanks and Regards
    PRakash Josyula
    Work order number : SE311MM110015

    @management : Please help me... I did not get my phone back yet... this time they were saying that they will investigate into this case and this process can take 10 more days... When I asked for a manager escalation they dropped the call... And surprisingly they started dropping my calls which is not at all acceptable...
    Please managers... I need to talk to you... I need my phone back repaired....
    @others... Please lemme know a contact of a person in managerial cadre if you are ware of one...
    Plleeeeeeeeeeeeeeeeeeeeeeeeeese

  • Hi there.. neeed some help.. where can i recover my os bcoz my recovery manager is not working.

    hi there.. need some help here.. is there anyway that i can download the os of my hp pavilion dv6? bcoz my recovery manager is not working.. displaying that i updated my software or hardware that's why its not running (the recovery manager) i already download a new recovery manager but same display error.. also tried restoring my system and reinstaling all my hp driver and software..  what happen is i uninstall a program ":safesurf" then suddenly i cant access on the internet anymore.. my connection is conected to internet but the browser canot display the site that i want to check (IE, Google and Mozilla) already check all the setting of the browser but still cannot display the site. please help.. thanks.. 

    Hi,
    dv6 is a series of many models, what is yours ?  What is its OS ? To help us answer question quicker, please read this:
       http://h30434.www3.hp.com/t5/First-Time-Here-Learn-How-to/Welcome-Get-started-here/td-p/699035
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • SCOM 2007 R2 Root Management server showing Not Monitored State in Ops Mgr Console

    Hello Experts,
    In my Prod SCOM 2007 R2 environment RMS server state is "Not Monitored", But we are receiving alerts with limitation. By mistakenly I put Maintenance Mode while rebooting RMS server due to slow performance of the server.
    Can anybody help me to revert back to the RMS Health state ?

    We can identify the Performance Signature Data Collection Rules in this example by executing the following SQL Query. This query should be executed in SQL Management Studio against the Operations Manager database.
    -- Return all Performance Signature Collection Rules
    Use OperationsManager
    select 
    managementpack.mpname, 
    rules.rulename
    from performancesignature with (nolock)
    inner join rules with (nolock)
    on rules.ruleid = performancesignature.learningruleid
    inner join managementpack with(nolock)
    on rules.managementpackid = managementpack.managementpackid
    group by managementpack.mpname, rules.rulename
    order by managementpack.mpname, rules.rulename
    This query will return all Performance Signature Collection Rules and their respective Management Pack name. A column is returned for Management Pack name and Rule name.
    The following Performance Monitor Counters on a Management Server will provide information concerning Database and Data Warehouse write action insertion batch size and time. If the batch size is growing larger, for example the default batch size is 5000 items,
    this indicates either the Management Server is slow inserting the data to the Database or Data Warehouse, or is receiving a burst of Data Items from the Agents or Gateway Servers. 
    · OpsMgr DB Write Action Modules(*)\Avg. Batch Size 
    · OpsMgr DB Write Action Modules(*)\Avg. Processing Time 
    · OpsMgr DW Writer Module(*)\Avg. Batch Processing Time, ms 
    · OpsMgr DW Writer Module(*)\Avg. Batch Size 
    From the Database and Data Warehouse write action account Average Processing Time counter, we can understand how long it takes on average to write a batch of data to the Database and Data Warehouse. Depending upon the amount of time it takes to write a batch
    of data to the Database, this may present an opportunity for tuning. 
    Event ID 2115 A Bind Data Source in Management Group
    http://blogs.technet.com/b/kevinholman/archive/2008/04/21/event-id-2115-a-bind-data-source-in-management-group.aspx
    Niki Han
    TechNet Community Support

  • AVR TOOL CHAIN packages almost ready, need some help

    Hello
    I've made packages for AVR programming: the following
    binutils-2.17 -> avr-binutils
    gcc-4.1.1 -> avr-gcc
    avr-libc-1.4.4 -> avr-libc
    avrdude-5.1 -> avrdude
    uisp-20050207 -> uisp
    whith prefix (installed) at /opt/avr
    I would like some help with the following:
    [1]
    In both `avr-binutils' and `avr-gcc' exists a file with the same name, this is libiberty.a.
    if I execute
    pacman -A avr-binutils-2.17-1.pkg.tar.gz
    and
    pacman -A avr-gcc-4.1.1.pkg.tar.gz
    i get an error from pacman about the existence of the libiberty.a on the filesystem.
    If i force the installation of avr-gcc everything works ok (i mean there is no problem with the installed software, it should work that way if you install it with the ../configure && make && make install way).
    what should I do with that? I can't upload conflicting packages.
    [2]
    PATH and MANPATH must be updated to new ones after installation of packages, how can i do that?
    [3] If i leave commented the line
    # NOSTRIP="1"
    in the /etc/makepkg.conf, the gcc compiles with warnings , which actually are errors for the final installed software. Actually the avr compiler executable is `avr-gcc' and
    If I permit makepkg to strip the executables produced, there is a problem.
    If I uncomment NOSTRIP but execute later through a `install' script (the usual pre_install , post_install) the strip command everything works fine.
    The strip issue is because the binutils and gcc packages are configured  with --target=avr (output are executables for avr programming).
    Should I do something with that or leave it that way with manual stripping?
    my stripping is:
    # arg 1: the new package version
    post_install() {
    find /opt/avr -type d -name bin -exec find {} -type f ; | xargs strip > /dev/null 2>&1
    Any ideas why that is happening?
    PS. I deleted the --march=i686 from /etc/makepkg.conf , because the packages are configured with --target=avr

    [1] Delete the conflicting file from avr-gcc. The dependency relationship with avr-binutils will ensure that the file is in place.
    [2] This is done with a script in /etc/profile.d. Have a look at the mozille, gnome, kde, or other current examples to see how it works.

  • Regarding Monitoring Service for Solution manager

    We need to configure "Monitoring" services in SAP solution manager 7.0.
    Could somebody suggest us what are the main tasks we need to consider for doing Monitoring settings.
    How many Minimum servers required to configure Monitoring services in solution manager system.
    Also if any good document reference for this?
    Thanks

    Hi Jai,
    welcome to sdn.
    COMPONENTS & TOOLS OF SAP NETWEAVER
    SAP Solution Manager
    The SAP Solution Manager application management solution facilitates technical support for distributed systems u2013 with functionality that covers all key aspects of solution deployment, operation, and continuous improvement. A centralized, robust application management and administration solution, SAP Solution Manager combines tools, content, and direct access to SAP to increase the reliability of solutions and lower total cost of ownership.
    With SAP Solution Manager, you can be sure your entire SAP solution environment is performing at its maximum potential. The toolset addresses your entire IT environment, supporting SAP and non-SAP software and covering current and forthcoming SAP solutions. And, as a customer of SAP, you have full access to the core SAP Solution Manager for no extra charge.
    SAP Solution Manager targets both technical and business aspects of your solutions, focusing strongly on core business processes. It supports the connection between business processes and the underlying IT infrastructure. As a result, it eases communication between your IT department and your lines of business. And it ensures that you derive the maximum benefits from your IT investments.
    SAP Solution Manager features and functions include:
    SAP Business Suite implementation and upgrades u2013 SAP Solution Manager provides content that accelerates implementation. Configuration information and a process-driven approach to implementation speed the blueprint, configuration, and final preparation phases. SAP Solution Manager enables efficient project administration and centralized control of cross-component implementations.
    Change control management u2013 SAP Solution Manager controls all software and configuration changes of the IT solution. This includes the approval process for change requests, the deployment of changes, and later analysis of changes. This ensures quality of the solution and enables traceability of all changes.
    Testing u2013 SAP Solution Manager speeds test preparation and execution. It provides a single point of access to the complete system landscape and enables centralized storage of testing material and test results to support cross-component tests.
    IT and application support u2013 The service desk included in SAP Solution Manager helps you manage incidents more efficiently and eases the settlement of support costs. Centralized handling of support messages makes the support organization more efficient.
    Root cause analysis u2013 The diagnostics functions in SAP Solution Manager allow identification, analysis, and resolution of problems, even in heterogeneous environments. This helps to isolate general performance bottlenecks, to isolate exceptional situations, to record the activity of single users or processes, and to identify changes to the productive landscape. As a result, problem resolution is accelerated and business availability increased.
    Solution monitoring u2013 SAP Solution Manager performs centralized, real-time monitoring of systems, business processes, and interfaces, which reduces administration effort. It can even monitor intersystem dependencies. Proactive monitoring helps you avoid critical situations, while automatic notifications enable fast response to issues.
    Service-level management and reporting u2013 SAP Solution Manager allows easy definition of service levels and provides automated reporting. Service reporting covers all systems in the solution landscape and provides a consolidated report containing the information you need to make strategic IT decisions.
    Service processing u2013 SAP Solution Manager makes appropriate service recommendations and delivers SAP support services. These include SAP Safeguarding, which helps you manage technical risk; SAP Solution Management Optimization, which helps you get the most from your SAP solutions; and SAP Empowering, which helps you manage your solutions.
    Administration u2013 Administration tasks are mainly executed locally on the involved systems, but can be accessed and triggered from a central administration console. The administration work center in SAP Solution Manager offers a central entry point and unified access to all SAP technology.
    SAP Solution Manager as the name suggests is for managing the whole gamut of SAP and Non-SAP solutions in the IT Landscape of an organisation. It provides you the tool, content and gateway to create, operate, manage and monitor your solutions over time.
    It provides a range of scenarios to support this. Extending from project management to Solution Monitoring to Service Desk to E-learning Management, it provides an efficient way to carry out a plethora of business tasks.
    SAP Solution Manager is the successor to ASAP ValueSAP. SAP Solution Manager helps in implementing and managing complex system landscapes. Globally systems are getting distributed across geographies and business processes cover more than one system. In such complex scenarios, integrating technical and business requirements is important for the success of IT. SAP Solution Manager provides SAP customers with an efficient means of handling both the technical and business process side of solution implementation .
    As part of SAP Solution Management Solutions, the customers receive best practices relating to:
    - Global Strategy and Service Level Management
    - Business Process Management
    - Management of MySAP Technology
    - Software Change Management
    - Support Desk Management
    SAP delivers this using support programs during implementation of the system solution. Some of the benefits of using SAP's Solution Manager are that it helps:
    - Manages the technical risk associated with the implementation of the solution ensuring technical robustness
    - Helps leverage users core competencies in implementing solutions
    - Ensures solution works as intended with best practices built in.
    see these links...
    http://www.ne-sap-solution-manager.com/
    http://www.saptechies.com/category/sap-solution-manager/
    thanks
    karthik
    reward me if usefull

  • Pro-active Monitoring tools of EBS

    Hi hussein/helios
    We have exisinting EBS 11i
    My boss ask me to be "proactive" in managing the system. I know she finds this word in the internet. She is just a sales person and not technical :)
    She is so good in research and reading and surfing that all she finds in the internet, she pass it for me to carry out :(
    Is there "proactive" monitoring tool in EBS? Have anyone of you do some "proactive" work in your EBS system?
    She gave me list of things to do to be monitored "proactively".
    Can you please help me validate where she found this document?
    Are these activity found in OAM? or OEM?
    Administering  Linux server:
        * Software installation and patching
        * Custom disk partitioning
        * CERT advisory monitoring
        * System log rotation and maintenance
        * Space management
        * Boot script maintenance
    Monitoring Systems :
        * Server and network interface availability
        * CPU, disk, and memory utilization
        * Swap space availability
        * Standard software ports
        * System and application logs
        * Backup execution
        * Custom scripting and monitoring available
    Administering E-Business Suite:
        * Software installation including latest consolidated and critical patches
        * Ongoing patching support
        * Cloning production to managed test/dev environments
        * Concurrent manager configuration
        * Compile standard apps schema objects
        * Compile standard application objects
        * Advice on extending applications with custom code
    Monitoring  E-Business Suite:
        * Database, network, and server availability
        * Concurrent queue monitoring
        * Notification mailer availability
        * Forms and reports server availability
        *  Application server availability
        * Custom scripting and monitoring available
    ===END===Do you have some home made scripts that handles these processes?
    Thanks a lot
    MsK

    Hi MSK;
    I belive she is giving you nice path to develop yourself about Oracle.
    Can you please help me validate where she found this document?I belive she found this from:
    http://www.blackdogdzine.com/blu/managed-services.htm
    Better way ask it to her ;)
    Are these activity found in OAM? or OEM?For Someof future answer is yes, you can make googling to find to use benefit of OEM
    I strongly suggest to check below thread for your issue:
    tool for ebs
    Re: Tool for managing EBusiness environments *<< Posted by Hussein Sawwan*
    As you can see there are many tool avaliable,please follow thread observe tools and you can give her one other idea about choosing tool
    Regard
    Helios

  • SAP administrator and monitoring tools

    Hello,
    I'm student at the university of montreal and i am for the moment in internship in a media enterprise as a consultant. They Use SAP business one for the management. I've somme difficulties at the moment to manage it as i would like. Is there some monitoring tools to help me administrate the SAP system like analyse the database and edit faster and easier my acces list and avoid repetitive action ( automatization)  for exemple.
    Thank you very much for you're answers.

    Hello Alicia
    As already recommended in the other thread you opened:
    Remote Support Platform may be helpful for your needs. Following document describes some of its features:
    Remote Support Platform (RSP) and its benefits
    You may be able to find RSP installation package in the SBO instalation CD provided by the partner in following route:
    Packages\Remote Support Platform\Remote support platform for SAP Business One
    Regards

  • Regading PI monitoring setup in solution manager

    Hi Folks,
    I am new to solution manager and I need to setup PI monitoring setup in solution manager...
    I read some blogs and docs but not getting clear idea.   all the remaning setup has been done in solution manager and only need to configure the technical monitoring thing in solution manager...
    Please help me on this step by step guide...
    Thanks,
    Sreenivas

    Hi Hareesh,
    Thanks for your reply.
    In Solution manager if I opend the technical monitoring I am getting below screen..
    Can you please tell me what are the steps I need to do... For first i want to test this with one file communication channel later I will do remaining channels.
    I am new to this setup.. help me on this..
    Thanks,
    Sreenivas

  • Need some help in debugging this exported script

    Below is DDL generated by visio forward engineering tool . The example below consists of 2 test tables with one foreign key.
    Forward engineering generated DDL script
    IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Table1]') AND type in (N'U'))
    DROP TABLE [dbo].[Table1]
    GO
    CREATE TABLE [dbo].[Table1] (
    [test] CHAR(10) NOT NULL
    , [test2] CHAR(10) NULL
    GO
    ALTER TABLE [dbo].[Table1] ADD CONSTRAINT [Table1_PK] PRIMARY KEY CLUSTERED (
    [test]
    GO
    GO
    IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Table2]') AND type in (N'U'))
    DROP TABLE [dbo].[Table2]
    GO
    CREATE TABLE [dbo].[Table2] (
    [test2] CHAR(10) NOT NULL
    GO
    ALTER TABLE [dbo].[Table2] ADD CONSTRAINT [Table2_PK] PRIMARY KEY CLUSTERED (
    [test2]
    GO
    GO
    ALTER TABLE [dbo].[Table1] WITH CHECK ADD CONSTRAINT [Table2_Table1_FK1] FOREIGN KEY (
    [test2]
    REFERENCES [dbo].[Table2] (
    [test2]
    GO
    GO
    When i converted this DDL script using scratch editor the migration tool gave some errors can anyone help me to resolve below
    DECLARE
    v_temp NUMBER(1, 0) := 0;
    BEGIN
    BEGIN
    SELECT 1 INTO v_temp
    FROM DUAL
    WHERE EXISTS ( SELECT *
    FROM objects
    WHERE OBJECT_ID_ = NULL/*TODO:OBJECT_ID(N'[OPS].[Table1]')*/
    AND TYPE IN ( N'U' )
    EXCEPTION
    WHEN OTHERS THEN
    NULL;
    END;
    IF v_temp = 1 THEN
    TRUNCATE TABLE Table1;
    END IF;
    END;
    CREATE TABLE Table1
    test CHAR(10) NOT NULL,
    test2 CHAR(10)
    ALTER TABLE Table1
    ADD
    CONSTRAINT Table1_PK PRIMARY KEY( test );
    --SQLDEV:Following Line Not Recognized
    DECLARE
    v_temp NUMBER(1, 0) := 0;
    BEGIN
    BEGIN
    SELECT 1 INTO v_temp
    FROM DUAL
    WHERE EXISTS ( SELECT *
    FROM objects
    WHERE OBJECT_ID_ = NULL/*TODO:OBJECT_ID(N'[OPS].[Table2]')*/
    AND TYPE IN ( N'U' )
    EXCEPTION
    WHEN OTHERS THEN
    NULL;
    END;
    IF v_temp = 1 THEN
    TRUNCATE TABLE Table2;
    END IF;
    END;
    CREATE TABLE Table2
    test2 CHAR(10) NOT NULL
    ALTER TABLE Table2
    ADD
    CONSTRAINT Table2_PK PRIMARY KEY( test2 );
    --SQLDEV:Following Line Not Recognized
    ALTER TABLE Table1
    ADD
    CONSTRAINT Table2_Table1_FK1 FOREIGN KEY( test2 ) REFERENCES Table2 (test2)
    --SQLDEV:Following Line Not Recognized
    ;

    Pl do not post duplicates - Need some help in debugging this script

Maybe you are looking for

  • Error on Startup - Cache

    I get the following error on each startup: "Bridge encountered a problem and is unable to read the cache. Please try purging the central cache in Cache Preferences to correct the situation." I have followed the instructions and restarted several time

  • Purchase order confirmation

    Hi All, We have received PO acknowledgment from EDI & confirmation control key is setup properly to restrict Tol2Early "10 days" TolLate "10 days" However, confirmation key in PO is not restricting delivery days deviation in accordance with agreed se

  • I want to take an Input from the Page and pass to a plsql package

    Here i am extending a controller class i am get number of errors can you plz chk the syntax:----- I am taking Attribute1 ,2,3 from the page and input it into procedure and get the out variable into project number in the page:---- public class adtDeta

  • Can't Locate my downloaded Quicktime Pro

    I purchased Quicktime Pro, downloaded it, but can't find the application on my computer. I've searched in spotlight. I don't think it actually downloaded. How to I re-download without having to purchase it again?

  • Iphone4 freezes when closing multitasking apps. Unacceptable

    Has anyone noticed that when you have a number of apps running, and you continuously tap the "x" to close out of them, the iPhone freezes even though the icons keep wiggling. It takes the phone about 2 minutes to unfreeze, or I have to restart it. Th