Change configuration template.

Hello Friends,
i have identified some security flaws in my lAN and i know that anyone can exploit the network using these flaws. for instance SNMP V2 is running in the network which can be easily cracked using wireshark there are so many other issues as well.
now i am looking for a document/template which guide me to present these issues and mitigation techniques in fornt of the higher management for approval ideally document/template should be updated periodically updated for the the rest to the issue as well.
Thanks in advance

953744 wrote:
Can anyone please tell me which template file I need to modify to make this change permanent. - Login as applmgr user
- Source the application env file
- Issue "vi $CONTEXT_FILE"
- Search for "changeOnJavaMailerInstall"
- Edit the value and save the file
- Run AutoConfig and make sure it completes successfully
- Bounce the services
Thanks,
Hussein

Similar Messages

  • Configuration Template Builder WL8.1 does not work

    Hello,
         After spending nearly 2 days now trying to get a Configuration Template
    built, I've concluded this simply does not work. Has anyone used the
    Config Template builder to package a semi-complex application on top of WLI?
         I'm trying to have 2 of my applications, the JMS and JDBC resources,
    and a WLI event generator packaged up for easy deployment to someone
    else's server configuration. The problem with this is that there are
    required resources for WLI, namely a database. The Pointbase database
    included for WLI does not get included in the template automatically.
    There are also some flat-out bugs:
    If you choose to include a resource adapter "application", such as
    jms-xa-adp.rar, the template builder does not bundle this in the
    template and deploy it correctly. The template builder restricts you to
    putting applications in the relative path starting at ./
    For jms-xa-adp.rar, its original location is in $WL_HOME/server/lib, and
    the template builder defaults to put it in ./lib of your template.
    However, when you create a domain with the template, jms-xa-adp.rar does
    not get placed in your ./lib directory. This causes you to then go and
    manually edit your config.xml to point back at $WL_HOME/server/lib or to
    manually copy jms-xa-adp.rar into your ./lib directory (which the
    template mechanism should do for you).
    Relative paths in the config.xml file require you to execute the config
    builder from the directory of the domain you are making a template for.
    The template builder should instead be smart enough to realize that
    relative paths in the config.xml file are relative to the directory that
    the config.xml is in, not the one you are running the template builder
    from. You'll get an error when trying to create the template cause it
    won't find the resources if you're not in that directory.
    If anyone has successfully used this to package a WLI application in a
    template, please share your experiences and how to do so. In the
    meantime, I'm claiming there is no way to nicely package up a server
    configuration for a WLI app in Weblogic, and this is a big shortcoming.
    Weblogic needs a simple transferrable way of creating server
    configurations (it tries to do this with the template, but that is
    failing). With JBoss, for example, you simply copy your server directory
    into another installation. This doesn't work with Weblogic unfortunately
    because it puts hard-coded paths in the config.xml file.
    Thanks

    Russ,
         Thank you for the detailed responses. The only one I'm currently
    struggling with still is the #5, with the scripts between the two. One
    of the major benefits of using a J2EE App Server is supposed to be the
    portability between servers. I find it disconcerting that BEA Weblogic
    restricts me to the platform I created the domain on by creating
    platform-specific startup/shutdown scripts for only the platform created
    on. It's understandable that a script converter would be difficult, but
    at least both the .sh/.cmd files should be created from the first time
    you make a domain. If the user only wants one or the other, they can
    delete the appropriate one. It's also understandable that the
    users/deployers shouldn't have to manually convert a startup/shutdown
    script to take the domain to a different box.
         JBoss clearly has BEA beat on ease of deployment here. Their model is
    the concept I'm thinking of: you have some generic startup/shutdown
    scripts that can load a platform-independent server configuration. You
    truly can copy directories as-is between JBoss installations.
         I was hoping to package up a server domain for use on any of the
    supported platforms, but since I don't have the time to manually convert
    the startup/shutdown scripts, I'm going to have to tell people it's only
    for Solaris now.
         Hopefully BEA can fix this in a future SP. There's no need for this
    platform-dependency. Also, if the Windows version can generate both
    scripts at creation time, then the Solaris should be able to do this as
    well (or at least give you the option).
    Thanks again for the replies
    russ wrote:
    Hi Steven,
    I have several comments and questions about your last two posts. I will try to
    address them in order.
    1) "The Pointbase database included for WLI does not get included in the template
    automatically."
         By default the template builder only includes the *.cmd and *.sh files in the
    template from your domain directory. If you begin building with an existing
    domain template all files that were in the template will get included. This was
    done because there is no way for the builder to automatically determine all the
    files that are required by your template/domain and we steered away from recursively
    including all files from the directory so that unused files were not needlessly
    included. We can extrapolate some files based on the application paths in the
    config.xml, but the rest is left up to the template builder to be aware of what
    is needed for their domain to run. So, if you need the Pointbase *.dbn and *.wal
    files included in your template just select these files on the ?Add Files? panel
    of the template builder and add them to the ?Domain Directory?.
    2) ?If you choose to include a resource adapter "application", such as jms-xa-adp.rar,
    the template builder does not bundle this in the template and deploy it correctly.?
         The template builder considers application files to be in two categories: Imported
    or Internal. When you are at the ?Add Applications? panel of the builder you
    will see a checklist of all the applications that are in the domain you selected.
    On the right hand side there are two text fields. The top one displays the application
    path as it is currently set in the config.xml of that domain. The bottom field
    will be different depending on what category the application falls into. As you
    click on each application in the list, you may notice that the bottom field may
    change from an editable field titled ?Imported Application Path? to a non-editable
    field titled ?Internal Application Path?. The difference between the two categories
    is that an ?Imported? application?s files will be included in the template jar.
    An ?Internal? application?s files will not be included in the template jar because
    they are considered internal to the weblogic installation. The jms-xa-adp.rar
    should fall into the internal category and should not get included in your template.
         From what you are describing it sounds like the builder attempted to import that
    application when it should not have. In an attempt to recreate the problem you
    are seeing I deployed that Connector Module through the WLS console and ended
    up with an application path of ?C:\bea\weblogic81\server\lib? where ?C:\bea\weblogic81?
    is my WL_HOME (a.k.a. USER_INSTALL_DIR). If I then attempt to build a template
    from this domain, the builder recognizes this as an internal path and does not
    include it inside my template. If the current application path you had looks
    different from the one above, that may explain why the builder was attempting
    to import it. What was the value of the ?Current Application Path? for that application
    deployment?
    3) ?Relative paths in the config.xml file require you to execute the config builder
    from the directory of the domain you are making a template for.?
         The builder is ?smart? enough to determine relative paths. You should not have
    to invoke it from the domain directory you are working with. There is a known
    bug in the WebLogic Platform 8.1.1.0 release of the template builder that will
    cause it to not find files with relative paths in your domain directory if the
    application path in the config.xml is just a ?.?. If this is the case, you should
    see a FileNotFoundException when you attempt to create the template. This will
    be fixed in SP2 and you can work around this problem by changing those paths to
    ?./? instead. If this was not the case, what was the path the wizard choked
    on?
    4) ?Looking through the config file, it seems that it's all of the WLI components
    that have absolute paths in the config file. In addition, BEA_WLS_DBMS_ADK has
    an absolute path, not sure if that is WLI or WLS. ?
         BEA_WLS_DBMS_ADK is an integration application. If you created the original
    domain using the configuration wizard most of the applications in an integration
    enabled domain will reference paths inside of you installation directory or ?internal?
    paths. For instance, I used the wizard to create a ?Basic WebLogic Integration
    Domain?. The path for that application in this domain is: ?C:\bea\weblogic81/integration/adapters/dbms/lib/BEA_WLS_DBMS_ADK.ear?
    where ?C:\bea\weblogic81? is my WL_HOME or USER_INSTALL_DIR. When I load this
    domain into the builder it shows this application as ?internal? and the ?Internal
    Application Path? is "$USER_INSTALL_DIR$/integration/adapters/dbms/lib/BEA_WLS_DBMS_ADK.ear".
    This will be set as the path value of this application in the config.xml that
    will be included in the template you build. When you later use the Configuration
    Wizard on this template it will substitute the $USER_INSTALL_DIR$ to the value
    of the installation directory of the machine you are creating it on.
         If you were to Change these to relative paths, as Mark previously suggested,
    it will only work if you copy the domain directory to the same location relative
    to your installation directory on the target machine. Also, if you copy the domain
    in this manner you will more than likely run into problems with your start/stop
    scripts and be forced to hand modify all the paths contained within. The configuration
    wizard tries to alleviate these problems and make the configuration entirely portable.
    This gives the user who creates the domain from your template the ability to
    put it anywhere they want regardless of the paths in the config.xml.
    5) ?However, there is another major problem with the Template Builder: it only
    includes the startup/shutdown script for the platform you create the template
    on. ???I built the template on Solaris with the UNIX scripts. However, I tried
    to create a new config on Windows with this template, and the scripts were not
    converted to .bat files!?
         As I stated previously, the builder will only include *.cmd and *.sh scripts
    into your template by default. If you created the domain on a unix platform using
    the configuration wizard it will not extract the *.cmd files since these aren?t
    considered to be useful on unix. If you were then to attempt building a template
    from this domain and take it onto a windows platform, it will obviously be missing
    any windows scripts. Conversely, the wizard will extract *.sh scripts on windows
    because they can still be useful if a user has an MKS or Cygwin type environment
    installed. The config wizard and template builder do not have the ability to convert
    scripts. The builder will only include existing scripts that are in your domain
    directory and automatically determine any necessary string substitutions that
    will be needed. Please note that since WebLogic is only supported on the NT/2K/XP
    versions of windows you will find that the wizards use ?.cmd? files and not ?.bat?
    files since these are more commonly associated with Win 95/98/ME.
         I will be happy to answer any more questions you may have and would also like
    to take a look at your domain configuration to try and get a better understanding
    of the problems you are encountering.
    thanx,
    russ

  • Copy AP Configuration Templates-WCS 7.0.172.0

    I am wondering if anyone has seen a way to copy an AP configuration template. We have several distribution centers and the templates are essentially identical other than the Template name and the AP Group VLAN (different for each DC). We set up a new template for each new DC. Being able to copy a template, rename it and change the Group VLAN setting would save a lot of time.

    I haven't been able to make it work like it was in prior versions.  I have found you can initiate the session from monitor-->access points--->ap name and selecting the radio type.  802.11b/g/n, or 802.11a/n.  The icon is under cleanair management operation.

  • Cisco MX200 - Cisco TMS Configuration Template

                       Good Afternoon all,
    I have a MX200 to configure and trial along with an EX60.
    We use MXP75,95's and E20's currently, which have Configuration Templates with various settings in.
    I have uploaded the XML file to the system, under Systems -> Provisioning and it is detected with the hardware and software versions.
    When I go under Systems -> Configuration Templates -> I cannot select the MX300 or EX60.
    I am wondering how to configure these new devices for use?
    Regards,
    Matt

    no, there is not a single template you can use at that level to configure both the WLAN and the User Idle timer.
    One is a WLAN setting, the other is a Controller General Setting.
    Now that being said, you could use a CLI template to push both changes, so long as you remember to disable and then reenable the WLAN before/after the Session timeout commands.
    HTH,
    Steve

  • Changes to Template Won't Update Corresponding HTML Files

    I'm using Dreamweaver CS5 and when I make changes to a template and save, it not longer updates all pages associated with that template. The first time this happened, I deleted the file cache and that took care of the problem. When I tried that again, it didn't work. I also tried deleting the Configuration folder.  I'm really hoping to find a fix for this because I have over 3,000 pages that need to be updated. Please help!
    Here's the message I should be getting:
    "Update Template Files: Update all files based on this template?"
    Here's the message that I am getting:
    "You have changed a template. Do you want to update all documents in your local site that use this template?"

    I am not making changes in the editable region that I expect to be made across the pages - I am making changes to where the editable regions lie within the template. In 99.9% of the cases, the changes were made to the non-editable regions.
    Unfortunately, I don't get to control how many pages are managed under one template. I am managing a departent's worth of pages for a university - this includes templates individual to each department division. Some division's have an outrageous number of pages associated with them - mostly for legal purposes. But none of that matters. What matters is that the pages are not updating as they should be. Do you have anything to add about that?

  • Where to download PeopleSoft Change Assistant Template for Upgrade ?

    Folks,
    Hello. I am upgrading PeopleTools 8.49 to 8.50.
    After configure Change Assistant 8.50, we need to download a specific Change Assistant template for upgrade process. I cannot find where to download it.
    Can any folks provide a link to download PeopleSoft Change Assistant template for upgrade PeopleTools 8.49 to 8.50 ?
    Thanks.

    Hi,
    You have to be a customer with a current maintenance agreement to have valid access to My Oracle Support (http://support.oracle.com) and the upgrade documentation and templates.
    Current customers who share documents and information from My Oracle Support with non maintenance customers, and others, may be in breach of their license agreement with Oracle.
    For reference:
    "... This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast,modify, license, transmit, distribute, exhibit, perform, publish or display any part, in any form, or by anymeans. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited"
    regards
    Greg

  • WLAN Configuration Template of Cisco Prime 2.1

    Hi ,
    We have added WLC 5508 in cisco prime 2.1.0.87 wherin if we try to configure WLC Configuration template then its not reflecting existing WLAN as we need to do changes in existing WLAN with configuration template. Same way we are unable to find all listed MAC-Filter list in WLAN Confiuration template to execute the template .
    Can Any one help me on the same?
    Thanks in advance.

    Services running fine..
    check it with other Browser , Supported browser are below::
    –    Google Chrome 31 or later.
    –    Microsoft Internet Explorer 8.0 or 9.0 with Google Chrome Frame plugin (users logging in to the simplified Lobby Ambassador interface do not need the plugin).
    –    Mozilla Firefox ESR 24.
    –    Mozilla Firefox 24, 25 or 26.
    If above does not help , reboot the server once and check the issue again.
    Thanks-
    Afroz
    ***Ratings Encourages Contributors ****

  • Change Order Template

    I can not find a Change Order Template for SAP Partners to use.  All in the Business Center are locked for SAP Only.  I need one for a Scope Change for a current client.

    Hi Tim,
    I'm sorry, but I don't understand: You want to change the scope of a system of a customer? You mean in Business Configuration? If yes, why don't you just create a change project in Business Configuration?
    I think I just don't know what a change order template is used for. And especially how this relates to the Business ByDesign studio/SDK.
    Best regards, Christian

  • I'm using Word for Mac. Though there are various instructions on the Internet for modifying the templates, none make sense to me. They instruct to do something I can't follow. I change a template but can't save it to the template folder.

    What the ****.
    OK, I try to change a template using Word for Mac version 14.3.4 2011 edition.
    I make a change to the template but am unable to save the darned thing to the template folder; it asks for a file name like it's a new document. I want to change the blasted template but if I can't save it as a modified template, I've accomplished nothing.
    Does anyone have a solution?
    Thanks

    Support for Microsoft Office for Mac

  • How to change page template for a single page?

    I create a new document based on the Pages "Reports > Business Report".
    Now the first page is formatted as a "Cover" page with a larger top margin.
    Via "Format > Advanced > Manage Pages..." I see there are what I assume are the "Page Templates":
    - Cover
    - Table of Contents
    - Chapter Page
    - Text Page
    - Appendix
    My question: How can I change the template for a single page in my document? E.g. I don't want Page #1 to be formatted as "Cover". I'd like it to be a "Text Page".
    Any hints?

    Just delete the Cover section and insert a Text Page.
    Click on:
    +Toolbar > View > Page Thumbnails+
    Click on the Cover thumbnail, it will be outlined in yellow, hit delete.
    It may start off with certain defaults but you do not have to accept them.
    Peter

  • Error while create/change configuration an application

    Hi,
    while doing the configuration application.
    when i am trying to create/change configuration an application.
    i am getting following error.
    Error:
    Service cannot be reached
    What has happened?
    URL http://os1gvzg.gemsconsult.com:8000/sap/bc/webdynpro/sap/configure_application call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system RT1 with error code 403 and for the reason Forbidden.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:os1gvzg_RT1_00-v:0-s:403-r:Forbidden
    HTTP 403 - Forbidden
    Your SAP Internet Communication Framework Team
    can anybody help me out.
    thanks in advance,
    Kiran.

    Hi,
    please check [documentation|http://help.sap.com/saphelp_nw2004s/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm]
    grtz,
    Koen

  • How do I change the template size in pages on my iPad

    How do I change the template size in pages on my iPad I've looked every where for the answer.
    Please help I'm trying to make a program 

    You can't. Those are functions of the the template.

  • Request offering- how can I change the template

    I am trying to edit a request offering. I created a new template with different activates and wanted to apply that template to existing request offering. However, I can edit every field except
    change the template which is grey out. It is a same behavior for all my service offering. I tried to delete a template and got the error down below. I do not remember I did anything unusual(if I know what I am doing with this product). When I was creating
    a template I chose the option to create a new MP , use that template for a new service offering and do not remember I got any error when I published it.
    Date: 1/9/2015 9:36:31 AM
    Application: System Center Service Manager
    Application Version: 7.5.3079.0
    Severity: Error
    Message: An error was encountered while running the task.
    : Verification failed with 1 errors:
    Error 1:
    Found error in 1|ManagementPack.8f46a160e65e426da14225436cc997a7|1.0.0.0|Offering15d296fa79334c05be8901e0df5e9447|3|RequestOffering with message:
    Cannot locate 1|ManagementPack.8f46a160e65e426da14225436cc997a7|1.0.0.0|Template.a7c8c69da1ba4d4eb9ea93fed29e12f2||.
    : Cannot find ManagementPackElement [Type=ManagementPackObjectTemplate, ID=Template.a7c8c69da1ba4d4eb9ea93fed29e12f2] in management pack ManagementPack:[Name=ManagementPack.8f46a160e65e426da14225436cc997a7, KeyToken=, Version=7.5.3079.0].
    : Cannot locate 1|ManagementPack.8f46a160e65e426da14225436cc997a7|1.0.0.0|Template.a7c8c69da1ba4d4eb9ea93fed29e12f2||.
    : Cannot find ManagementPackElement [Type=ManagementPackObjectTemplate, ID=Template.a7c8c69da1ba4d4eb9ea93fed29e12f2] in management pack ManagementPack:[Name=ManagementPack.8f46a160e65e426da14225436cc997a7, KeyToken=, Version=7.5.3079.0].

    You cant delete the template because it is linked/related to at least one request offering. Service offerings aren't linked with a template.
    It's not possible to change the template of an existing request offering. You have two options:
    Create a new template and a new request offering
    Copy the existing request offering. The wizard will offer to create a new copy of the existing template.
    Hope this helps.
    Andreas Baumgarten | H&D International Group

  • Ask your question.How do I change the template for a pages document

    How do I change the template for a pages document?

    Once you've opened it, the opened document is no longer a template. Edit it as you would any other Pages document.
    If you want to use the edited document as a Template, then , after editing, go File > Save as Template, give the new template a name, and click Save.
    The old template will remain available in the location where you found it; the new one will be in the My Templartes sectionof the Templates Chooser.
    Regards,
    Barry

  • In need of help making/changing a Template

    Hi all
    This is my first time here and i'm in need of some help with templates.  i have templates to be able to put pictures on different items like iphones and mouse mats but i want to be able to change the templates back ground colour from gray to white so if the picture is too small the printer wont keep printing gray, now its either this or make some new ones.  i'm using pse 11 but have no idea how to change them.  Here is a pic of what i mean, no matter what i try i cant change it nor make a new one.  Thanks in advance

    Guess this template will not let you modify it at this stage.
    Looking at your screen shot more carefully, I note that there is a little fx on the layer in the layers palette, indicating that an effect as been applied.
    Let's try something else as an experiment. Go through the drill of completing the design, but leave a some gray showing.
    Once you have completed this, flatten the layers. Then try to select the gray area with the magic wand tool.

Maybe you are looking for

  • How do I save as with Numbers 2.1 Lion version

    ok so I've been a user for about 6 months. Moved to Lion OS X and now the "Save as" option is missing. So if I have a spreadsheet that I want to keep but modify and call something else aka using the "save as" how do I now do this?

  • Not Required Main Work Centre on Order Header Maintenance Order

    Hi Experts, I want to know about main work center on order header maintenance order. Standart SAP is main work center required, and i want to set main work center on order header is not required. How Can i set Main Work center on order header is not

  • How to load info type 7410 career types to Jobs or Positions

    Hello Expert, I'm trying to use T-code PP01 to load career types and career levels (info  type 7410 )  by LSMW, But I'm not able to maintain info type 7410 by pp01, I had change the  table T77CD to accept maintain infotype from standard transaction,

  • Question:  Opening images in PS6

    I cannot see my image after opening in PS6.  The tab shows the file name and I can see the image in the tile when I go to "File-Open".  Any ideas? Thanks for any input.

  • SAP vs NAT enabled customer networks

    Hi, We're currently planning to have NAT enabled customer networks connect to our centrally hosted SAP systems(private IP range). Anyone in the forum that has any negative experiences with this kind of setup? Have done some searchs on service.sap.com