Can't start the wls5.1 on solaris with JDK1.2

 

In the "grant codeBase" line, you should try only putting the first
directory in the path due to a bug in the JDK (seems to be fixed in JDK
1.3 for NT).
Chris Perry wrote:
Did anyone get this working. I have the same errors, I've tried all
the "answers" and so far nothing works.
Chris Perry
Robert Patrick wrote:
Try these changes:
Bill Tamerlane wrote:
Your answer didn't work out for me. I can't believe this security
crap
in jdk 1.2x. Unbelievable. I've been using the rdbms realm and jdk
118
on Linux until now. Do I have to set any special permissions in the
aclentries db table to get this mess working? Thanks,
My weblogic 451 (not 5.1) installation is in /opt/weblogic and my
own
classes are in /opt/classes
My weblogic.policy file looks like this (it was different, but I
tried
to follow your example):
grant codeBase "file://weblogic/-" {grant codeBase "file://opt/weblogic/-" {
permission java.io.FilePermission "${/}weblogic${/}-",
"read,write,delete,execute";permission java.io.FilePermission "${/}opt${/}weblogic${/}-",
"read,write,delete,execute";
permission java.net.SocketPermission "localhost:1-9000",
"connect,accept,listen,resolve";
permission java.awt.AWTPermission "accessClipboard";
permission java.awt.AWTPermission "accessEventQueue";
permission java.awt.AWTPermission
"showWindowWithoutWarningBanner";
permission java.io.SerializablePermission
"enableSubclassImplementation";
permission java.io.SerializablePermission "enableSubstitution";
permission java.lang.RuntimePermission "accessClassInPackage.*";
permission java.lang.RuntimePermission "accessDeclaredMembers.*";
permission java.lang.RuntimePermission "createClassLoader";
permission java.lang.RuntimePermission "createSecurityManager";
permission java.lang.RuntimePermission "defineClassInPackage.*";
permission java.lang.RuntimePermission "exitVM";
permission java.lang.RuntimePermission "getClassLoader";
permission java.lang.RuntimePermission "createClassLoader";
permission java.lang.RuntimePermission "getProtectionDomain";
permission java.lang.RuntimePermission "loadLibrary.*";
permission java.lang.RuntimePermission "modifyThread";
permission java.lang.RuntimePermission "modifyThreadGroup";
permission java.lang.RuntimePermission "readFileDescriptor";
permission java.lang.RuntimePermission "setContextClassLoader";
permission java.lang.RuntimePermission "setFactory";
permission java.lang.RuntimePermission "setIO";
permission java.lang.RuntimePermission "setProtectionDomain";
permission java.lang.RuntimePermission "setSecurityManager";
permission java.lang.RuntimePermission "writeFileDescriptor";
permission java.lang.reflect.ReflectPermission
"suppressAccessChecks";
permission java.net.NetPermission
"requestPasswordAuthentication";
permission java.net.NetPermission "setDefaultAuthenticator";
permission java.security.SecurityPermission "getPolicy";
permission java.security.SecurityPermission "setPolicy";
permission java.util.PropertyPermission "*", "read,write";
// Modify the URLs in the two lines below to point to the location
of
// additional classes you want to use with WebLogic Server. These
could
// include classes you develop or third-party classes you want to
use.
// You can copy this grant entry and modify the URLs for additional
// class locations.
grant codeBase "file://opt/classes/-" {
permission java.io.FilePermission "c:${/}classes${/}-",
"read,write,delete,execute";permission java.io.FilePermission "${/}opt${/}classes${/}-",
"read,write,delete,execute";
permission java.net.SocketPermission "localhost:1-9000",
"connect,accept,listen,resolve";
permission java.awt.AWTPermission "accessClipboard";
permission java.awt.AWTPermission "accessEventQueue";
permission java.awt.AWTPermission
"showWindowWithoutWarningBanner";
permission java.io.SerializablePermission
"enableSubclassImplementation";
permission java.io.SerializablePermission "enableSubstitution";
permission java.lang.RuntimePermission "accessClassInPackage.*";
permission java.lang.RuntimePermission "accessDeclaredMembers.*";
permission java.lang.RuntimePermission "createClassLoader";
permission java.lang.RuntimePermission "createSecurityManager";
permission java.lang.RuntimePermission "defineClassInPackage.*";
permission java.lang.RuntimePermission "exitVM";
permission java.lang.RuntimePermission "getClassLoader";
permission java.lang.RuntimePermission "createClassLoader";
permission java.lang.RuntimePermission "getProtectionDomain";
permission java.lang.RuntimePermission "loadLibrary.*";
permission java.lang.RuntimePermission "modifyThread";
permission java.lang.RuntimePermission "modifyThreadGroup";
permission java.lang.RuntimePermission "readFileDescriptor";
permission java.lang.RuntimePermission "setContextClassLoader";
permission java.lang.RuntimePermission "setFactory";
permission java.lang.RuntimePermission "setIO";
permission java.lang.RuntimePermission "setProtectionDomain";
permission java.lang.RuntimePermission "setSecurityManager";
permission java.lang.RuntimePermission "writeFileDescriptor";
permission java.lang.reflect.ReflectPermission
"suppressAccessChecks";
permission java.net.NetPermission
"requestPasswordAuthentication";
permission java.net.NetPermission "setDefaultAuthenticator";
permission java.security.SecurityPermission "getPolicy";
permission java.security.SecurityPermission "setPolicy";
permission java.util.PropertyPermission "*", "read,write";
grant codeBase "file:${java.home}/jre/lib/ext/-" {
permission java.security.AllPermission;
and unchanged to the end ...
Mark Griffith wrote:
And then you should edit the policy file so that it and env looks
like:
My pwd is:
[markg@mountview]/home/markg/releases/451/weblogic
in that dir lives:
weblogic.policy
and that policy file says:
grant codeBase "file://weblogic/-" {
mbg
In article <[email protected]>, [email protected]
says...
Mark, thanks for the link. But it doesn't help, getting sameexceptions(see
below).
I went through the documentation(the URL you sent) and changed
my
weblogic.policy file as below(wls51 is my installationdirectory)
grant codeBase "file:/home/grao/wls51/-" {
permission java.io.FilePermission"${/}home${/}grao${/}wls51${/}-",
"read,writ
e,delete,execute";
grant codeBase "file:/home/grao/-" {
permission java.io.FilePermission"c:${/}home${/}grao${/}wls51${/}myserver${/}serverclasses${/}-",
"read,write,delete,execute";
Do I am missing somthing else?
Thanks
GV
Mark Griffith <[email protected]> wrote in message
news:[email protected]...
READ THE INSTALLATION GUIDE.
http://www.weblogic.com/docs51/install/startserver.html#1042251
mbg
In article <[email protected]>,
[email protected]
says...
I have installed wls5.1 and changed weblogic.policy and.properties
files.
When i try to start the server it is throwing following
exception
Exception in thread "main"
java.security.AccessControlException:
access
denied (java.lang.RuntimePermission createSecurityManager )
at java.lang.Throwable.fillInStackTrace(NativeMethod)
at java.lang.Throwable.<init>(Throwable.java:94)
at java.lang.Exception.<init>(Exception.java:42)
atjava.lang.RuntimeException.<init>(RuntimeException.java:47)
atjava.lang.SecurityException.<init>(SecurityException.java:39)
at
java.security.AccessControlException.<init>(AccessControlException.java:57)
atjava.security.AccessControlContext.checkPermission(Compiled
Code)
at
java.security.AccessController.checkPermission(Compiled Code)
at
java.lang.SecurityManager.checkPermission(Compiled
Code)
atjava.lang.SecurityManager.<init>(SecurityManager.java:307)
at
==================================================
NewsGroup Rant
==================================================
Rant 1.
The less info you provide about your problem means
the less we can help you. Try to look at the
problem from an external perspective and provide
all the data necessary to put your problem in
perspective.
[att1.html]

Similar Messages

  • Can't start tomcat4.1.12-LE server with jdk1.4.0-beta!

    Hi there!!
    I got a configuration problem with tomcat4.1.12-LE with jdk1.4.0-beta.
    I was followed this URL's ( http://www.moreservlets.com/Using-Tomcat-4.html#Introduction )
    instructions as they write, but I cann't start the tomcat server :( plz help me in this matter.
    My installation path is:
    c:\jdk1.4
    c:\tomcat
    Environment variable is:
    JAVA_HOME=c:\jdk1.4
    CATALINA_HOME=c:\tomcat
    Operating system is:
    win2000
    Thanks,
    M. Junayed

    What on earth are you using the beta for? :S You should solve this problem by installing the release version of the J2SDK...

  • Error "can not start the configuration in parallel does not correct"

    Hello everybody,
    I have Windows 7 SP1, and when I install Business Objects 4.1 Client, it is install correctly but when i execute the program, for example BO Rich Client, an error appear "can not start the configuration in parallel does not correct" Could you help me?
    Thanks in advance!

    Check this KB
                  1678498  - BI 4.0 Universe Designer Gives Side-by-Side configuration incorrect Error

  • Can't start the web site of Reports Services

    Does anybody know how to fix this problem?
    After installation of the 9iAS, can't start the web site of
    Reports Services
    and Form Services from the URL listed in the postinstallation
    guide using
    default port no 1950. The dev60html and devdem60/demo
    directories are not
    existing, the runrep.htm and runform.htm files are in the
    directory
    tools/web60/html. I also tried to replace the dev60html with
    tools/web60/html
    in the URL but it won't work.
    During the installation the discoverer and portal tools failed,
    the portal
    hanged at 100%, and the discoverer didn't install the util
    directory. But we
    can login to the portal from the URL.
    Below is the message when I start from the command line: I am
    not sure if it is
    working.
    $ reports60_server start
    Stopping Reports Server Rep60_abc.com processes...
    kill -9 5647
    Reports Server Rep60_abc.com stopped.
    Starting new Reports Server Rep60_abc.com .
    rwmts60 name=Rep60_abc.com
    Stopping Reports Server Rep60_abc.com processes...
    kill -9 5910
    Reports Server Rep60_abc.com stopped.
    $ reports60_server start
    Stopping Reports Server Rep60_abc.com processes...
    Could not find running instance of Reports Server
    Rep60_abc.com
    Starting new Reports Server Rep60_abc.com .
    rwmts60 name=Rep60_abc.com
    Thanks

    Hi,
    Dumb question : is one of your server listening on port 7001 ? If not, should it ?
    What is the expected behavior ? A managed trying to connect to the admin server ?
    Check the value for ADMIN_URL value, set in the startManagedServer.sh or cmd.
    Another dumb question : do you have a firewall ?

  • Can't start the runInstaller for Oracle 8.1.7 on Red Hat 7.2 Linux

    I can't start the runInstaller for Oracle 8.1.7 under Red Hat Linux 7.2 (enigma).
    Please Help Me!

    I have the same problem as you had,but my one is that after typing ./runInstaller it will terminate, when you run ps -ef | grep oracle , there are still some backend process running over there.
    Does any one has experience to install Oracle8i on Linux? Pleae give us help.
    Jeff

  • I want to create a "Play All" chapter marker that will play the video from start to finish in addition to the standard chapters I have-I guess I can auto start the DVD but would prefer a button-how and where would I put this "play all" marker??

    I want to create a "Play All" chapter marker that will play the video from start to finish in addition to the standard chapters I have…I guess I can auto start the DVD but would prefer a button…how and where would I put this "play all" marker?? Thanks..

    The start chapter button is a play the whole movie button regardless of how many other markers you have.
    Once a DVD starts playing it continues to the end.
    Chapters marker simply gives the viewer a place to start playback whether it be the start, middle or near the end.
    Al

  • I purchased the newest software update for my ipod touch 1st generation and it is saying it is it will now begin download but the status bar doesn't even appear? How can I start the download?

    I purchased the newest software update for my ipod touch 1st generation and it is saying it is it will now begin download but the status bar doesn't even appear? How can I start the download?

    Well first off you shouldn't have had to pay for a download (just an assumption from the word "purchased".
    If you are trying to install iOS 5 on your iPod touch, it won't work they arent compatible. I suggest checking what version of software you are trying to install and posting it in this forum so people can have a better understanding.

  • JAVA Importer: ORA-105100 can't start the java virtual machine

    Hi,
    i am having trouble to make a work interaction between forms and java.
    My PL/SQL code is calling a java code situated in an imported class.
    the error i get says : can't start the java virtual machine
    I modified the CLASSPATH to add some jar files.
    What else should i do ?
    should i modify LIBPATH ?
    any idea ?
    Thanks
    Dan

    i just found this documentation Oracle Forms Developer and Forms Server 6i (Patch 4) at this adress
    http://download.oracle.com/otn_hosted_doc/forms/forms/p4_relnotef.pdf
    which says that i need jdk 1.2.2 to make it work but the documentation was published in 2001...
    Is there an earlier doc ? or an earlier doc of the java importer ?
    http://www.oracle.com/technology/products/forms/pdf/javaimporter.pdf
    any help would be appreciated

  • How can I get the disk information in Solaris 9

    I am new to Solairs9. I use the format utility to list my partitions, but there are many unassigned partitions. I pasted the format response below:
    # format
    AVAILABLE DISK SELECTIONS:
    0. c1t1d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@8,600000/SUNW,qlc@4/fp@0,0/ssd@w21000011c6413e10,0
    Specify disk (enter its number): 0
    format> partition
    partition> print
    Current partition table (original):
    Total disk cylinders available: 14087 + 2 (reserved cylinders)
    Part Tag Flag Cylinders Size Blocks
    0 root wm 302 - 13482 63.96GB (13181/0/0) 134129856
    1 swap wu 0 - 301 1.47GB (302/0/0) 3073152
    2 backup wm 0 - 14086 68.35GB (14087/0/0) 143349312
    3 unassigned wm 0 0 (0/0/0) 0
    4 unassigned wm 0 0 (0/0/0) 0
    5 unassigned wm 0 0 (0/0/0) 0
    6 unassigned wm 0 0 (0/0/0) 0
    7 home wm 13483 - 14086 2.93GB (604/0/0) 6146304
    The part number from 3 to 6 are unassigned. What does this mean? How much space of these unassigned partitions? How can I mount these unassigned partitions to my local directories?
    Thanks.

    "+How can I get the disk information in Solaris 9+ "
    This was cross-posted to the Solaris 9 forum as well.
    http://forum.java.sun.com/thread.jspa?threadID=5223643

  • How can i start the web analyzer to look the report

    HAi
    I created a query in Bex. And then i created the 'Web templates' for this query in WAD.
    Now how can i start the Web Analyzer to look this query in the web. I want to see only through web analyzer.
    So pls tell me how can i start the web analyzer. i mean step-by step method for opening the web analyzer and to look the report.
    thnaks
    kumar

    Hi Ravi.
    The web analyzer is not used to open templates created in the WAD. If you want to open the query in the web analyzer you should open it by calling the 0ANALYZER template ID. I.e. http://server.domain.com:port/sap/bw/BEx?cmd=&template_id=0ANALYZER&sap-language=EN
    Alternatively you can open the web template created in the WAD in the browser by clicking "Execute in the Browser..." or just enter the template ID in the URL provided above.
    Hope it helps (assign points if helpfull!).
    BR
    Stefan.

  • How can I start the BRTOOLS or BRGUI?

    Dear experts:
       I would like to ask you a question, that is how can I start the BRTOOLS or BRGUI?
       many thanks!
       Best Regards
    Edited by: feng Qiu on Jun 26, 2008 5:30 AM

    Hi fenq,
    Login as <sid>adm & run brtools after taht you fet the menu & many option
    BR*Tools main menu
    1 = Backup and database copy
    2 - Restore and recovery
    3 - Check and verification
    4 - Database statistics
    5 - Profiles and logs
    6 - Additional functions
    7 - Exit program
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR662I Enter your choice:
    After that choose option & than enter.
    If you have any query than message me freely.
    Karan

  • How can you start the tag config editor from a vi or when labview starts?

    how can you start the tag config editor from a vi or when labview starts?

    Hi,
    There is a VI called "dsc_TagEditorLauncher.vi" under "C:\Program Files\National Instruments\LabVIEW 7.1\project\lvdsc" folder that can be used to launch the TCE programmatically. I hope this helps.
    Best Regards,
    Remzi A.
    Applications Engineering
    National Instruments

  • How can I start the program without the run button

    How can I start the program the instant i open the vi?
    without the use of Run.
    Thanks
    Solved!
    Go to Solution.

    Under vi properties, execution, click run when opened like in Jeff's screen capture below . Don't post any code set to run when opened to the forums!
    =====================
    LabVIEW 2012

  • After update.. i can not start the ipad, when i press agree in the terms ...it will freeze and the screen not working///help please

    after update.. i can not start the ipad, when i press agree in the terms ...it will freeze and the screen not working///help please

    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • How can i start the process in the Process Overview?

    Hallo All,
    i make first steps with nw ce and work on a tutorial. But after i have deployed  my model i can't start the process in the process repository becaus the button "Start Process" is hidden, to see here: [screenshot|http://alexshram.al.ohost.de/pub/procRepOverview.jpg]
    Please, can me one explain how i can start my process.
    Thank you in advance!

    Hi Alex,
    The Process Flow and Start Process button are not enabled because you have selected the Task Definition item('Display Name Age') in the Processes and Tasks table. Please select  Process Defintion itme('prcNameAge' ).
    This should resolve your issue.
    Regards,
    Unni

Maybe you are looking for