How to run weblogic server in backgroud?

I just installed weblogic60sp1 on Aix.
how can i start weblogic server in backgroud?
Ron

Hi Kartheek,
If you're new to running WebLogic as a Windows service, you'll probably find it a bit tricky at first. I found troubleshooting problems, especially start-up and process-crashes, awkward at first. If you have time, you may want to check these out:
[ http://connectionserver.blogspot.com/2009/06/weblogic-as-windows-service.html|http://connectionserver.blogspot.com/2009/06/weblogic-as-windows-service.html]
[http://e-docs.bea.com/wls/docs81/adminguide/winservice.html|http://e-docs.bea.com/wls/docs81/adminguide/winservice.html]
-Jones

Similar Messages

  • How to run weblogic server in background process on Windows XP 2002 ?

    Hi,
    I have installed weblogic server 9.2 in Windows XP 2002, I want to start my weblogic server and instances in background and keep running .
    Can anybody please provide information on the same ?
    Thanks in Advance,
    Kartheek.

    Hi Kartheek,
    If you're new to running WebLogic as a Windows service, you'll probably find it a bit tricky at first. I found troubleshooting problems, especially start-up and process-crashes, awkward at first. If you have time, you may want to check these out:
    [ http://connectionserver.blogspot.com/2009/06/weblogic-as-windows-service.html|http://connectionserver.blogspot.com/2009/06/weblogic-as-windows-service.html]
    [http://e-docs.bea.com/wls/docs81/adminguide/winservice.html|http://e-docs.bea.com/wls/docs81/adminguide/winservice.html]
    -Jones

  • How to run Weblogic Server 8.1 in Win 98/Red Hat Linux

    I've receieved the Weblogic Server 8.1 Evaluation version. I've installed it successfully. But while I try to start the Weblogic Server the progress bar shows the completion of the server start but the indicator does not turn green. What might be the reason.Same is the problem with Red hat Linux 8.0 ? Please send in the solution

    Joydeep,
    WebLogic Platform 8.1 is not supported on Win 98 and Red Hat 8.0. Please
    refer to the following url for more information.
    http://e-docs.bea.com/platform/docs81/support/supp_plat.html#1048419
    Regards,
    Raj Alagumalai
    WebLogic Workshop Support
    "Joydeep Paul" <[email protected]> wrote in message
    news:3f4e9723$[email protected]..
    I've receieved the Weblogic Server 8.1 Evaluation version. I've installedit successfully. But while I try to start the Weblogic Server the progress
    bar shows the completion of the server start but the indicator does not turn
    green. What might be the reason.Same is the problem with Red hat Linux 8.0 ?
    Please send in the solution

  • Running Weblogic Server 10.3.3 in Debug  mode

    Hi to all,
    Here i got a problem after installing Oracle Identity Manager 11g R3,to solve the issue i need to run WebLogic Server 10.3.3 in Debug mode.
    Can any suggest how to run WebLogic Server 10.3.3 in Debug mode.
    Here i find a solution to run in debug mode,but no difference in log files before and after changing debug mode.
    Enable Debugging on the WebLogic Server
    To start WebLogic Server in debug mode, you will need to modify the startWebLogic.cmd script in the <WLS-root>\wlserver_10.0\samples\domains\wl_server directory. <WLS-root> is the directory in which WebLogic 10.0.1 was installed into.
    In the startWebLogic.cmd script, specify the JAVA OPTIONS with:
    set JAVA_OPTIONS=-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=4000,server=y,suspend=n
    Let me know if u have any questions,
    Thanks and Ragards,
    Satish

    Greg,
    I cam across this issue too. It looks like there is a bug in sample script provided by weblogic documentation. We should not use ADMIN_URL as they mentioned in the script.
    Remove it and try. For more info. please see this link helps:
    http://ananthkannan.blogspot.com/2009/10/weblogic-server-instance-as-window.html
    Thanks.
    Ananth

  • Running Weblogic Server 7.0 SP4 using JDK 1.4

    Is it possible to run Weblogic Server 7.0 SP4 with a different JRE than the one
    that ships with 7.0 SP4. I am having issues with a bug in JDK 1.3.1 which when
    I run under JBuilder X using 1.4 is not there. ANy help as to how I go about
    doing this would be welcomed.
    Thanks
    Justin

    Yes,
    The JDK is just the Sun JDK...nothing special. You may upgrade minor versions quite safely by dowloading later one at Sun website and pointting your "JAVA_HOME" at it.
    I would not jump to 1.4, as changes in java language may impact.

  • How to tell weblogic server which configuration I want to use

    Hi Everyone,
    I write the logmodule class, configuration class, Action class, client class
    and my policy file my.policy.
    I add the VM parameter when I start weblogic server
    "-Djava.security.auth.policy=D:\bea\wlserver6.1/lib/my.policy"
    But I don't know how to let weblogic server know my configuration class, so
    that the server will create it when my client code create LoginContext
    object.
    Some artical told me that add the configuration class name in java.security
    file, like the following
    login.configuration.provider=mypackage.myConfig
    unfortunately, it don't work :(
    I always got the exception message
    No Configuration Class Name Supplied
    Does anyone kindly tell me how to let the system know my configuration class
    name?
    Regards,
    xlzhou

    Hi,
    we are facing the same problem, if you get the solution would you please help
    us out?
    Regards
    Sudipto
    [email protected] (Joe Zhou) wrote:
    I almost got same problem.
    I wrote a deme which is using jaas.
    The client part:
    Properties property = new Properties(System.getProperties());
    property.put("weblogic.security.jaas.ServerURL",
    "http://localhost:7001");
    System.setProperties(property);
    // Set configuration class name to load SampleConfiguration, the
    //Configuration for the JAAS code example
    property = new Properties(System.getProperties());
    property.put("weblogic.security.jaas.Configuration",
    "test.servlets.TestConfig");
    System.setProperties(property);
    // Set Configuration file name to load sample configuration policy
    file.
    property = new Properties(System.getProperties());
    property.put("weblogic.security.jaas.Policy",
    "C:/bea/wlserver6.1/config/mydomain/Test.policy");
    System.setProperties(property);
    loginContext = new LoginContext("TestPolicy", new
    MyCallbackHandler());
    The Test.policy:
    TestPolicy
    test.servlets.TestLoginModule required debug=true;
    And I add "-Djava.security.auth.policy=%WL_HOME%\config\mydomain\Test.policy"
    when I start weblogic server.
    But when I run the code, I got the exception:
    Invalid Configuration Class Name: test.servlets.TestConfig
    java.lang.NullPointerException
    at javax.security.auth.login.LoginContext.loadLoginModule(LoginContext.j
    ava:101)
    at javax.security.auth.login.LoginContext.<init>(LoginContext.java:54)
    at test.servlets.TestSecure.doPost(TestSecure.java:69)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:2456)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Seems the problem is in my TestConfig.
    I just copy the SampleConfig.java as my TestConfig.java (modified a
    little) and copy the ConfigParser.java (those are in the
    samples\examples\security\jaas\examples\security\jaas)
    Any suggestion???
    BTW, all the necessary classes is in the .war file.
    Thanks in advance.
    Joe
    "Xiao Ling Zhou" <[email protected]> wrote in message news:<[email protected]>...
    Hi Everyone,
    I write the logmodule class, configuration class, Action class, clientclass
    and my policy file my.policy.
    I add the VM parameter when I start weblogic server
    "-Djava.security.auth.policy=D:\bea\wlserver6.1/lib/my.policy"
    But I don't know how to let weblogic server know my configuration class,so
    that the server will create it when my client code create LoginContext
    object.
    Some artical told me that add the configuration class name in java.security
    file, like the following
    login.configuration.provider=mypackage.myConfig
    unfortunately, it don't work :(
    I always got the exception message
    No Configuration Class Name Supplied
    Does anyone kindly tell me how to let the system know my configurationclass
    name?
    Regards,
    xlzhou

  • How to install  weblogic server in linux fedora 7  ...?

    hi.. Experts
    i am new to linux os .i am using fedora 7 version of linux. please tell me,,how to install weblogic server on fedora 7 os. i have to run my servlets , jsp pages. on weblogic server.
    plzz i m not able to do practice ...so please suggest me..
    please Reply...
    thanks a lot to all...

    Yes, they can. They installed in different directories and you have to use different ports.
    AFAIK for HTTP for APEX is either part of the installation (eg. in the Oracle Express Edition) or part of the Oracle Installation CDs. For more information see the Oracle Installation Documentation.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to run the Server Side Existing rule in Exchange 2010

    Hi All,
    There were requirement to create a auto forward rule for almost more than 5000 users, which we did, but the we want to apply this rules to the messages which are already in the inbox for all those users where we have created the rule.
    Right now the problem what we are facing is for each individual we have to take full access to their mailbox and execute the rule first time and then it works.
    this is becoming challenging for us to making this for all 5000 users. the other problem is those user are not regularly login to this mailbox, they are using some other Org mailbox, so even we can not communicate to all of them.
    Q1) How to run the Server Side Command which should forcefully apply whatever rules is created for that user should execute for the messages which are already in the inbox.
    Q2) or the powershell for for specific rule name, which can apply on the for all the messages which are there in the inbox.
    Any help would be appriciated!
    Thanks in adv champions!
    Ashku

    Hi Ashku,
    If these 5000 users are all users in your Exchange organization, a inbox rule can be created by the following commands:
    Get-Mailbox | foreach {New-InboxRule -Mailbox $_.Name -Name AutoForward -From [email protected] -ForwardTo UserB}
    Based on my test, the Inbox rule created in server side also cannot work on the message that have already been in the Inbox unless users click “Run Rules Now…” in their Outlook client. And the transport rule in Exchange server only works
    during the message sending process.
    Therefore, there may be no feature in Exchange server side to meet your requirement.
    Thanks for your understanding.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • How to run report server in oracle 9i DS

    hi..
    can any 1 tell me how to run report server in oracle 9i DS
    i've installed oracle 9i DS, but don't know how to run
    report server.
    actually i want to run a report from my form
    on button press trigger.. some of the experts r tellin
    that 1st u check whether report server is running or not..
    so pls tell me how to install report server.
    while installing oracle 9i DS, i've given Mail server
    as mysmtp.com
    Thanks
    amit

    hi ..
    i've to go in this directory n run
    rwserver -install repservername
    where repserver name is my mailserver..
    this will install reports server
    Amit

  • How to Install WebLogic Server 9.2 MP3 ?

    Hi,
    How to Install WebLogic Server 9.2 MP3 on Linux?
    and as which user we have to install WebLogic server. Whether we have to install as root user or we have to create different user to install weblogic server?
    Please provide me the document to do the installation.
    Thanks

    Just read through the installation guide: [http://e-docs.bea.com/common/docs92/install/index.html] . Look upward in that tree for all relevant WebLogic documentation.

  • Telnet on port 7 says connection refused, how to run echo server

    where do I need to look at echo server configuration.
    how to run echo server on solaris 10 X86.

    I got the answer -- svcadm

  • How to run weblogic managed server as windows servcie

    Hello Friends,
    I want step-by-step guide to run managed server and application through windows service.
    I am able to create admin server as windows service. I tried lot for managed server but no luck.
    please help me to resolve it.

    Hi,
    Here am attached the script for creating a windows service for p6 managed service which i have used for my environment.
    SETLOCAL
    set DOMAIN_NAME=P6EPPM
    set USERDOMAIN_HOME=C:\Oracle\Middleware\user_projects\domains\P6EPPM
    set SERVER_NAME=P6
    set PRODUCTION_MODE=true
    set ADMIN_URL=http://p6eppmdev:7001
    cd %USERDOMAIN_HOME%
    call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd
    call "C:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL
    I hope it will work for you.
    Try this and update the forum.
    Regards
    Kumar

  • How to use Weblogic Server 6.1 build.xml with ant

    Hi Java's
    I have downloaded the latest version of BEA Weblogic server 6.1,they have changed the build.cmd to build.xml for compiling and building the ejb applications.they are telling that we have use $ant to run the build.xml but i couldn't able to do that.i'm getting "command not found error"..i'm using winnt.please help me how to use $ ant.Is it a seperate exe or batch file that i have to download ?if so where to download it.how to use it.please help.
    Regards
    Balaji

    To use it after installation, set your path to your
    <ant_installation_dir>\bin, then navigate to the diectory containing the build.xml. then follow the instructions in the weblogic documentation for running ant.

  • How to monitor WebLogic Server when enable the Administration Port

    It works fine when use Listenport 7001, but when enable the Administration Port(9002), it does not work.
    Maybe I should do something to set the system environment property, but how?
    help~
    Sorry for my poor English~
    Thanks~

    HI,
    If the admin port is enabled then you have to use these parameters to run any scripts
    -Dweblogic.security.SSL.ignoreHostnameVerification=true
    -Dweblogic.security.TrustKeyStore=DemoTrust
    -The you can use Admin URL: t3s://localhost:9002 with Admin Port and Secure Protocol.
    Example:
    java -Dweblogic.security.SSL.ignoreHostnameVerification=true -Dweblogic.security.TrustKeyStore=DemoTrust  weblogic.WLST application_status.py
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    Connecting to t3s://localhost:9002 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'Domain_7001'.
    .Regards,
    Ravish Mody
    http://middlewaremagic.com/weblogic
    Come, Join Us and Experience The Magic…

  • How to bounce Weblogic Server

    I am running a WebAPP on WL 10.3.2. I want to Applciation changes to be get effected without restarting the server. I know bouncing the server helps. how do I bounce server on Linux platform.
    Version: WL 10.3.2

    Bouncing means restarting.
    Though Weblogic supports hot deployment it is not recommended. If changes are on just jsp's then it is fine. Class level changes will not be guarenteed without a bounce.
    Venkat

Maybe you are looking for

  • Hyperion Planning and eBusiness Suite ODI integration

    Hi, I have to integrate eBusiness Suite and Hyperion Planning, mostly exporting data from eBusiness Suite to load into Hyperion Planning. I'm allready using eBusiness Suite connectors. I'd like to know if there is some start point to understand eBS m

  • Oracle Datatype references in JDBC

    I am using JDBC to execute some stored procedures in Oracle 8.1.7. The stored procedures use user-defined Object type in the database. My problem is that, even though all these object data types have public synonymns and have granted execute permissi

  • Rename columns in Presentaion Layer

    Hi, I need to change the column names in the Presentaion Layer. I need only the beginning of the word to be uppercase. Do I have to go to BMM layer and use the rename wizard and get all the columns again to presentation layer. We have a lot of column

  • Financial analytics, exchange rate types

    Hi, I can setup a exchange rate type by global currency. But can I setup exchange rate types based on the account codes? The customer uses different exchange rate types for P&L accounts and BS (Balance) accounts. Thanks Ria

  • Unstable After Effects CC with dynamic link

    Hi all, I just bought a new iMac for editing etc. (Before the iMac I used my MacBook Pro). Everything works just fine but there is one issue with After Effects CC. When I have Premiere Pro CC open in the background and there is a dynamic link sequenc