Sponsored Content
Special Forums UNIX and Linux Applications Infrastructure Monitoring Ops Center Enterprise Controller Mount Point layout Post 302749927 by DukeNuke2 on Sunday 30th of December 2012 04:47:02 AM
Old 12-30-2012
Preparing Your Environment

from this i only see this:
Quote:
The Oracle Enterprise Manager Ops Center software requires the following minimum values for disk and swap space:

2 GB free in /opt

70 GB free in /var/opt/sun/xvm

6 GB of swap space
so with a ZFS disk as your root device, what is the problem?
 

6 More Discussions You Might Find Interesting

1. Solaris

Sun xVM Ops Center 1.1

I have 180 Solaris 7, 8 and 9 servers to patch and am looking at using xVM Ops Center. Has anyone here had any experience with it? (1 Reply)
Discussion started by: mr_crosby
1 Replies

2. Solaris

Sun Ops Center

Hi, Can anyone share the link to download sun ops centre i have sun partner account, but i unable find the link Thanks RJS (3 Replies)
Discussion started by: rajasekg
3 Replies

3. Solaris

OPS Center Email Notifications

Hi, Does any one know how to configure email notifications (to exchange) in Oracle Enterprise Manager 11g OPS Center? I have gone through the documentation and have done everything it asked, but still no notifications via email. I get the following error: At the OS level i tried sending email... (20 Replies)
Discussion started by: Mack1982
20 Replies

4. Infrastructure Monitoring

Agent Installation Issue on Ops Center

Hi guys . While installing the agent on an asset Solaris system: root@system: /var/tmp/OC $ /opt/SUNWxvmoc/bin/agentadm configure -u root -p /var/tmp/OC/mypasswd -x 172.21.16.65 agentadm: Version 12.1.2.2161 launched with args: configure -u root -p /var/tmp/OC/mypasswd -x 172.21.16.65 Validating... (3 Replies)
Discussion started by: Junaid Subhani
3 Replies

5. Solaris

Ops Center AI wrong IP

Hello, I have problems with Automated Installer on Solaris 11. I tried provision Solaris 11 on my T5-1B server from Ops Center, but AI set wrong IP address for manifest SMF. My Ops Center server has two IP addresses 10.236.102.219 and 10.226.21.141. Second IP is in subnet for provisioning of... (25 Replies)
Discussion started by: olibertu
25 Replies

6. UNIX for Beginners Questions & Answers

How to create a new mount point with 600GB and add 350 GBexisting mount point? IN AIX

How to create a new mount point with 600GB and add 350 GBexisting mount point Best if there step that i can follow or execute before i mount or add diskspace IN AIX Thanks (2 Replies)
Discussion started by: Thilagarajan
2 Replies
Mojolicious::Plugin::DefaultHelpers(3pm)		User Contributed Perl Documentation		  Mojolicious::Plugin::DefaultHelpers(3pm)

NAME
Mojolicious::Plugin::DefaultHelpers - Default helpers plugin SYNOPSIS
# Mojolicious $self->plugin('DefaultHelpers'); # Mojolicious::Lite plugin 'DefaultHelpers'; DESCRIPTION
Mojolicious::Plugin::DefaultHelpers is a collection of renderer helpers for Mojolicious. This is a core plugin, that means it is always enabled and its code a good example for learning to build new plugins, you're welcome to fork it. HELPERS
Mojolicious::Plugin::DefaultHelpers implements the following helpers. "app" %= app->secret Alias for "app" in Mojolicious::Controller. "config" %= config 'something' Alias for "config" in Mojo. "content" %= content foo => begin test % end %= content 'foo' %= content Store content and retrieve it. "content_for" % content_for foo => begin test % end %= content_for 'foo' Append content to named buffer and retrieve it. % content_for message => begin Hello % end % content_for message => begin world! % end %= content_for 'message' "current_route" % if (current_route 'login') { Welcome to Mojolicious! % } %= current_route Check or get name of current route. "dumper" %= dumper {some => 'data'} Dump a Perl data structure using Data::Dumper. "extends" % extends 'blue'; % extends 'blue', title => 'Blue!'; Extend a template, all arguments get merged into the stash. "flash" %= flash 'foo' Alias for "flash" in Mojolicious::Controller. "include" %= include 'menubar' %= include 'menubar', format => 'txt' Include a partial template, all arguments get localized automatically and are only available in the partial template. "layout" % layout 'green'; % layout 'green', title => 'Green!'; Render this template with a layout, all arguments get merged into the stash. "memorize" %= memorize begin %= time % end %= memorize {expires => time + 1} => begin %= time % end %= memorize foo => begin %= time % end %= memorize foo => {expires => time + 1} => begin %= time % end Memorize block result in memory and prevent future execution. "param" %= param 'foo' Alias for "param" in Mojolicious::Controller. "session" %= session 'foo' Alias for "session" in Mojolicious::Controller. "stash" %= stash 'foo' % stash foo => 'bar'; Alias for "stash" in Mojolicious::Controller. "title" % title 'Welcome!'; % title 'Welcome!', foo => 'bar'; %= title Page title, all arguments get merged into the stash. "url_for" %= url_for 'named', controller => 'bar', action => 'baz' Alias for "url_for" in Mojolicious::Controller. "url_with" %= url_with 'named', controller => 'bar', action => 'baz' Does the same as "url_for", but inherits query parameters from the current request. %= url_with->query([page => 2]) METHODS
Mojolicious::Plugin::DefaultHelpers inherits all methods from Mojolicious::Plugin and implements the following new ones. "register" $plugin->register($app); Register helpers in Mojolicious application. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojolicious::Plugin::DefaultHelpers(3pm)
All times are GMT -4. The time now is 06:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy