How to reset frontendHTTPPort value via wlst?

I have set the FrontendHTTPPort value as 80 (even though I didn't have any LBR setup)... now whenever I tried to access the /console via the regular port 7001 (host:7001/cosnole), it takes me to the host:80/console and fails. Since I can't login to the console, I would like to remove the value for both the host and port for the frontend settings through command line or wlst etc.. pl. let me know a way to modify these values. Where is this value stored in the file system?

Hi,
It quite simple!!!!
take current config.xml file as backup and remove front end host , port from there and clear cache and tmp on every server and then restart your admin server it will work fine for you.
Regards,
Kal

Similar Messages

  • How to set variables values via VBA.

    Anybody please help.
    How to set variables values via VBA in workbook. SAP Netweaver 2004s.

    Pass variable values with VBA and BI 7.0 funtions to Query
    At first a remark u2013 Iu2019ve read a lot of threads saying that passing values to a query can be done by using VBA code only. Iu2019ve tested it but Iu2019m not sufficient with the new BEX 7.0 API and therefore I use a mixture of BEX 7.0 funtionality and VBA. I create a BEX 7.0 design item button passing the values to a query u2013 I hide this button somewhere on the sheet or on a hidden sheet and I then raise the event to click the button from VBA code. Works fine and the maintenance is easier if something changes in the API in the future again.
    How to start:
    Switch to design mode in BEX Analyzer:
    Implement a BEX 7.0 design item u201Cbuttonu201D
    Click on the button to implement the properties
    Make the input for the commands
    data_provider = dataprovider_1
    cmd = process_variables
    subcmd = var_submit
    No comes the part with the variables u2013 Letu2019s assume a query has 4 variables but you only want to change 1 with the button u2013 an organizational unit for instance.
    Make a range somewhere in the excel with the following structure:
    Name    Index   Value
    VAR_NAME_1      1       Variablename
    VAR_VALUE_EXT_1 1       variablevalue
    Value should contain the name of your variable of course and u201Cvalueu201D the value of your variable
    Set a name for this range with EXCEL functionality but without the header:
    Back to the properties of the button: Insert the name of the range with the variables in the field Command Range:
    If you have more variables to process you can of course enhance your Filterrange!
    In the left upper Corner you have a name for your button:
    Now you can raise the button-click in vba like this:
    Application.Run "'" & ThisWorkbook.Name & "'!Sheet2.BUTTON_35_Click"
    regards, Lars

  • Report With Multiple Radio Button ,How to reset the values of when selected

    Reaching out to the experts here. I have a report which i created a radio group which saves the value rownum when the radio buton is selected to a hidden item based on an on click event. There are currently 3 radio button , i need to be able to "reset" the value of the other items when more than of the button are selected .I.E. There are 3 buttons, user clicks button one , but then decides they need to click button two , then realizes they really wanted to perform button 3 , I want to be able to "reset" the value of the 1st two hidden items so the only value populated is the 3rd hidden item. I am new to working with these features and scenarios so any and help would be appreciated.
    Here is the report
    SELECT APEX_ITEM.RADIOGROUP(1, ROWNUM, NULL,NULL,'onclick="javascript:$x(''P5_HIDDEN1'').value=' || ROWNUM|| '"') UPDATE_RECORD
    ,APEX_ITEM.RADIOGROUP(1, ROWNUM, NULL,NULL,'onclick="javascript:$x(''P5_HIDDEN2'').value=' || ROWNUM|| '"') DELETE_RECORD
    ,APEX_ITEM.RADIOGROUP(1, ROWNUM, NULL,NULL,'onclick="javascript:$x(''P5_HIDDEN3'').value=' || ROWNUM|| '"') SET_PRIMARY
    ,papf.first_name
    ,papf.last_name
    ,hl.meaning
    ,pp.phone_number
    ,case when phone_type is not null then (select meaning from hr_lookups where lookup_type ='PHONE_TYPE' and pp.phone_type=lookup_code)
    end as phone_type
    ,emrg.primary_contact_flag
    from hr.per_all_people_f papf
    ,apps.hr_lookups hl
    ,apps.per_contact_relationships pcr
    ,apps.per_phones pp
    ,(select contact_person_id,primary_contact_flag
    from apps.per_contact_relationships pcr
    where pcr.person_id = :P5_PERSON_ID
    and contact_type = 'EMRG') emrg
    where pcr.contact_person_id in emrg.contact_person_id
    and pcr.personal_flag='Y'
    and contact_type <> 'EMRG'
    and trunc(sysdate) between date_start and NVL(date_end,'31-DEC-4712')
    and pcr.contact_type = hl.lookup_code
    and hl.lookup_type='CONTACT'
    and pcr.contact_person_id = papf.person_id
    and trunc(sysdate) between papf.effective_start_date and papf.effective_end_date
    and pcr.contact_person_id = pp.parent_id
    and pp.phone_type in (select lookup_code from hr_lookups where lookup_type ='PHONE_TYPE')

    Related thread here How to Pass values from SQL Report into TEXT ITEM ?
    Regards,

  • How to reset Dot11Radio interface via SNMP

    Hi guys,
    Please tell me how i RESET my AP's radio interface via SNMP? It's mean down and up right behind sb.
    I'm using several SNMP commands for manage to our Cisco's. But I'm unsuccessful at this.. Please help me. Thakns.

    Isn't there any response? isn't there any Cisco Specialist at there???

  • How to reset the value in valueChangeListener

    I would like to reset the value in a component to its earlier value in the valueChangeListener.
    Here is an example method in the bean:
    public void valueChangeListener(ValueChangeEvent valueChangeEvent) {
    Date oldDate = (Date)valueChangeEvent.getOldValue();
    Date newDate = (Date)valueChangeEvent.getNewValue();
    if(newDate > sysdate) {
    //valueChangeEvent.getComponent().WHATEVER.setValue(oldDate)
    } else {
    valueChangeEvent.getComponent().processUpdates(FacesContext.getCurrentInstance());
    Please suggest the code that I need to put in comments.
    Note: One way to achieve this is to bind the component to the bean and do a setValue. I do not want to do this(I have master-detail tables with many rows to edit. So, this resetting should be done at row level by fetching the current row on the selected table and set).

    public void firstNameChanged(ValueChangeEvent event)
    System.out.println("FirstName changed");
    System.out.println("old value = " + event.getOldValue());
    System.out.println("new value = " + event.getNewValue());
    String oldValue = (String) event.getOldValue();
    String newValue = (String) event.getNewValue();
    RichInputText firstname = (RichInputText) event.getComponent();
    RichInputText lastname = (RichInputText) JSFUtils.findComponentInRoot("EmployeesLastName");
    firstname.setSubmittedValue(oldValue);
    firstname.setValue(oldValue);
    lastname.setSubmittedValue("lastname");
    lastname.setValue("lastname");
    AdfFacesContext.getCurrentInstance().addPartialTarget(firstname);
    AdfFacesContext.getCurrentInstance().addPartialTarget(lastname);
    }

  • How to Reset Factor value at time of Reset the system.

    Hello,
    I am facing one problem regarding to Reset the factor value in attached vi.
    In that I have used 4 button Start, OK, save, stop.
    In that initially vi ask to set the factor value , then press start and reading will vary and then press OK then reading is add to the array table.
    For second reading again press start and measure the reading then OK to add to array.
    After some reading when I press save button its save all reading to txt file and reset the all the vi but its not able to reset the Factor value.
    How can I reset the factor value also after pressing save button.
    I know here its out side of whileloop so its not possible to reset in this case I tried to set it into the while loop but I didn't get success.
    Please guide me.
    Thank you very much.
    Solved!
    Go to Solution.
    Attachments:
    voltage force capacitance .vi ‏43 KB

    This is not a TestStand question! Please post it in the LabVIEW board.
    Beginner? Try LabVIEW Basics
    Sharing bits of code? Try Snippets or LAVA Code Capture Tool
    Have you tried Quick Drop?, Visit QD Community.

  • How to reset the value of a static attribute in a class (in SAP CRM)

    Following the documentation in  "C04_BB_ConfigGuide_EN_DE.doc".
    I created a logical link for a remote ERP transaction from CRM7.0  
    The link to this file is http://help.sap.com/bp_crmv12007/CRM_DE/HTML/index.htm then Technical Information --> Building Block Library.
    I made a mistake in the defining MappedLogSys name for the remote ERP system in Tcode CRMS_IC_CROSS_SYS.
    Later I deleted the wrong entry using tcode CRMS_IC_CROSS_SYS and created the correct entry for the remote ERP system.
    But whenever I try to create a new Link for ERP transaction in the CRM system using the wizard, (tcode CRMC_UI_ACTIONWZ), the wizard pickes up the deleted logsys name.
    Using  tcode SE24  & the Test icon (F8) I ran a test for the class CL_ERP_TX_MMBE and the value of the attribute "GV_MAPPEDLOGSYS" is set to the old deleted value.
    How Can I fix this issue and make the class pickup the correct MappedLogSys value.

    I basically deleted the transaction launcher link and recreated a new one.

  • How to reset the value of drill down - Chart

    Hi gurus. I have a problem related with drilldown.
    is there any way I can reset the drill down value?,of course, except for using reset button
    (in  this case "reset" means "make the cell blank of certain value")
    I tried using "push button" and the cell is reset.
    However, even though the cell is reset, the cell is set to the drill down value in one second.
    ex. Drill down destination : a --> "" --> a
    (a is drill down value)
    Is there a way to reset the drilldown value?
    Thanks in advance.

    Thanks for your help , Sonja
    I used push button but it can not refresh(reset) drill down cell
    because the destination cell of the chart remains drill down value
    I tried like below way
    a : drill down value
    Goal : make drill down cell turn to blank after i used drill down once.
    1ST.
    when i click the chart and use drii down, a is entered into drill down cell
    2ND
    by using "push button", i tried to reset drill down cell
    but unfortunately it does not work.
    Although drill down cell changes instantly to blank after just one second, it changes to a, drill down value
    drill down cell changes like this
    1 ->   2   ->  3
    a -> blank ->  a
    i have to eliminate (2->3) phase or find another way to refresh drill down cell.
    Regards
    Kwon

  • How to reset characteristic value in configuration

    Hello Friends,
    I would kindly ask for your help about resetting a characteristic value in configuration.
    In detail, the characteristic only accepts values 'Y' or 'N'.
    When I start the configuration, the characteristic is blank.
    A configuration function then runs and set its value to either 'Y' or 'N', based on certain conditions. That's fine.
    What  I need is that, for some cases, the characteristic value should return to blank, again by means of a conf. function.
    I tried already with FM CUOV_SET_FUNCTION_ARGUMENT, but it is not working, that is: the value set previously is remaining there. I also made a trial with FM CUPR_DEL_VAL, with same result.
    Any help or suggestion is highly appreciated.
    Thank you so much.
    Bye,
    Flavio

    Thank you Maen for your answer.
    Yes, I am sure there isn't any other dependency for the value.
    About the other remark, yes this might be the reason but, as the user is able to delete the value, press enter and get the blank field, there must be also a way to reset it with code.
    Thank you.
    Flavio

  • How to reset values in a Data Form Bean?

    I have created an ADF application that has a search facility in it. The architecture is as follows:
    DataPage (search.jsp) --> DataAction (validateSearch) -->DataAction (refreshCollection) --> DataPage (results.jsp)
    I have successfully created a data form bean to hold the data that is submitted in the search and bind it to the refresh method of the collection. I have also successfully overridden the validate method, which catches and throws and displays appropriate ActionErrors on the search.jsp page.
    I have added a link back to the search.jsp page from the results.jsp page (as a user may wish to perform another search), the ActionErrors are resetting ok but I have not managed to work out how to reset the values of the actual data form bean.
    I have tried several different ways of overriding the reset method within the data form bean but so far have been unsuccessful - I would appreciate any assistance with this matter.
    Shown here is a basic example of a form bean that I have been trying different things out with - I can not get the reset method to even be called - please help!
    package uk.dmf.eg02;
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    public class searchForm extends ActionForm
    String search;
    public setupForm()
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
    ActionErrors errors = new ActionErrors();
    if (search.trim().length()==0)
    errors.add("search", new ActionError("error.search"));
    return errors;
    public void reset(ActionMapping mapping, HttpServletRequest request)
    System.err.println("EXECUTING RESET METHOD");
    this.search = "";
    public void setSearch(String search)
    this.search = search;
    public String getSearch()
    return search;

    If you run in request scope the reset method is called, however in session scope is't only called once (or never?). See documentation of method reset():
    public void reset(ActionMapping mapping,
    javax.servlet.http.HttpServletRequest request)
    Reset bean properties to their default state, as needed. This method is called before the properties are repopulated by the controller.
    The default implementation does nothing. In practice, the only properties that need to be reset are those which represent checkboxes on a session-scoped form. Otherwise, properties can be given initial values where the field is declared.
    If the form is stored in session-scope so that values can be collected over multiple requests (a "wizard"), you must be very careful of which properties, if any, are reset. As mentioned, session-scope checkboxes must be reset to false for any page where this property is set. This is because the client does not submit a checkbox value when it is clear (false). If a session-scoped checkbox is not proactively reset, it can never be set to false.
    This method is not the appropriate place to initialize form value for an "update" type page (this should be done in a setup Action). You mainly need to worry about setting checkbox values to false; most of the time you can leave this method unimplemented.

  • How to reset values in fileds of a selection screen?

    I have a selection screen ,can you please tell me how to reset the values of the fields in selection screen.

    Hi,
    SELECTION-SCREEN: begin of block blk,
    SELECT-OPTIONS FL_DATE FOR SBOOK_WA-FLDATE.
    SELECTION-SCREEN: End of block blk,
    INITIALIZATION.
    REFRESH  FL_DATE.
    Please Note: Always search SCN before posting.
    Hope it helps you,
    Regards,
    Abhijit G. Borkar

  • How to reset local admin user password in

    Dear members,
    i want to reset local admin account(not administrator built-in), let say i have user adminlocal and member in administrator group. my question, how to reset this user via GPO in domain, because i have more than 5000 workstation in my environment. and how to
    generate summary of all workstation which are password reset.
    i've tried from this link,
    http://community.spiceworks.com/how_to/show/1966-how-to-change-local-user-or-admin-passwords-on-remote-computers
    using PSTools sysinternal from microsoft, but while i execute one PC on domain for sample using this script, they showing access denied
    anyone in this forum can help me to resolve this problem?.

    Dear,
    you can use Powershell to do this.
    I've found a script in the script center which can do this.
    http://gallery.technet.microsoft.com/scriptcenter/66a5b38f-cdf1-4126-aa0c-be65e16dd650/view/Discussions#content
    Set-Password -computer 'server' -user 'Administratorlocal' 
    You can create a loop in powershell to check all your servers which you've posted in a .txt file for example.
    $strcomputers = Get-Content c:\servers.txt
    foreach ($strcomputer in $strcomputers)
    $admin=[adsi]("WinNT://" + $strComputer + "/administratorlocal, user")
    $admin.psbase.invoke("SetPassword", "Whatever1")

  • How to parse crystal report query prompt value via url parameters

    HI All,
    I am creating a employee detail report in crystal report. The recordset is huge and i have created a parameter prompts in the query and thinking to parse the prompt value via url parameters. Not sure why i still could not make it works.
    for example, in my query panel i have created a prompt called "pwwid"
    and this is how i parse the prompt value via open document url.
    OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=AV8U6HlIq4FBl_MhcBwHqGI&lsSpwwid=12345678
    I read the sap documentation, this is how it parse the prompt value via url parameter. but it is not working for me and i am getting prompt to fill in the wwid whenever i run the reports.
    any idea why i am not getting this works?
    Regards,
    KeatAun

    Could you try:
    OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=AV8U6HlIq4FBl_MhcBwHqGI&lsSpspwwid=12345678
    -Abhilash

  • How to reset the military usage value in GTS Business partner

    Hello Experts,
    Does anyone know how to reset the Military usage value='2' to blank on the Business partner within GTS?
    I tried putting a blank there, clicking on the accept entries button followed by  saving the Business partner.
    It does not seem to work this way.
    Does anyone know if it's SAP bug for not having blank as one of the allowable values for the usage except when it's that way while newly created?
    The GTS implementation details are as follows:
    Any help with regard to this will be much appreciated......
    Thanks,
    Prashant.

    Prashant,
    As I already informed you, it is not possible to re-set the indicator to <blank>.
    From the program code, I can see that the usage indicator is only transferred from the feeder system during the creation of a customer partner.  The value in GTS is set either to '1' or '2' during creation, and cannot be changed by any subsequent data transfer from the feeder system.
    I think that logic is related to the fact that usage records may be created for multiple Legal Regulations, and those records may then be changed individually by the user in GTS.  On that basis, it would not be reasonable to over-write the values by re-transferring the customer from the feeder system.
    Regards,
    Dave

  • How can I reset the value of an array?

    How can I reset the value of an array at the beginning of my program?

    There is a option in LV,
    "Edit --> Make current value defult"
    Every time you reopen your VI, it will set to your custom default value.
    There are many ways of doing this.
    Another way of doing this is, You can use "sequence structure and property node". Make the property node of your array and choose "value". Then mark it to write. See attach.
    When you feel sad, laugh
    Attachments:
    x.GIF ‏4 KB

Maybe you are looking for

  • How do I move a user's sparse image BACK into the correct folder

    Please help if you can! I accidentally moved the sparse image connected to my administrator account into the 'shared' folder. (I was trying to confirm shared settings between users, and inadvertently moved the file.) There were no error messages or w

  • Error while opening HFM Application

    Hello all, We have an EPM 11.1.1.3 environment. Components installed are Essbase, Planning, HFM, FR, HSF. Currently we have 2 applications in HFM and we wanted to migrate/upgrade these applications to a EPM 11.1.2.3 environment We have an EPM 11.1.2.

  • See what no customer loyalty gets you

    Steve Jobs, Apple, et al, You obviously don't care at all about your customers anymore. I know the argument is that no one forced us to go out and buy the iPhone but I would hope that Apple executives would take their customer base and early adopters

  • Resources/Books/Blogs , any suggestion?

    Hi, I am new to BPM and found that the documentation is not detailed enough. I would appreciate any suggestions for resources, books, blogs etc .. Thanks

  • Citrix HDX Flash redirection plugin installer not working

    Hi, We have been trying to install the Citrix Flash redirection plugin (Products - XenDesktop - Download Flash Plugin - Citrix) but it is not working. When the installer begins after download, it starts to retrieve the install and then the windows go