Availability of SMF Manifest for SRSS3.1

Does anyone know whether there is a SMF manifest for SRSS 3.1 available?

SRSS has not yet been adapted to run under SMF. It delivers no manifests.

Similar Messages

  • SMF Manifests for Apache & MySQL

    I recently started checking up on SMF since the need for service control became bigger. That and the options for added security when it comes to the privilege system. I dug up a manifest for apache somewhere but simply disliked it because it used the root account. So one thing led to another and you can understand the rest yourself.
    This works for me, adds a little extra security, and I hope it also works for some of you. I tend to dump these in /var/svc/manifest/application/local and as you can see they all reside in svc:/application/local as well. Naturally this boils down to personal taste.
    apache.xml manifest
    <?xml version="1.0"?>
    <service_bundle type='manifest' name='Apache'>
    <service name='application/local/apache' type='service' version='1'>
    <single_instance />
    <dependency
    name='filesystem_and_network'
    grouping='require_all'
    restart_on='none'
    type='service'>
    <service_fmri value='svc:/milestone/local-env' />
    </dependency>
    <dependency
    name='configuration'
    grouping='require_all'
    restart_on='none'
    type='path'>
    <service_fmri value='file://localhost/etc/apache/httpd.conf' />
    </dependency>
    <exec_method
    type='method'
    name='start'
    exec='/usr/apache/bin/apachectl start'
    timeout_seconds='60' >
    <method_context>
    <method_credential
    user='webservd'
    group='webservd'
    privileges='basic,net_privaddr,!proc_info'
    limit_privileges='basic,net_privaddr,proc_chroot,proc_setid' />
    </method_context>
    </exec_method>
    <exec_method
    type='method'
    name='stop'
    exec='/usr/apache/bin/apachectl stop'
    timeout_seconds='60' />
    <exec_method
    type='method'
    name='restart'
    exec='/usr/apache/bin/apachectl restart'
    timeout_seconds='60' />
    <instance name='default' enabled='false' />
    <stability value='Evolving' />
    </service>
    </service_bundle>
    --= EOT =--
    And now for MySQL (note; this doesn't work for 5.x, I already have a test version but it still needs some work).
    mysql.xml manifest
    <?xml version="1.0"?>
    <!--
    Copyright 2005 Sun Microsystems, Inc. All rights reserved.
    Use is subject to license terms.
    MySQL.xml : MySQL manifest, Scott Fehrman, Systems Engineer
    updated: 2005-09-16
    -->
    <service_bundle type='manifest' name='MySQL'>
    <service name='application/local/mysql' type='service' version='1'>
    <single_instance />
    <dependency
    name='filesystem'
    grouping='require_all'
    restart_on='none'
    type='service'>
    <service_fmri value='svc:/milestone/local-env' />
    </dependency>
    <dependency
    name='configuration'
    grouping='require_all'
    restart_on='none'
    type='path'>
    <service_fmri value='file://localhost/etc/my.cnf' />
    </dependency>
    <exec_method
    type='method'
    name='start'
    exec='/etc/sfw/mysql/mysql.server start'
    timeout_seconds='120' >
    <method_context>
    <method_credential
    user='mysql'
    group='mysql'
    privileges='basic,!file_link_any,!proc_info,!proc_session'
    limit_privileges='basic,proc_chroot,proc_setid' />
    </method_context>
    </exec_method>
    <exec_method
    type='method'
    name='stop'
    exec='/etc/sfw/mysql/mysql.server stop'
    timeout_seconds='120' />
    <instance name='default' enabled='false' />
    <stability value='Unstable' />
    <template>
    <common_name>
    <loctext xml:lang='C'>MySQL RDBMS 4.0.24</loctext>
    </common_name>
    <documentation>
    <manpage title='mysql' section='1' manpath='/usr/sfw/share/man' />
    </documentation>
    </template>
    </service>
    </service_bundle>
    --= EOT =--
    As you can notice both of them depend on the milestone/local-env. This is my own creation. Because I'm using /var/run/apache and /var/run/mysqld I setup a shellscript to create them and linked this to a milestone entry. You can just leave it out or create your own manifest. I wonder if this forum can hold a message this long :-)

    Well, I just realized that without the milestone manifest you're missing out on some essential dependencies (network & filesystem) so I just dump it into 2 messages 8-)
    local-env.xml milestone
    <?xml version="1.0"?>
    <!--
    The local environment milestone represents the completion of system
    configuration so the local applications (apache, mysql & squid) can
    be started. In its current form this means setting up the /var/run
    directories to put the .pid and socket files in.
    -->
    <service_bundle type='manifest' name='Local_environment'>
    <service name='milestone/local-env' type='service' version='1'>
    <create_default_instance enabled='false' />
    <single_instance />
    <dependency
    name='filesystem'
    grouping='require_all'
    restart_on='error'
    type='service'>
    <service_fmri value='svc:/system/filesystem/local' />
    </dependency>
    <dependency
    name='network'
    grouping='require_all'
    restart_on='none'
    type='service'>
    <service_fmri value='svc:/milestone/network' />
    </dependency>
    <exec_method
    type='method'
    name='start'
    exec='/usr/local/sbin/setlocenv start'
    timeout_seconds='5' />
    <exec_method
    type='method'
    name='stop'
    exec=':false'
    timeout_seconds='0' />
    <property_group name='general' type='framework'>
    <propval name='duration' type='astring' value='transient' />
    </property_group>
    <stability value='Evolving' />
    <template>
    <common_name>
    <loctext xml:lang='C'>
    Local configuration milestone
    </loctext>
    </common_name>
    </template>
    </service>
    </service_bundle>
    --= EOT =--
    Keep in mind that this may work or simply won't do what you want. For example; whenever a filesystem error occurs the milestone will restart (thus re-creating /var/run/mysql and such and setting the proper ownership) but the real services (apache,mysql) won't respond to this. This maybe unsuited behaviour for you, in that case
    just readjust the manifest to better suit your liking :)
    You'll also notice that squid is mentioned, thats another project but although things work I'm not happy with it yet. Still; doesn't matter for the manifest since it basicly calls a shellscript which does the actual creating/setting of the proper directories (and even that need depends on how you configured mysql/apache).
    Hope this works for you.

  • Re: un-import  a SMF manifest

    on solaris 10, manifest can be imported in one of two ways:
    1. svccfg import /path/to/manifest.xml
    or
    2. imported automatically during boot if /var/svc/manifest
    via svc:/system/manifest-import
    now Is there a way to un-import a smf manifest ? what is the
    prefered way to remove a manifest and associated stuff?
    Thanks in advance.
    Jason

    Great but what if I get this:
    svcadm disable tomcat
    svcadm: Pattern 'tomcat' matches multiple instances:
    svc:/application/servers/tomcat:default
    svc:/network/tomcat:default
    in order to delete it you need to disable it
    first...how do I make svc look for a diferrence ?You are providing an abbreviation ('tomcat'). Svcadm is complaining that your abbreviation is not unique. Provide the entire service name (or at least enough so that it is unique).
    Darren

  • "view content preview in thumbnails" option is not available in view settings for "finder" for one user

    "view content preview in thumbnails" option is not available in view settings for "finder" for one user

    I hope this discussion can be revived. I have the same problem. There seem to be quite a few Japanese sites that don't bother specifying their encoding. Perhaps they are older and from a time when it was not necessary to adhere to standards. Examples: http://www1.plala.or.jp/CUE/cave_yozawa.html, http://chigaku.web.fc2.com/saitama/sanchi/youzawa/youzawa.html. Happy to upload screenshots, but how?
    Is there a way to tell Safari what encoding to use if the web page fails to do that?

  • HT5071 Can I publish my work produced with iBooks Author and make it available (free of charge) for my students only?

    Can I publish my work produced with iBooks Author and make it available (free of charge) for my students only?

    Yes. Put it on your own server, and/or send it out via email.

  • Deployed application from NWDS not available in local folder for IView crea

    Hi Gurus,
    I have deployed an Web Dynpro Java application from NWDS. The application deployed fine.
    But when I tried to cretae the Web Dynpro Java application from the Portal the corresponding application is not available in local folder for IView creation.
    How do i need to proceed for Web Dynpro Java IView creation.
    Thanks & Regards,
    Kiran Kumar k

    Hi Kiran,
    Please check under sap.com/local  OR you custom package while creating Web Dynpro Java application iview.
    Then select your WD Application if you found - Applcaition >> package >> then select Application name and click on next.
    Verify your application deployed or not or in which folder at content administration >> web dynpro >> searh your WD application.
    Hope it helps
    Regards
    Arun

  • What are the available software and apps for ipod nano

    what are the available software and apps for ipod nano

    saif78 wrote:
    what are the available software and apps for ipod nano
    Sorry, but Apps are not compatible with the iPod and there is no additional software available for it.
    B-rock

  • Does anyone have an idea about wireless mirroring availability(without any hack) for iPad 1?

    Does anyone have an idea about wireless mirroring availability(without any hack) for iPad 1?

    Yes.  It's quite simple.  It can't be done.
    Sorry.

  • Availing full CENVAT Credit for Capital goods

    Hi,
    In our client, they want avail full cenvat credit for Capital goods in the present fiscal year itself. How can we do this in SAP? Plz. explain me.

    Hi Pawan,
    You cannot avail total 100% Credit on the CENVAT paid on capital purchase as per the goverment rules.
    The puirpose of maintaining the goods as capital goods are that you are only eligible for 50% credit in the current fiscal year and remaining 50% Credit in next Fiscal Year. its nothing that we configured, it is standard functionality in the country version. The Excise Transaction Type CAPE which come in to play at the time of capital procurement.
    1. If your Client Requirement is to take 100% Credit for this material, then ask them to maintain Chater ID for this Material in J1ID as RAW materail. and During Excise Auditing period your client has to give relevent explaination to Excise Authority.
    2. If your client has maintained in J1ID as capital , you can take the Remaining 50% Credit in current fiscal year also using J2I8, Before using this transaction verified from Excise Authority.
    Or else As per my knowledge you cannt take 100% excise credit for Capital goods.
    Cheers
    Manoj K Singh

  • Can i avail buying iphone 4s for $99 for use in the philippines?

    can i avail buying iphone 4s for $99 which i intend to use in the philippines?

    If your sister breaches the contract, she will be subject to termination fees that would make it more expensive than purchasing an unlocked phone at full retail price that you could actually use.

  • Are ZCI interactive forms available via Web Dynpro for ABAP?

    Note 955795 talks about ZCI forms available via Web Dynpro for Java. Is this kind of forms also available via Web Dynpro for ABAP?.
    Do ZCI interactive forms work via Web Dynpro for ABAP without the need of ACF?
    If available, which support package levels are required?
    Regards

    Hi Mahamed,
    I got your problem. You have not done anything wrong.
    It is WebAS version which is not supported for this functionality.
    But there is solution to this problem
    Please refer to the SAP Note number - 1055738.
    I think you will get the answer and the scenario described there will match your requirement.
    This is a know issues with WebDypro ABAP but this works fine for Java Web Dynpro.
    I have also tried for 2 months but finally came to know about it.
    Regards
    Satya

  • When will fre or nuud be available in apple stores for iPad air?

    Hi all
    Does anyone know when lifeproof fre or nuud will be available in apple stores for iPad air?
    Thanks

    Why not buy it direct?
    http://www.lifeproof.com/

  • I live in the country and there is no High speed available, How does Firefox for desk top work with Dial up ???

    I live in the country and there is no High speed available, How does Firefox for desk top work with Dial up ??? I have a great dell computer, Dimention 8400. Before I install firefox I want to know for no waste of time for either party..

    Unless you enabled Find My iPad on it before it was stolen then there isn't any way to locate it. If you did enable it then you could try locating it either via http://icloud.com on a computer or Find My iPhone on another device - but that will only work if it's connected to a network and the device hasn't already been wiped and/or Find My iPad disabled on it.
    If it was stolen then you should report it to the police. You should also change your iTunes account password, your email account passwords, and any passwords that you'd stored on websites/emails/notes etc.
    If it was never registered to your account then it won't appear on your support profile : https://supportprofile.apple.com/
    The only other ways to find it that I know of (apart from on the actual device) are via the packaging, the backup on a computer's iTunes : http://support.apple.com/kb/HT4061

  • [svn:fx-trunk] 13366: Ensuring that AFEFontManager, if it is available, overrides the lookup for embedded fonts for all supported font types, including TTF, when embedding legacy DefineFont3 fonts.

    Revision: 13366
    Revision: 13366
    Author:   [email protected]
    Date:     2010-01-07 22:15:50 -0800 (Thu, 07 Jan 2010)
    Log Message:
    Ensuring that AFEFontManager, if it is available, overrides the lookup for embedded fonts for all supported font types, including TTF, when embedding legacy DefineFont3 fonts. BatikFontManager will remain a backup in the event that AFEFontManager is not found though BatikFontManager;s support is limited to TTF for legacy DefineFont3 fonts.
    QE notes: Remember that bitmap comparisons could change slightly
    Doc notes: N/A
    Bugs: N/A
    Reviewer: For Gaurav
    Tests run: checkintests, QE had run local tests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml

    I got again a total system freeze today when I wanted to launch firefox using only the openbox menu, without wbar running.
    So I decided to try now the 'nouveau.noaccel=1' kernel command line parameter, and to use again wbar for my frequently used applis.
    In the Xorg log, the differences are:
    without 'nouveau.noaccel=1'
    [ 30.761] (II) UnloadModule: "nv"
    [ 30.761] (II) Unloading nv
    [ 30.761] (--) Depth 24 pixmap format is 32 bpp
    [ 30.762] (II) NOUVEAU(0): Opened GPU channel 0
    [ 30.765] (II) NOUVEAU(0): [DRI2] Setup complete
    [ 30.765] (II) NOUVEAU(0): [DRI2] DRI driver: nouveau
    [ 30.765] (II) NOUVEAU(0): [DRI2] VDPAU driver: nouveau
    [ 30.776] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 30.777] (II) EXA(0): Driver registered support for the following operations:
    [ 30.777] (II) Solid
    [ 30.777] (II) Copy
    [ 30.777] (II) Composite (RENDER acceleration)
    [ 30.777] (II) UploadToScreen
    [ 30.777] (II) DownloadFromScreen
    [ 30.777] (==) NOUVEAU(0): Backing store disabled
    [ 30.777] (==) NOUVEAU(0): Silken mouse enabled
    with 'nouveau.noaccel=1'
    [ 1191.621] (II) UnloadModule: "nv"
    [ 1191.621] (II) Unloading nv
    [ 1191.621] (--) Depth 24 pixmap format is 32 bpp
    [ 1191.621] (EE) NOUVEAU(0): Error creating GPU channel: -19
    [ 1191.621] (EE) NOUVEAU(0): Error initialising acceleration. Falling back to NoAccel
    [ 1191.621] (==) NOUVEAU(0): Backing store disabled
    [ 1191.621] (==) NOUVEAU(0): Silken mouse enabled
    [ 1191.621] (==) NOUVEAU(0): DPMS enabled
    So now 3D acceleration is disabled.
    I will see now if the system is stable enough for my daily usage and gives satisfactory performances.
    I am almost sure that the mesa nouveau dri driver is the cause of the freezes.
    Last edited by berbae (2013-03-27 10:07:42)

  • Are all features available in Power BI for office 365 available in On-Premise Excel, SQL server etc

    Are all features available in Power BI for office 365 available in On-Premise Excel, SQL server etc
    Thanks
    Nate

    No. The tools used to create Power BI reports are available in the on premises versions:
    Power Query
    Power Pivot
    Power Map
    Power View
    To take advantage of these in a PowerBI site, or to use Q&A you need a subscription to Office365 with a PowerBI license.

