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
- SolarIs 11 VM configure sftp. After restart ssh, the sshd_config file resets?
- How can i install python > 3.8 on solaris system?
- Solaris make failes with 'unknown'
- Unable to copy multiple files non-interactively with single command
- dbx can't find C source files
- Need to list data from a zip archive using unzip
- Where to properly get _LONGLONG_TYPE defined
- how to find file path where the function resides in solaris
- vncserver creating display as :<Displaynumber> instead of hostname:<Displaynumber>
- boost-iostreams 1.59 sparc-solaris crosscompilation fails
- Insert # at the start of a matching String
- How to run my python script when the sunOS is start booting
- libxercesc can not catch exception only on Solaris
- Is there a command line tool to connect Azure SQL MI on Solaris11
- RPC calls between C and Python, and vicecersa
Related Questions in HYPERIC
- How do you configure a Puppet exec to execute another command as part of onlyif
- Hyperic SIGAR report different swap usage on window 2012 r2
- Hyperic HQ add properties to hq-server.conf
- Hyperic HQ 4.6.6 server is configured to run on wrong domain name
- Hyperic Sigar API - not working in runnable jar file
- How do I automate the installation of hyperic with Puppet?
- Solaris svcs command shows wrong status
- Hyperic HQ Api getting an agent
- My perl script needs to wait until the another script finishes its job
- Sigar 1.6.4 is crashing: EXCEPTION_ACCESS_VIOLATION
- How do you get CPU ID or serial number using Hyperic Sigar?
- Hyperic HQ 5.0 Server is not running
- Hyperic 5.0 exporting custom MBeans in JBoss
- hyperic jmx monitoring: plugin does not exist in HQ
- Hyperic Sigar Mac Osx Error -No Library
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.