I have freshly installed an application on solaris 5.10 . When checked through ps -ef | grep hyperic | grep agent, process are up and running . When checked the status through svcs hyperic-agent command, the output shows that the agent is in maintenance mode . Application is working fine and I dont have any issues with the application . Please help
Solaris svcs command shows wrong status
1.3k Views Asked by manu endla At
1
There are 1 best solutions below
Related Questions in SOLARIS
- How to get Mouse support for dtterm terminal in solaris
- Tail command - follow by name on Solaris
- in Makefiles, how to test for gcc's --with-ld option?
- Configuring git and apache on solaris box
- How to find linux equivalent of solaris specific header files?
- How to match and remove the content preceding it from a file in unix
- writing device drivers for OpenIndiana
- How to convert Solaris MDB addresses into file names and line numbers?
- wheel group in OpenSolaris
- I want to update atime on large binary files
- Socket Descriptor closed from another thread on certain condition when accept() call on the same socket is going on in Linux?
- gzip and pipe to output (performance consideration)
- Setting LD_LIBRARY_PATH breaks my apache module, can rpath fix it?
- redirecting echo with undefined variable
- Can't take input from a terminal
Related Questions in HYPERIC
- using Hyperic HQ 4.6 to monitor ActiveMQ 5.5
- How do you get CPU ID or serial number using Hyperic Sigar?
- Apache Response Time Monitoring in Hyperic
- hyperic jmx monitoring: plugin does not exist in HQ
- Hyperic Sigar API - not working in runnable jar file
- Problem with Hyperic monitoring on CloudFoundry - frequent alerts
- Hyperic HQ Api getting an agent
- Monitoring Servicemix with Hyperic HQ
- Hyperic JMX monitoring threads not closing
- Monitoring JBOSS ESB
- How do you configure a Puppet exec to execute another command as part of onlyif
- why hyperic can't auto-discover my Jboss AppSvr?
- How do I tell a remote debugger to actually suspend at some point?
- Start/stop application in tc server using JMX/Hyperic agent
- Sigar 1.6.4 is crashing: EXCEPTION_ACCESS_VIOLATION
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There are several reasons that lead to that behavior:
Starter (
start/execproperty of service) returned status that is different fromSMF_EXIT_OK(zero). Than you may check logs:If you check logs, you may see following messages that means, starter script failed or incorrectly written:
Another reason for such behavior is that service faults during while its working (i.e. one of processes coredumps or receives kill signal or all processes exits) as described here: https://blogs.oracle.com/lianep/entry/smf_5_fault_retry_models
The actual system that provides SMF facilities for monitoring that is System Contracts. You may determine contract ID of online service with
svcs -v(field CTID):Than watch events with
ctwatch:Than there are two options to handle that:
There is a real problem with service so it eventually faults. Than debug the application.
It is normal behavior of service, so you should edit and re-import your service manifest, to make SMF less paranoid. I.e. configure
ignore_erroranddurationproperties.