Maybe you are looking for

  • Alpha Numeric Values

    Hi IS it supported in GL code combinations to have a alpha numeric values in key segment values .. we have a project segment in our chart of accounts and need the aplpha numeric values eg PRT001 , ADT001 etc . We do have some customizations and wonde

  • Change in which values are allowed for Product Ads conditions?

    Hi, According to https://msdn.microsoft.com/en-US/library/bing-ads-product-ads-guide.aspx#conditions, the following Product Ads condition values are allowed: New Used Refurbished Remanufactured Collectable Open Box But, around 3/14, all by the top th

  • Left fan in my MBP makes some weired noise when shutting down

    Hi, my model is 2.4 Late 2008, few days ago the left side of my mbp dropped on the table because I forgot to take out the headphone when I stood up.. Now every times I turn off the computer, the left fan makes noises that sound like the fan is touchi

  • WRT610N V2 HELP!!! Wireless resets every time I attempt to download any file.

    So I recently upgraded my wireless router w/ the WRT610N V2. Easy setup and everything was working great, atleast w/ my wired connection. I go to set the wireless and everything was running great i was getting great connectivity and then I went to do

  • Power surge to a USB port

    I plugged my brand new iPhone 5 USB cable into my laptop and it displayed a message about a power surge to that port. i dismissed the message and removed the cable. Now none of my USB ports are working.