Env $PATH setting in Solaris

how to set env , $PATH etc to make every thing work like OUI, dbca etc
oracle:tulputildb02$ ./dbca
./dbca: uname: not found
./dbca: /oracle/product/10.2.0/jdk/jre/bin/java: not found
oracle:tulputildb02$ uname -a
ksh: uname: not found
oracle:tulputildb02$ uname -a
ksh: uname: not found
oracle:tulputildb02$ uname
ksh: uname: not found
oracle:tulputildb02$ env
ksh: env: not found
oracle:tulputildb02$ echo $PATH
/u01/app/oracle/product/10.2.0.5/bin:
oracle:tulputildb02$ uname -a
SunOS tulputildb02 5.10 Generic_142909-17 sun4u sparc SUNW,SPARC-Enterprise

>
oracle:tulputildb02$ echo $PATH
/u01/app/oracle/product/10.2.0.5/bin:
>
Your PATH variable has only the $ORACLE_HOME/bin directory. It should typically have the following (on Solaris) at the beginning
/usr/bin:/usr/local/bin:/usr/sbin:/sbin:/usr/local/sbin:/usr/ucb:/usr/ccs/bin
followed by other directories such as ORACLE_HOME/bin
HTH
Srini

Similar Messages

  • How is system PATH set in Solaris 10?

    When I issue "echo $PATH" after starting bash shell, default system paths are displayed. I noticed there is no *.bashrc* file anywhere on the system. Then from which script(s) and in what order are these paths get set?

    bobthesungeek76036 wrote:
    Probably a combination of /etc/default/login and /etc/profile.Today I confirmed. /etc/profile does not set the PATH. /etc/default/login sets only /usr/bin for all users and /usr/sbin for root. But my initial PATH variable contains other paths, too. It essentially means there is some other startup script(s) which influences PATH variable. Moreover, if I create /.bashrc and set the PATH, it overrides the system default path.

  • Best practice for adding application to $env:Path in PowerShell?

    I'm trying to figure out the best way to add a program to PS's path. When I look at $env:Path, I see tons of different entries pointing to various programs on the system that seem to have been added by their installers. This would suggest that I could just
    add another entry pointing to the .exe I want to have available in the path, but if I do this every time I want to have an application available at the shell my path is going to get hideously cluttered.
    In bash, I would normally make a bin directory within my home directory, add it to the path at startup in my .bashrc, and then make symlinks in that directory for anything I wanted available. This keeps the path clean and easy to manage. Is there a way to
    do something like this in PS, or is the standard solution just to add a new entry to the path for every application you want until it's like a million miles long and unreadable? Putting symlinks or shortcuts in directories already in the path hasn't worked
    so far.

    I'm trying to figure out the best way to add a program to PS's path. When I look at $env:Path, I see tons of different entries pointing to various programs on the system that seem to have been added by their installers. This would suggest that I could just
    add another entry pointing to the .exe I want to have available in the path, but if I do this every time I want to have an application available at the shell my path is going to get hideously cluttered.
    In bash, I would normally make a bin directory within my home directory, add it to the path at startup in my .bashrc, and then make symlinks in that directory for anything I wanted available. This keeps the path clean and easy to manage. Is there a way to
    do something like this in PS, or is the standard solution just to add a new entry to the path for every application you want until it's like a million miles long and unreadable? Putting symlinks or shortcuts in directories already in the path hasn't worked
    so far.
    You can't put symlinks in a folder to a folder but you must put a link or shortcut to the executable.  Links to folders are not scanned. Only the root folder in the path is scanned.  No programs wil lever be found through the path if it is in the
    current folder in a PowerShell session.
    You can quickly alter the patch for the current session like this:
    $env:path+='c:\myprogramfolder'
    When you exit PowerShell it will not reamian.  It will only change the PowerShell process path for that PowerShell session.
    ¯\_(ツ)_/¯

  • $ENV{PATH} error code

    My powerbook g4 (with os x 10.4) has been running really slow since I reinstalled the system software. I reinstalled b/c i bought this used and wanted to change the name of the computer, settings, etc. When i reinstalled tiger, i connected it to my PowerMac G4 so i could transfer the user settings, applications, etc to the laptop (note- my PowerMac G4 is on 10.3.9). since then it's been running slow & a couple of weird things are going on:
    1. whenever i try to download something from the web, i click on the dmg file on my desktop, i get this message: unmountable image or disk or something to that effect.
    2. i was just running Onyx in hopes of getting things working more smoothly and faster & when i was optimizing the system this error code came up:
    Insecure $ENV{PATH} while running setuid at /usr/bin/update/prebinding line 55.
    Can anyone tell me how to fix this? I'd rather fix it then reinstall the system software and all of my apps. thanks!
    PowerBook G4 Mac OS X (10.4)
    PowerBook G4   Mac OS X (10.4)  

    Hi chrysalls, welcome to the forum.
    Have a read at:
    http://www.osxfaq.com/man/3/Env.ws
    You may want to wipe the book's hard drive again, if you're backed up, and give it another try. Be more selective in what you bring over from the PowerMac and how soon.
    I'm wondering if there is some sort of conflict between the machines and platforms?
    Joe

  • Won't compile-even with correct path set up

    NEVER MIND - It helps when you don't have a typo in the application. :-(
    Please disregard this post.
    I've read the archives. I actually got everything to work fine on my desktop. I'm now trying to get the "Hello World!" application to compile on my lapttop. I am getting the standard "javac is not recognized . . ." error.
    I've checked my path set up. My javac.exe is in the bin file of the jdk1.6.0_02 folder in my C drive. I have my application in the C drive in a folder "Java"
    c:\Java>javac HelloWorldApp.java
    What am I missing? Yes, I've just started to learn this language and would appreciate all the patience and help I can get.
    Thanks,
    Gizelle
    Message was edited by:
    simplyGizelle

    Hi your classpath is not set when so you can go to the folder(bin) where
    javac.eze is and give the absolute path of the java file you want to comiple.

  • Is $ENV:Path the System version of $path or the User version of $Path ?

    On my Windows 7 system I have two versions of the environment variable $PATH; one under "User variables" and one under "System variables" in the System Properties/Environment Variables dialog box.
    Is the value of $ENV:PATH supposed to be the User or the System version of $PATH ?

    It's both, in a way.  $ENV:Path will give you the Process version of that variable, which is initialized by appending the user path to the system path.
    You can see all three by using the System.Environment class:
    [System.Environment]::GetEnvironmentVariable('Path', 'Machine')
    [System.Environment]::GetEnvironmentVariable('Path', 'User')
    [System.Environment]::GetEnvironmentVariable('Path', 'Process')

  • PATH Setting using Runtime.exec() on a UNIX env?

    Hi,
    How do we set the PATH using Runtime.exec() on a UNIX Env?
    I've tried the 'export' command and 'setenv' command but it throws an exception saying 'export' and 'setenv' not found.
    objProcess = Runtime.getRuntime().exec("setenv PATH /opt/ibm/java2-x86_64-50/bin");+
    Please suggest.
    Thanks,
    Tanu

    Your experimenting with the stuff could shed light on the question, whether the outcome is influenced by the relying of the started process on elements of the starting environment other than PATH.
    String[] envp=new String[1];
    envp[0]="PATH=/jdk1.5/bin";
    Runtime rt=Runtime.getRuntime();
    Process proc=rt.exec("java Test",envp);

  • Problem with Oracle 10g RAC VIP network setting at Solaris 9

    Dear All,
    I have tried to set up a Oracle 10g RAC Release 2.
    With OS solaris 9, and 2 nodes.
    The nodes setting as the following:
    nodes 1:
    Public address: 172.16.0.121
    Private address: 192.168.0.121, 192.168.1.121 (dual path for heart beat)
    nodes 2:
    Public address: 172.16.0.122
    Private address: 192.168.0.122, 192.168.1.122
    And i have assigned two IP adress 172.16.0.131, 172.16.0.132 as the VIP address for the
    RAC.
    And the following is the /etc/hosts file:
    root@shk01 # cat /etc/hosts
    # Internet host table
    127.0.0.1 localhost
    # public address
    172.16.0.121 shk01 loghost
    172.16.0.122 shk02
    # heart beat
    192.168.0.121 shk01-priv1
    192.168.1.121 shk01-priv2
    192.168.0.122 shk02-priv1
    192.168.1.122 shk02-priv2
    # VIP address
    172.16.1.131 vip-shk01
    172.16.1.132 vip-shk02
    But when i run the command "$ ./runcluvfy.sh comp nodecon -n shk01,shk02 -verbose"
    it shows the error:
    ERROR:
    Could not find a suitable set of interfaces for VIPs.
    Result: Node connectivity check failed.
    I did try to add the VIP address on bge0:1, as i using bge0 for the public address.
    Both nodes i did using the same interface name for it.
    Anyone have idea for me to check out the error?
    Also, I have other question about the raw device.
    As there is option for setting for ASM or raw device. If choosing raw device, does it mean that it just need to
    format the storage disk but without newfs it? And then the Oracle program will able to handle it?
    Thanks,
    Xentar

    You don't seem to state categorically that you are using Solaris Cluster, so I'll assume it since this is mainly a forum about Solaris Cluster (and IMHO, Solaris Cluster with Clusterware is better than Clusterware on its own).
    Clusterware has to see the same device names from all cluster nodes. This is why Solaris Cluster (SC) is a positive benefit over Clusterware because SC provides an automatically managed, consistent name space. Clusterware on its own forces you to manage either the symbolic links (or worse mknods) to create a consistent namespace!
    So, given the SC consistent namespace you simple add the raw devices into the ASM configuration, i.e. /dev/did/rdsk/dXsY. If you are using Solaris Volume Manager, you would use /dev/md/<setname>/rdsk/dXXX and if you were using CVM/VxVM you would use /dev/vx/rdsk/<dg_name>/<dev_name>.
    Of course, if you genuinely are using Clusterware on its own, then you have somewhat of a management issue! ... time to think about installing SC?
    Tim
    ---

  • Env Variable setting for Oracle 11g windows 2003 R2

    Hi ,
    While installing the Oracle 11g on windows 2003 R2 getting error while running the prerequsite steps for installtion.failing the env variables path. Please guide us to set up the Environmental variable for the oracle 11g installation.
    Thanks..

    Tippu wrote:
    Hi,
    Oracle version Oracle 11.2.0.1
    Os Windows 2003 R2
    we had set some values. though we are getting the below errors.
    Environment variable: "PATH" - This test checks whether the length of the environment variable "PATH" does not exceed the recommended length.
    Expected Value
     : 1023
    Actual Value
     : 0
     List of errors:
    PRVF-3916 : Environment variable name "PATH" is not set on node "laxwzcl01"  - Cause:  Environment variable value could not be determined.  - Action:  Ensure that the environment variable is set and access permissions for the Oracle user allow access to read the environment variables. Restart the installer after correcting the setting for environment variable.It's like setting any other environment variable in Windows ...
    Right click My Computer, select Properties > Advanced tab > Environment variables button ...
    It should be self-evident from that point.

  • How to go around max path lenght in Solaris

    Hi, I have really special question. I have been searching internet for answers, but nothnig satisfy my needs.
    I found some basic info in http://forums.sun.com/thread.jspa?threadID=5357258
    I need to store realy huge amount of files and i have been searchnig for suitable FS. I have found ZFS wich is ideal for my needs. My problem is, that file path is limited to 1024 chars. Please don't say, that is long enough, i need more. This limitation is "guaranteed limit for the length of a path that system calls will deal with" so is it possible to raise this number or somehow to go around it?? I wrote test programs in Java nad C++ and both stops creating dirs when file path was about 1024.
    For example in Windows is path limit 260 chars, but it is only backward compatibility, so using Win API it is possible to have path length about 32 000. Exists something similar in solaris?
    And next question is about ZFS. It is better to have huge amount of files in dir tree or all files in one dir (if it is not limited like file path)? For human is better dirs, i know, but my files wont be human-browsable.
    dir tree:        in one dir:
    /0/0.ext         /00.ext
    /0/0/0.ext       /000.ext
    /0/0/0/0.ext     /0000.ext
    /0/0/0/1.ext     /0001.extwich type of storage has better efficiency in ZFS?
    Thanks

    I have made some tests and here are results:
    OS: OpenSolaris 2009.06 (console mode, not Gnome)
    FS: ZFS
    CPU: Intel Pentium 4
    RAM: 1 GB (free 500 MB before start)
    Test 1 - ZFS
    Files: about 220,000 (system) + 12,356,630 (generated and tested files)
    File size: 1024 B
    Generation speed: about 1200 files per second
    Deleting speed: 10 hours
    +-----+---------+--------+--------+-------------+
    |found|  files  |  time  |  avrg  | readed data |
    +-----+---------+--------+--------+-------------+
    | yes |   1,024 | 45 sec |  44 ms |       1 MiB |
    | yes |   1,024 | 37 sec |  36 ms |       1 MiB |
    | yes |   1,024 | 50 sec |  49 ms |       1 MiB |
    | yes |   1,024 | 42 sec |  41 ms |       1 MiB |
    | yes |   1,024 | 36 sec |  35 ms |       1 MiB |
    | yes |   1,024 | 48 sec |  47 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 36 sec |  35 ms |       1 MiB |
    | yes |   1,024 | 51 sec |  50 ms |       1 MiB |
    | yes |   1,024 | 43 sec |  42 ms |       1 MiB |
    | yes |   1,024 | 47 sec |  46 ms |       1 MiB |
    | yes |   1,024 | 48 sec |  46 ms |       1 MiB |
    | yes |   1,024 | 42 sec |  41 ms |       1 MiB |
    | yes |   1,024 | 47 sec |  46 ms |       1 MiB |
    | yes |   1,024 | 42 sec |  41 ms |       1 MiB |
    | yes |   1,024 | 45 sec |  44 ms |       1 MiB |
    | yes |   1,024 | 43 sec |  42 ms |       1 MiB |
    | yes |   1,024 | 37 sec |  37 ms |       1 MiB |
    | yes |   1,024 | 49 sec |  48 ms |       1 MiB |
    | yes |   1,024 | 46 sec |  44 ms |       1 MiB |
    +-----+---------+--------+--------+-------------+
    Test 2 - MySQL
    Records: 16,777,214
    Record data size: 1024 B
    Size of table: 16.6 GiB
    Generation speed: about 700 files per second
    Deleting speed: 30 seconds
    +-----+---------+--------+--------+-------------+
    |found| entries |  time  |  avrg  | readed data |
    +-----+---------+--------+--------+-------------+
    | yes |   1,024 |  1 min |  66 ms |       1 MiB |
    | yes |   1,024 | 41 sec |  40 ms |       1 MiB |
    | yes |   1,024 | 41 sec |  40 ms |       1 MiB |
    | yes |   1,024 | 43 sec |  42 ms |       1 MiB |
    | yes |   1,024 | 41 sec |  40 ms |       1 MiB |
    | yes |   1,024 | 41 sec |  40 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 41 sec |  40 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 41 sec |  40 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 41 sec |  40 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  40 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 40 sec |  39 ms |       1 MiB |
    | yes |   1,024 | 39 sec |  38 ms |       1 MiB |
    +-----+---------+--------+--------+-------------+So both ways are very similar, but MySQL was little faster and has more entries. My test computer is very bad, so it is hard to say wich way will be faster on some server with more RAM, fasters discs and CPU. But you were right, because MySQL was faster than FS. So maybe i will use database insteda of FS, because there is no limit and i can save som other info wich is in file's data now. Thanks that you compel me to try it.

  • Image path sets ( servername) instead of \\servername

    Due to a hardware meltdown I have had to rip the NW server out of the tree
    and install a new one.
    I have re-installed the server NW65sp8 and reinstalled ZENworks for Desktops
    7
    Now, When I set an imaging job on a workstation I browse to the server etc
    and set the file path.
    When I click apply or ok leave the object and go back in the path has
    changed;
    eg
    (ZFDSRVSR) USER\zenimg\ws_master.zmg
    instead of
    \\ZFDSRVSR\USER\zenimg\ws_master.zmg
    Any ideas on how I fix this?
    Manual imaging works ok. I have deleted the ws object and re imported into
    eDir
    Tom

    I have resolved this.
    >>> On 21/07/2010 at 12:54 p.m., in message
    <[email protected]>,
    Tom Cummings<[email protected]> wrote:
    > This is turning out to be serious ant not server related. I installed a
    > new
    > ZFD7 server into a new container. Setting an image path on using that
    > server reproduces the same problem.
    >
    > Help! :‑(
    >
    >
    >
    >>>> On 20/07/2010 at 9:07 AM, in message
    > <[email protected]>,
    > Tom Cummings<[email protected]> wrote:
    >> Due to a hardware meltdown I have had to rip the NW server out of the
    >> tree
    >> and install a new one.
    >>
    >> I have re‑installed the server NW65sp8 and reinstalled ZENworks for
    >> Desktops
    >> 7
    >>
    >> Now, When I set an imaging job on a workstation I browse to the server
    >> etc
    >> and set the file path.
    >>
    >> When I click apply or ok leave the object and go back in the path has
    >> changed;
    >>
    >> eg
    >>
    >> (ZFDSRVSR) USER\zenimg\ws_master.zmg
    >>
    >> instead of
    >>
    >> \\ZFDSRVSR\USER\zenimg\ws_master.zmg
    >>
    >> Any ideas on how I fix this?
    >>
    >> Manual imaging works ok. I have deleted the ws object and re imported
    >> into
    >> eDir
    >>
    >> Tom

  • Setting up solaris 8 opreating environment after promt interruption

    I was setting up my Solaris 8 desktop operating system using the automatically shown promt-questions (domain name, proxy server etc.) when I had to shut the system down.
    Does anyone know how I can get to this set up session again so I don't have to set everything manually or reinstall Solaris 8?

    Hia,
    by my experience ...
    If you were 'upgrading to s8 and it started the upgrade, ie, wrote to disk, you may have have to reinstall s8 from scratch ..
    If you were installing s8 from scratch, ie, initial install than there is no way back half way into the install program as it is all done from cdrom/tmp so all that info would have been reset when the system was reset.
    hope this helps .. sorry!

  • Total newbie needs help installing and setting up Solaris 10 as a server

    i'm attempting to set up one computer to act as a file and print server on my home network, so that i can store all of my music and video files on it instead and print to my parallel-only laser printer. 80% of the time i'm using my laptop, so i need the mass storage and printer to be handled by another device - the server!
    i'm not sure if i'm even installing Solaris 10 correctly. how should it be installed to then act as a server? my two (incredibly long, like 3+ hours each) install attempts so far have resulted in an OS that looks like a nice fancy GUI-laden desktop which doesn't appear to show me my 750G SATA storage drive (the OS is on a 40G IDE drive).
    in the end, i'd like to have the system working so that my only interaction with it is the power button - press it once to power it on and it'll boot up and long in automagically and make itself seen over the network (with printer and files stored on drives accessible to my laptop or any other PC that's on the same network), and then press the power button again to shut down the entire system gracefully (so far, when i press the power button, it's a quick kill like pulling the power cord - i'm pretty sure that's a bad way of having the system shut down, so how do i change it?)
    i'm really hoping to use Solaris due to the promising ZFS scheme. my only exposure so far to unix / linux has been with ubuntu, which i usually like but sometimes loathe (primarily file permissions and network manager).

    Let's try step by step rather than asking for setting up a server as a while and I'll try to help you as much as I can.
    For setting up a printer, it's not that easy or quick setting up a printer on Solaris, I mean it's not like plug-n-play. Tell us about your printer and how it's connected to your system (usb, ethernet, parallel, serial).
    As for shutting down the system, it's recommended to use the shutdown commnad like this:
    # shutdown -y -i0 -g0
    --gibb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Beginner setting up solaris 10 container and having network card problems

    Hi I am just learning about solaris containers and am having an issue of getting my new zone to be seen on the network.
    I have installed the global zone server name GPSAPP02 network address of 192.168.200.45 works fine.
    I created :-
    a pool called "ellipse-pool" using pooladm/poolcfg
    a zone called "ellipse-zone" using zoneadm/zonecfg
    I used the followijng commands...
    zoneadm list -cv      
    zonecfg -z ellipse-zone
    create               --
    set zonepath=/zfspool/zones/ellipse-zone
    set autoboot=true     
         add net     
    set address=192.168.200.46/24
    set physical=eri0     
    set defrouter=192.168.200.254
    end                
    set pool=ellipse-pool     
    verify
    commit
    exit
    The output from the "zonecfg -z ellipse-zone info" command is below:-
    zonename: ellipse-zone
    zonepath: /zfspool/zones/ellipse-zone
    brand: native
    autoboot: true
    bootargs:
    pool: ellipse-pool
    limitpriv:
    scheduling-class:
    ip-type: shared
    inherit-pkg-dir:
    dir: /lib
    inherit-pkg-dir:
    dir: /platform
    inherit-pkg-dir:
    dir: /sbin
    inherit-pkg-dir:
    dir: /usr
    net:
    address: 192.168.200.46/24
    physical: eri0
    defrouter not specified
    I then installed the zone and rebooted using zoneadm.
    I can login to the zone and setup the timezone and terminal etc.
    I gave this a hostname of GPSEL01 as this is what I want it to be known as on the network.
    So far so good but from the network I cannot ping the IP address I assigned to the zone 192.168.200.46
    What have I missed or what should I check to troubleshoot this?
    I ran a ifconfig -a and received the following information...
    ifconfig -a
    lo0:1: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    # ifconfig lo0:1 192.168.200.46 netmask 255.255.255.0 up
    ifconfig: SIOCSLIFNETMASK: lo0:1: permission denied

    Hi
    I notice in your output from ifconfig -a in the global zone that the NIC card is nge1.
    However in your zoneconfig you have set the NIC card to eri0 (physical = eri0). I cannot see this NIC card in your ifconfig -a.
    When a zones is of IP-type shared-ip it needs to use a network interface that is already plumbed into the global zone. In your case you need to change the NIC in your zone config to nge1 :
    zonecfg -z ellipse-zone
    select net address=192.168.200.46
    set physical=nge1
    end
    exit
    Then reboot your zone.
    A couple of other minor comments.
    1) As it appears the zone is on the same subnet as the global zone, if the global zone already has the default route of 192.168.200.254 setup you don't need to specify it in the zone config. You are most likely to use the defrouter parameter if the zone was on a different subnet to the global zone (but shared the same physical NIC).
    2) You have specified the netmask in the address field which is fine. But again this should not be necessary as long as your /etc/netmasks file is correct in the global zone.
    Hope this helps

  • Path setting

    Hi everyone,
    Can anybody helps to answer my question?
    1. I put my class file (test.class) in the folder webapps\examples\WEB-INF\classes and it works fine for the url http://localhost:8080/examples/servlet/test. However, if I put the class file in the folder webapps\examples\WEB-INF\classes\folder, it doesn't work for the url http://localhost:8080/examples/servlet/folder/test. Do I need to set something in the conf folder or I typed the wrong url?
    2. For the jsp files, it works at the folder webapps\examples\jsp\*. If I put the jsp files in the webapps\examples\WEB-INF\jsp\*, the jsp files won't work. What's wrong also.
    Thanks.

    Hy,
    Hi everyone,
    Can anybody helps to answer my question?
    1. I put my class file (test.class) in the folder
    webapps\examples\WEB-INF\classes and it works fine for
    the url http://localhost:8080/examples/servlet/test.
    However, if I put the class file in the folder
    webapps\examples\WEB-INF\classes\folder, it doesn't
    work for the url
    http://localhost:8080/examples/servlet/folder/test. Do
    I need to set something in the conf folder or I typed
    the wrong url?For each package part in your Servlet Class, a Folder must exist.
    eg. If your Servlet has package mywork.test,
    the Path is : examples\WEB-INF\classes\mywork\test
    Your second Url assumes your Servlet has a package folder.
    Currently it seams, you haven't set one.
    If you add a package statement in your test.class, it should work.
    2. For the jsp files, it works at the folder
    webapps\examples\jsp\*. If I put the jsp files in the
    webapps\examples\WEB-INF\jsp\*, the jsp files won't
    work. What's wrong also.
    Thanks.All Content under WEB-INF is protected from calling outside of the
    Server. Files under WEB-INF are allowed to be called, eg. with
    a RequestDispatcher, but not directly with a Browser Request.
    Hope, that helps you a bit.
    Best regards
    jherunter

Maybe you are looking for

  • Recording narration on a Cube

    Is there any way I can connect an external microphone to a G4 Cube? At system preferences > input it shows "No input devices were found". I am looking for a way to record a commentary using iMovie 2. Is it possible, and if so, what type of microphone

  • Major changes with IOS 7

    Changes in using Reminders

  • IPhoto upgrade will not install after downloading Yosemite

    iPhoto will not upgrade after installing Yosemite.

  • DataGridView: Scrolling to Selected row

    (.NET 2.0 Framework) In the DataGridView control, I have programmatically selected a row that's currently not displayed in the grid.  However, the grid does not seem to scroll to the selected row automatically, and there doesn't seem to be a way to s

  • Verity Collection Errors in CF9

    Hello, We are trying to create verity collections in CF9 and have successfully done so in the past. For some reason we are now getting errors and have not been able to find a resolution. Here are the errors: Error E0-0720 (I/O Filter): Could not load