Server Debug Permission denied

I upgraded to CF8 and now when using the "Server Debug"
feture in Dreamweaver 8 I get an error. I can skip the error and
everything seems ok. It is just such a pain to get the error
message each time I start a debug session.
The error is:
The following error has occured while connecting to the
ColdFusion Server:
Permission denied for the requested operation.
Each time I make the error occure an entry is placed in the
ColdFusion Runtime log:
user RDSServlet: Permission denied for the requested
operation
I am running on MS IIS on a windows XP pro

Try turning on logging.
I typically edit /etc/syslog.conf and add an entry
local7.info;local7.debug /var/log/sshd
ensuring the entries are tab delimited.
Then
touch /var/log/sshd
Edit /etc/ssh/sshd_config and change
SyslogFacility auth
LogLevel info
to
SyslogFacility LOCAL7
LogLevel debug
Restart everything:
svcadm restart system-log
svcadm restart ssh

Similar Messages

  • RMI Server Codebase Permission Denied

    I'm having a problem trying to get my application running in a test environment. I currently have this same application up and running in an almost identical location without any issues, and I'm at a loss to understand what the problem is.
    My application is an RMI server-client setup. At the moment, I'm having trouble with solely the server portion, as I'm unable to get it to access the codebase. I start the application with the following runServer.sh file (located in /usr/local/app/app, so the $ROOT_DIR=pwd is correct):
    Line: -----
    #!/bin/bash
    ROOT_DIR=`pwd`
    JAVA_HOME=/usr/java/latest
    CLASSPATH=''
    #:: Please edit the environmental variables below so that it refers
    #:: to the location where you have distribution URL.
    DISTRIBUTION_URL=file://$ROOT_DIR
    find /usr/local/app/app/server -name '*.jar' -type f -print | while read FILE
    do
    if [ $CLASSPATH ]
    then
         CLASSPATH=$CLASSPATH:$FILE
    else
         CLASSPATH=$FILE
    fi
    echo $CLASSPATH > classpath.env
    done
    read CLASSPATH < classpath.env
    find /usr/local/app/app/import -name '*.jar' -type f -print | while read FILE
    do
    if [ $CLASSPATH ]
    then
         CLASSPATH=$CLASSPATH:$FILE
    else
         CLASSPATH=$FILE
    fi
    echo $CLASSPATH > classpath.env
    done
    read CLASSPATH < classpath.env
    find /usr/local/app/app/common -name '*.jar' -type f -print | while read FILE
    do
    if [ $CLASSPATH ]
    then
         CLASSPATH=$CLASSPATH:$FILE
    else
         CLASSPATH=$FILE
    fi
    echo $CLASSPATH > classpath.env
    done
    read CLASSPATH < classpath.env
    echo ${CLASSPATH}
    cd server
    # start /min "RMI Registry"
    $JAVA_HOME/bin/rmiregistry &
    JAVA_SECURITY="-Djava.security.policy==config/admin.policy -Djava.security.auth.login.config==config/app_jaas.config"
    IMPORT_PROPERTIES="-Dapp.import.properties=file://$ROOT_DIR/import/config/import.properties -Dapp.import.logging.properties=file://$ROOT_DIR/import/config/importlog.properties -Dapp.client.properties=file://$ROOT_DIR/client/config/client.properties"
    app_PROPERTIES="-Dapp.root=$ROOT_DIR -Dconnection.pool.properties=file://$ROOT_DIR/server/config/database.properties -Dapp.common.properties=$DISTRIBUTION_URL/common/config/common.properties -Dapp.server.properties=file://$ROOT_DIR/server/config/server.properties -Dapp.server.logging.properties=file://$ROOT_DIR/server/config/log.properties"
    echo
    echo "-------------- app Server -------------------"
    echo
    $JAVA_HOME/bin/java -ms96m -mx256m -classpath $CLASSPATH -Djava.rmi.server.codebase=file:///usr/local/app/app/common/lib/common.jar $IMPORT_PROPERTIES $JAVA_SECURITY $app_PROPERTIES -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n app.serverimpl.ServerStarter
    cd $ROOT_DIR
    Line: -----
    After running this, it fails at that last line, $JAVA_HOME/bin/java etc. Near as I can see from the error is that it cannot access the -Djava.rmi.server.codebase.
    Line: -----
    app.serverimpl.service.ServiceException:java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: access to class loader denied
    at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:419)
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:267)
    at sun.rmi.transport.Transport$1.run(Transport.java:177)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:173)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:553)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:808)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:667)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
    at java.lang.Thread.run(Thread.java:636)
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:273)
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:251)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:377)
    at sun.rmi.registry.RegistryImpl_Stub.bind(Unknown Source)
    at app.serverimpl.service.LoginManagerServiceImpl.start(LoginManagerServiceImpl.java:52)
    at app.serverimpl.service.ServiceAdapter.start(ServiceAdapter.java:96)
    at app.serverimpl.service.ServiceManager.startup(ServiceManager.java:78)
    at app.serverimpl.ServerStarter.main(ServerStarter.java:62)
    Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: access to class loader denied
    at sun.rmi.registry.RegistryImpl_Skel.dispatch(Unknown Source)
    at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:409)
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:267)
    at sun.rmi.transport.Transport$1.run(Transport.java:177)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:173)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:553)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:808)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:667)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
    at java.lang.Thread.run(Thread.java:636)
    Caused by: java.lang.ClassNotFoundException: access to class loader denied
    at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:445)
    at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:182)
    at java.rmi.server.RMIClassLoader$2.loadClass(RMIClassLoader.java:637)
    at java.rmi.server.RMIClassLoader.loadClass(RMIClassLoader.java:264)
    at sun.rmi.server.MarshalInputStream.resolveClass(MarshalInputStream.java:214)
    at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1592)
    at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1513)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1749)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1346)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:368)
    ... 12 more
    Caused by: java.security.AccessControlException: access denied (java.io.FilePermission /usr/local/app/app/common/lib/- read)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:393)
    at java.security.AccessController.checkPermission(AccessController.java:553)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:549)
    at sun.rmi.server.LoaderHandler$Loader.checkPermissions(LoaderHandler.java:1173)
    at sun.rmi.server.LoaderHandler$Loader.access$000(LoaderHandler.java:1127)
    at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:409)
    ... 21 more
    Line: -----
    Out of growing desperation (and since it's a test VM in virtual box so I'm not really protecting anything) I've already granted full permissions to everyone for these these files in the filesystem itself - chmod -R 775 - and I've made sure that common.jar is accessible. I also double-checked the Security Policy, Djava.security.policy, and that's just a straight all permission to everything (again, I'm not protecting anything on this test).
    Line: -----
    grant {
    permission java.security.AllPermission;
    Line: -----
    What's really driving me nuts is that this exact same code is already running and working on another machine. There are no environment variables that I'm missing, and I don't see how those would relate to this problem even if I did. The directories are identical, and I've verified the location that's listed as the cause (/usr/local/app/app/common/lib/) exists and is accessible. I keep coming back to the file permissions and the security policy and I'm sure I could be missing something obvious, but I am not seeing it at all. Can anyone give me some advice on this?
    I'm running a VM in VirtualBox 4.1.4, running CentOS 5.7 32-bit. Java is JDK 1.6.0, just the basic yum install package.

    This is a .policy file problem, not a filesystem permissions problem. Run it with -Djava.security.debug=access,failure to see exactly what is going on. Basically your .policy file either doesn't grant the required FilePermission or isn't being loaded.
    NB a codebase of a local JAR file isn't going to work unless all the clients are in the same host.

  • PERMISSION DENIED IN FTP SERVER

    Hi all,
    i have XML to XML scenario. i have put xi_input.xml in my system and made  delete mode in sender communication channel. but its not picking and deleting the data, its giving error in FTP serve as "permission denied" and in runtime work bench error is "Failed to delete file 'xi_input.txt' after processing. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 550 Permission denied'. For details, contact your FTP server vendor.". please help me
    thanks and regards

    >
    pawan kumar wrote:
    i m getting output XML file in my system.but i tried with directly one to one mapping in message mapping, now i did some modification in Message mapping like i concatenate name by X in message mapping and in description i passed ZSUBHODIP as constant then in output i am not getting concatenateed value and constant ZSUBHODIP in name and description.
    Hi,
    Did you activate the message mapping after modification ??
    If yes, test the mapping in test tab and let us know the exact error.
    Regards,
    Chandra

  • Permission denied remote socket ERROR when creating outgoing PROVIDER

    Hi,
    I am having issues in the outgoing provider.
    My Stellent 7.5 is installed on a linux box with ip address 182.30.190.28 and hostname of pc-prd-st and the URL to access this is http://pc-prd-st/stellent_pr/
    I have installed two instances of Content Server 10gR3 on a different linux box with ip address 182.30.190.38 and hostname of poc-dev-prd-cs. There are 2 instances of Content Server 10gR3 running on this box. One is for dev and one is for prod. Here are the URL's to access both
    http://poc-dev-prd-cs/dev_idc/
    http://poc-dev-prd-cs/prod_idc/
    dev_idc admin port=5440 and contentserver port=5444
    prod_idc admin port=4440 and contentserver port=4444
    Now on my Stellent 7.5 version that is running on 182.30.190.28 I created an outgoing provider to connect to http://poc-dev-prd-cs/prod_idc/ which is my prod instance of 10gR3 and here are the values I have when creating a provider:
    Provider Name: ucm10gProdProvider
    Provider Description: Provider for connecting to poc-dev-prd-cs PROD Instance
    Provider Type: outgoing
    Provider Class: intradoc.provider.SocketOutgoingProvider
    Provider Connection: intradoc.provider.SocketOutgoingConnection
    Instance Name: prod_idc
    Server Host Name: poc-dev-prd-cs
    Server Port: 4444
    Relative Web Root: /prod_idc/
    But when I test this provider it's giving the following error:
    Connection State: down 
    Connection Error: Unable to establish connection to the server. Permission denied. Address '182.30.190.28' is not an allowable remote socket address.
    The provider 'ucm10gProdProvider' is in error. Unable to establish connection to the server. Permission denied. Address '182.30.190.28' is not an allowable remote socket address. [ Details ]
    An error has occurred. The stack trace below shows more information.
    !csProviderError,rtpstell01Provider!$Unable to establish connection to the server. Permission denied. Address '182.30.190.28' is not an allowable remote socket address.
    intradoc.common.ServiceException: Unable to establish connection to the server. Permission denied. Address '182.30.190.28' is not an allowable remote socket address.
         at intradoc.server.proxy.ProviderStateUtils.checkReturnData(Unknown Source)
         at intradoc.server.proxy.ProviderStateUtils.testConnection(Unknown Source)
         at intradoc.server.ProviderManagerService.testProvider(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at intradoc.server.Service.doCodeEx(Service.java:617)
         at intradoc.server.Service.doCode(Service.java:583)
         at intradoc.server.Service.doAction(Service.java:507)
         at intradoc.server.Service.doActions(Service.java:411)
         at intradoc.server.Service.doRequest(Service.java:1765)
         at intradoc.server.ServiceManager.processCommand(Unknown Source)
         at intradoc.server.IdcServerThread.run(Unknown Source)The error above points to the IP Address of Stellent 7.5 and saying Permission denied. Address '182.30.190.28' is not an allowable remote socket address.
    As I have verified all the instances are up and running. I restarted both the servers several times but still the same error. As I also have one more out going provider that connects to the test instance which is on different box and it works for that. But some how not for my the new prod_idc. Any ideas what might be wrong.
    Thanks

    Hi
    Add the config entry SocketHostAddressSecurityFilter to config.cfg with the IP addresses that you want to let access the CS . It should be like this :
    SocketHostAddressSecurityFilter=127.0.0.1|10.177.*.*|10.229.175.167
    After this restart the CS and test it out.
    Srinath

  • Permission Denied on Syslogins.password when SQL2K to Oracle

    I am getting the following error when running the OMWB. Any help is appreciated.
    Failed to load Source Mode.[Microsoft][ODBC SQL Driver][SQL Server] SELECT permission denied on column 'password' of object 'syslogins', database 'master', owner 'dbo'
    I login as SA account and select the database 'abc' to migrate.
    Thanks,
    Chida

    I am trying to set this to the Mac (Admin) owner. The folder that is being shared over the network via samba was created on Mac OS

  • Scp works sftp permission denied - debug sftp-server process ?

    We have a number of servers where we can scp a file on to the server, but when we try and sftp onto the server and put a file we get permission denied. The sftp connection works and we can cd arround just not put a file.
    Its not a file/folder permissions problem.
    Any ideas?
    Is there any way under solaris 10 to put debug on the sftp-server process? you could under solaris 8 but according to the man pages under 10 the options have gone.

    Try turning on logging.
    I typically edit /etc/syslog.conf and add an entry
    local7.info;local7.debug /var/log/sshd
    ensuring the entries are tab delimited.
    Then
    touch /var/log/sshd
    Edit /etc/ssh/sshd_config and change
    SyslogFacility auth
    LogLevel info
    to
    SyslogFacility LOCAL7
    LogLevel debug
    Restart everything:
    svcadm restart system-log
    svcadm restart ssh

  • BEA-002606: Weblogic server runs on port 80 - permission denied.

    Hi,
    I am new to weblogic, just started to playing around with it. I setup weblogic server with a cluster consisting of 2 servers, all running locally. I was trying to configure the web server functionality on weblogic 10.3. I followed the exact steps described at http://edocs.bea.com/wls/docs103/config_wls/web_server.html, but I keep on getting a permission denied error:
    <Dec 2, 2008 3:00:10 PM> <Info> <NodeManager> <Working directory is "/opt/bea/user_projects/domains/firstDomain">
    <Dec 2, 2008 3:00:10 PM> <Info> <NodeManager> <Server output log file is "/opt/bea/user_projects/domains/firstDomain/servers/server03/logs/server03.out">
    <Dec 2, 2008 3:00:12 PM MYT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Server VM Version 10.0-b19 from Sun Microsystems Inc.>
    <Dec 2, 2008 3:00:13 PM MYT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3 Fri Jul 25 16:30:05 EDT 2008 1137967 >
    <Dec 2, 2008 3:00:16 PM MYT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Dec 2, 2008 3:00:16 PM MYT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Dec 2, 2008 3:00:16 PM MYT> <Notice> <Log Management> <BEA-170019> <The server log file /opt/bea/user_projects/domains/firstDomain/servers/server03/logs/server03.log is opened. All server side log events will be written to this file.>
    <Dec 2, 2008 3:00:26 PM MYT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Dec 2, 2008 3:00:41 PM MYT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Dec 2, 2008 3:00:41 PM MYT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Dec 2, 2008 3:00:44 PM MYT> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Dec 2, 2008 3:00:44 PM MYT> <Notice> <Cluster> <BEA-000197> <Listening for announcements from cluster using unicast cluster messaging>
    <Dec 2, 2008 3:00:44 PM MYT> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of Cluster-00.>
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <Cluster> <BEA-000162> <Starting "async" replication service with remote cluster address "null">
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <Cluster> <BEA-000162> <Starting "man" replication service with remote cluster address "null">
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <Cluster> <BEA-000162> <Starting "man-async" replication service with remote cluster address "null">
    <Dec 2, 2008 3:01:14 PM MYT> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "Default". The address 172.16.141.1 might be incorrect or another process is using port 80: java.net.BindException: Permission denied.>
    <Dec 2, 2008 3:01:14 PM MYT> <Emergency> <Security> <BEA-090087> <Server failed to bind to the configured Admin port. The port may already be used by another process.>
    <Dec 2, 2008 3:01:14 PM MYT> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "Default[3]". The address 127.0.0.1 might be incorrect or another process is using port 80: java.net.BindException: Permission denied.>
    <Dec 2, 2008 3:01:14 PM MYT> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason: Server failed to bind to any usable port. See preceeding log message for details.>
    <Dec 2, 2008 3:01:14 PM MYT> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "Default[2]". The address 10.8.8.31 might be incorrect or another process is using port 80: java.net.BindException: Permission denied.>
    <Dec 2, 2008 3:01:14 PM MYT> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "Default[1]". The address 192.168.140.1 might be incorrect or another process is using port 80: java.net.BindException: Permission denied.>
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Dec 2, 2008 3:01:14 PM MYT> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <Cluster> <BEA-000163> <Stopping "async" replication service>
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <Cluster> <BEA-000163> <Stopping "man" replication service>
    <Dec 2, 2008 3:01:14 PM MYT> <Notice> <Cluster> <BEA-000163> <Stopping "man-async" replication service>
    <Dec 2, 2008 3:01:15 PM> <Debug> <NodeManager> <Waiting for the process to die: 19768>
    <Dec 2, 2008 3:01:15 PM> <Info> <NodeManager> <Server failed during startup so will not be restarted>
    <Dec 2, 2008 3:01:15 PM> <Debug> <NodeManager> <runMonitor returned, setting finished=true and notifying waiters>
    Netstat shows:
    netstat -an | grep 172.16.141.1
    tcp6 0 0 172.16.141.1:7001 :::* LISTEN
    tcp6 0 0 172.16.141.1:7005 :::* LISTEN
    tcp6 0 0 172.16.141.1:43991 172.16.141.1:7001 ESTABLISHED
    tcp6 0 0 172.16.141.1:7005 172.16.141.1:46728 ESTABLISHED
    tcp6 0 0 172.16.141.1:7001 172.16.141.1:43991 ESTABLISHED
    tcp6 0 0 172.16.141.1:46728 172.16.141.1:7005 ESTABLISHED
    tcp6 1 0 172.16.141.1:43999 172.16.141.1:7001 CLOSE_WAIT
    udp 0 0 172.16.141.1:137 0.0.0.0:*
    udp 0 0 172.16.141.1:138 0.0.0.0:*
    Port 80 is not being used by the IP. Am quite lost at the moment on how to troubleshoot this problem.
    Appreciate any advice offered. Thanks in advance.

    There's not much benefit to having 2 instances on the same machines vs having one instance on that machine. Putting a load balancer in front of a machine with 2 hosts only helps you when you lose a mgd server - but not when you lose an entire machine ( since both mgd servers go away too )
    Consider:
    Mgd Server A on machine myHost1 with java memory 512m/512m
    Mgd Server B on machine myHost1 with java memory512m/512m
    vs
    Mgd Server A on machine myHost1 with java memory 1024m/1024m
    vs
    Mgd Server A on machine myHost1 with java memory1024m/1024m
    Mgd Server B on machine myHost2 with java memory 1024m/1024m
    The first config is your current situation. Your two mgd servers are fighting each other for processing time & memory on that machine. They can't use the same ports, so how does a user decide which port to use when they access your application?
    The second config combines their resources into one mgd server
    The third gives you load balancing ability - you can survive the loss of a machine. Also note that since the 2 instances are on DIFFERENT machines, they CAN use the same non-SSL and SSL ports.

  • Permission Denied on Solaris 10 NFS share, shared trough Windows Server 2008R2

    Hello, 
    We have a NFS share on Windows Server 2008 R2 setup the following way, 
    NTFS permissions for ANONYMOUS LOGON and Everyone groups are set to Full control.
    When mounting this share on our Solaris workstation, it mounts and we can view files in that mount but cannot edit or write to it.
    mount -f nfs 10.0.0.2:/Folder/ /test
    permissions are set as:
    drwxrwxrwx 2 nobody nobody 4096 Mar 4 08:57 test/
    when in test direcorie, trying to copy a file gives this error:
    cp gp.txt gp_1.txt
    cp: cannot create gp_1.txt: Permission denied
    Please help,
    Thanks

    Hi,
    Is there any error message in the Event Log on Windows Server 2008 R2? Please try to install the hotfix in the KB article below.
    "Permission Denied" error when a UNIX user accesses files on an NFS share in Windows Server 2008 R2
    http://support.microsoft.com/kb/2485529
    Best Regards,
    Mandy 
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • "Error Starting OMI-Server. Unable to bind socket.Permission denied. Listen

    Hi All,
    I Installed Forms 1o-g successfully on my mishon ( Version windows vista), when i try to connect Forms i got error
    like this *"Error Starting OMI-Server. Unable to bind socket.Permission denied. Listen*
    Plz Anyone help....
    Thanks
    sa.....

    Which version of Windows Vista? Bear in mind that Vista home edition is not supported by Oracle (I think for all products). If that is the case, you should be upgrading your OS to business or ultimate edition.
    If that is not the case, please get in touch with Oracle support. Not much is available on internet or in forums (as you seem to have posted this in Forms forum as well).

  • Mount: failed reason given by server: Permission denied

    Hi,
    I am getting this error when tried to mount
    # mount sfxdb01:/db01/u20/oracle/prodarch /db01/u20/oracle/prodarch
    mount: sfxdb01:/db01/u20/oracle/prodarch failed, reason given by server: Permission denied
    What is the reason?
    Thanks,
    Kavitha

    kavi wrote:
    Thank you chad.
    How can check the remote server is denying the permissions?
    Which file shows the error message in /var/log?
    If it is denying permissions, how can I give the permissions?
    Regards,
    KavithaYou'll need access to the remote server to do this - I'm going to assume that this server (to you) really is 'remote', so the best thing to do is to contact the system administrator; this isn't an error you can solve if you don't have administrative rights to the remote server.

  • Javascript: "Permission denied" - how to debug?

    hello,
    on a website we are currently developing we make use of an adapted version of http://www.brandspankingnew.net/specials/ajaxautosuggest/ajax_autosuggestautocomplete.html
    This works fine on a simple test form but fails in Safari 3.1 (Mac and Win) when we include the script in the real web page.
    The error console states just plain "Permission denied" - unfortunately it does not tell what exactly and where something fails.
    The script does work in all other browsers like Firefox, Camino, windows internet explorer ... only on Safari we get this error.
    Is there something else on a mac apart from the Safari-included "Developer tools" that would help me debug this error?
    thank you

    no
    {quote:}
    Resource interpreted as script but transferred with MIME type text/html.
    http://www.brandspankingnew.net/js/bsn.AutoSuggest2.1.3comp.js
    Resource interpreted as stylesheet but transferred with MIME type text/html.
    http://www.brandspankingnew.net/css/autosuggest_inquisitor.css
    ReferenceError: Can't find variable: bsn
    http://tomx.890m.com/test.html? (line 392)
    Resource interpreted as script but transferred with MIME type text/html.
    http://track.blogcounter.de/js.php?user=gulfstream&style=6
    {quote}
    but again, the original sample page does work as well as a simple form we use to try our modifications to the script. Only when the script is included in the "real" form page it fails.
    And without any hint from safari where exactly it fails it's hard to debug:(
    thanks

  • Apache user dir (13)Permission denied: access to /~simha/ denied

    I am getting Access forbidden! when I am trying to connect to http://localhost/~simha/ where simha is my user name
    my /var/log/httpd/error_log says
    [Thu Jul 08 17:44:30 2010] [error] [client 127.0.0.1] (13)Permission denied: access to /~simha/ denied
    I tried a lot and gave up. Can any one help me in this in regard
    The following are the permisions of my home dir simha and public_html
    drwx--x--x 130 simha users 16384 Jul 8 17:04 simha
    drwxr-xr-x 2 simha users 4096 Jul 8 17:02 public_html
    The following are my httpd.conf
    # This is the main Apache HTTP server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
    # for a discussion of each configuration directive.
    # Do NOT simply read the instructions in here without understanding
    # what they do. They're here only as hints or reminders. If you are unsure
    # consult the online docs. You have been warned.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path. If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "/var/log/httpd/foo_log"
    # with ServerRoot set to "/etc/httpd" will be interpreted by the
    # server as "/etc/httpd//var/log/httpd/foo_log".
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do not add a slash at the end of the directory path. If you point
    # ServerRoot at a non-local disk, be sure to point the LockFile directive
    # at a local disk. If you wish to share the same ServerRoot for multiple
    # httpd daemons, you will need to change at least LockFile and PidFile.
    ServerRoot "/etc/httpd"
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses.
    #Listen 12.34.56.78:80
    Listen 80
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule authn_file_module modules/mod_authn_file.so
    LoadModule authn_dbm_module modules/mod_authn_dbm.so
    LoadModule authn_anon_module modules/mod_authn_anon.so
    LoadModule authn_dbd_module modules/mod_authn_dbd.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule authz_dbm_module modules/mod_authz_dbm.so
    LoadModule authz_owner_module modules/mod_authz_owner.so
    LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    LoadModule auth_digest_module modules/mod_auth_digest.so
    LoadModule file_cache_module modules/mod_file_cache.so
    LoadModule cache_module modules/mod_cache.so
    LoadModule disk_cache_module modules/mod_disk_cache.so
    LoadModule mem_cache_module modules/mod_mem_cache.so
    LoadModule dbd_module modules/mod_dbd.so
    LoadModule dumpio_module modules/mod_dumpio.so
    LoadModule ext_filter_module modules/mod_ext_filter.so
    LoadModule include_module modules/mod_include.so
    LoadModule filter_module modules/mod_filter.so
    LoadModule substitute_module modules/mod_substitute.so
    LoadModule deflate_module modules/mod_deflate.so
    LoadModule ldap_module modules/mod_ldap.so
    LoadModule log_config_module modules/mod_log_config.so
    LoadModule log_forensic_module modules/mod_log_forensic.so
    LoadModule logio_module modules/mod_logio.so
    LoadModule env_module modules/mod_env.so
    LoadModule mime_magic_module modules/mod_mime_magic.so
    LoadModule cern_meta_module modules/mod_cern_meta.so
    LoadModule expires_module modules/mod_expires.so
    LoadModule headers_module modules/mod_headers.so
    LoadModule ident_module modules/mod_ident.so
    LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule setenvif_module modules/mod_setenvif.so
    LoadModule version_module modules/mod_version.so
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    LoadModule ssl_module modules/mod_ssl.so
    LoadModule mime_module modules/mod_mime.so
    LoadModule dav_module modules/mod_dav.so
    LoadModule status_module modules/mod_status.so
    LoadModule autoindex_module modules/mod_autoindex.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule info_module modules/mod_info.so
    LoadModule suexec_module modules/mod_suexec.so
    LoadModule cgi_module modules/mod_cgi.so
    LoadModule cgid_module modules/mod_cgid.so
    LoadModule dav_fs_module modules/mod_dav_fs.so
    LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule imagemap_module modules/mod_imagemap.so
    LoadModule actions_module modules/mod_actions.so
    LoadModule speling_module modules/mod_speling.so
    LoadModule userdir_module modules/mod_userdir.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule php5_module modules/libphp5.so
    <IfModule !mpm_netware_module>
    <IfModule !mpm_winnt_module>
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    User http
    Group http
    </IfModule>
    </IfModule>
    # 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents. e.g. [email protected]
    ServerAdmin [email protected]
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #ServerName www.example.com:80
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "/srv/http"
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # features.
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "/srv/http">
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    # The Options directive is both complicated and important. Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    Options Indexes FollowSymLinks includes
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    # Options FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Order allow,deny
    Allow from all
    </Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
    DirectoryIndex index.html
    </IfModule>
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
    </FilesMatch>
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "/var/log/httpd/error_log"
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    <IfModule log_config_module>
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    CustomLog "/var/log/httpd/access_log" common
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog "/var/log/httpd/access_log" combined
    </IfModule>
    <IfModule alias_module>
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
    </IfModule>
    <IfModule cgid_module>
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #Scriptsock /var/run/httpd/cgisock
    </IfModule>
    # "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/srv/http/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    # DefaultType: the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value. If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    DefaultType text/plain
    <IfModule mime_module>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig conf/mime.types
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #AddType application/x-gzip .tgz
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #AddHandler cgi-script .cgi
    # For type maps (negotiated resources):
    #AddHandler type-map var
    # Filters allow you to process content before it is sent to the client.
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
    </IfModule>
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type. The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #MIMEMagicFile conf/magic
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://www.example.com/subscription_info.html
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall is used to deliver
    # files. This usually improves server performance, but must
    # be turned off when serving from networked-mounted
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    #EnableMMAP off
    #EnableSendfile off
    # Supplemental configuration
    # The configuration files in the conf/extra/ directory can be
    # included to add extra features or to modify the default configuration of
    # the server, or you may simply copy their contents here and change as
    # necessary.
    # Server-pool management (MPM specific)
    #Include conf/extra/httpd-mpm.conf
    # Multi-language error messages
    Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    Include conf/extra/httpd-autoindex.conf
    # Language settings
    Include conf/extra/httpd-languages.conf
    # User home directories
    Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # phpMyAdmin configuration
    Include conf/extra/httpd-phpmyadmin.conf
    # Various default settings
    Include conf/extra/httpd-default.conf
    # Secure (SSL/TLS) connections
    #Include conf/extra/httpd-ssl.conf
    Include conf/extra/php5_module.conf
    # Note: The following must must be present to support
    # starting without SSL on platforms with no /dev/random equivalent
    # but a statically compiled-in mod_ssl.
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
    The following are my /etc/httpd/conf/extra/httpd-userdir.conf
    # Settings for user home directories
    # Required module: mod_userdir
    # UserDir: The name of the directory that is appended onto a user's home
    # directory if a ~user request is received. Note that you must also set
    # the default access control for these directories, as in the example below.
    UserDir public_html
    # Control access to UserDir directories. The following is an example
    # for a site where these directories are restricted to read-only.
    <Directory /home/*/public_html>
    AllowOverride FileInfo AuthConfig Limit Indexes
    Options MultiViews Indexes SymLinksIfOwnerMatch ExecCGI
    <Limit GET POST OPTIONS PROPFIND>
    Order allow,deny
    Allow from all
    </Limit>
    <LimitExcept GET POST OPTIONS PROPFIND>
    Order deny,allow
    Deny from all
    </LimitExcept>
    </Directory>
    I also tried adding user to the group http. BUt nothing is working.

    Do you have [or more like lack] +x on the user folder?

  • "Error on Page" permission denied

    We have several users in our SRM system that encounter an "Error on Page" (permission denied) javascript error when their page is left idle for 5-10 minutes.  This is in spite of the timeout settings being set as follows:
    SRM Server
    rdisp/gui_auto_logout  1800
    AGATE
    ~rfctimeout 60
    ~timeout 60
    TimeoutDiagRead 600000
    WGATE
    NiSendTimeout 600000
    NiReceiveTimeout 600000
    We are running SRM 4.0 (Server 5.0), with an external ITS release 620.  The WGate and AGate are on separate servers, and we do experience the same error in all of our systems.  Once the Error On Page has been received, none of the links on the current page are functional.  OSS has not been able to duplicate. 
    I would appreciate any suggestions.  Thanks.

    Hi,
    1) Is it BSP application issue.
    Javascript error could occur if any of the Script files were not loaded.
    IF you have tool like HTTPWatch , You can use then and see which File on loading home page has an issue. As absolute URL will also be loaded we can check which BSP application javascript fiel is issue, then check in SICF if that BSP application is active.
    2)You would also try to debug using javascript  and see where error is happening,
    if possible just give more inputs.
    Regards,
    Vijay

  • Error connecting from Mac to Linux via SSH (Permission denied (publickey...

    Hello together,
    I have a perfectly working setup with my XP machine, Putty and my Suse Linux server that allow for remote login via SSH. I use Public Key authentication.
    However, when I try to login from my Mac, all I get from the Mac side is a
    "Permission denied (publickey,keyboard-interactive)."
    And I can't establish the connection. On the server in 'messages' I get:
    "sshd{6046}: Accepted publickey for {userName} from {myHomeIP} port 38335 ssh2"
    What could be wrong here?
    I would like to use the same keys on my PC and my Mac so I just copied the key files into the .ssh directory on the Mac, did a chmod 600 on them and then tried to remote log-on with the follwoing from the terminal:
    "ssh -l {userName} {host} -i {keyFile}"
    My questions are:
    1) How am I sure that the Mac uses the right key files? (or uses them at all)
    2) How come my server says "accept publickey" and no connection is established?
    3) Do you have any other idea on how I might get this to work? What I need is a method to copy files (not via FTP) to my server and let the process run without supervision / user interaction.
    Thanks a lot for all your help!
    Cheers
    Message was edited by: Sebastian_R (some typos)

    If you copied your files from Windows, I would check to make sure your lines are <LF> terminated. I have not played with Putty so I do not know the way it line terminates its ssh key files, but Windows has a long tradition of using <CR><LF> to terminate its lines.
    cat -v ~/.ssh/id_rsa # or whatever your file names are
    If there are <CR> characters in the file, they will show up as ^M
    Next get more diagnostic information from ssh using an *ssh -v -v -v*
    If you know how to tell Putty to do the same thing, do it from Putty as well.
    Now compare the debug output from the working vs the non-working ssh commands. The differences will tell you a lot.
    If you look at *man ssh* and search for permissions it will tell you what files need restrictive permissions. You can get a permissions denied error if your home directory allows Group or Other write access. The $HOME/.ssh directory needs to be set so ONLY the Owner is allowed to access it. And some of the files in $HOME/.ssh require specific permissions. The ssh man page details this.

  • WebCache Failed to start : Failed to assign port 80: Permission denied

    Hi All,
    I have three server running IAS 10.1.2.0.2, running forms and reports application. One Infra and two Midtier.
    Suddenly Midtier1 is crashed, but before it happen I have already backup with TAR : OracleHome and all its related configuration files.
    After the crash, I reinstall the RH Linux same version and update and then restore ( TAR -xvf ) the backup that I have.
    When I run opmnctl startall, all ias-component started, EXCEPT one : WEB CACHE.
    When I look at Webcache event Log, here is the error :
    [11/May/2004:17:29:05 +0700] [notification 9612] [ecid: -] OracleAS Web Cache 10g (10.1.2), Build 10.1.2.0.2 050802
    [11/May/2004:17:29:05 +0700] [notification 9612] [ecid: -] OracleAS Web Cache 10g (10.1.2), Build 10.1.2.0.2 050802
    [11/May/2004:17:29:05 +0700] [notification 9403] [ecid: -] Maximum number of file/socket descriptors set to 900.
    [11/May/2004:17:29:05 +0700] [notification 9403] [ecid: -] Maximum number of file/socket descriptors set to 900.
    [11/May/2004:17:29:05 +0700] [notification 13002] [ecid: -] Maximum allowed incoming connections are 700
    [11/May/2004:17:29:05 +0700] [notification 13002] [ecid: -] Maximum allowed incoming connections are 700
    [11/May/2004:17:29:05 +0700] [alert 13305] [ecid: -] Failed to assign port 80: Permission denied
    [11/May/2004:17:29:05 +0700] [alert 9707] [ecid: -] Failed to start the server.
    [11/May/2004:17:29:05 +0700] [alert 9609] [ecid: -] The server process could not initialize.
    [11/May/2004:17:29:05 +0700] [notification 9610] [ecid: -] The server is exiting.
    [11/May/2004:17:29:05 +0700] [alert 9000] [ecid: -] Process 3268 exit(1) at 890:main.c [Build 10.1.2.0.2 050802]
    [11/May/2004:17:29:05 +0700] [warning 11917] [ecid: -] SSL wallet Origin Server Wallet file /etc/ORACLE/WALLETS/oraias/ewallet.p12 does not exist.
    [11/May/2004:17:29:05 +0700] [warning 11917] [ecid: -] SSL wallet Origin Server Wallet file /etc/ORACLE/WALLETS/oraias/ewallet.der does not exist.
    [11/May/2004:17:29:05 +0700] [warning 11919] [ecid: -] The SSL wallet autologin file /etc/ORACLE/WALLETS/oraias/cwallet.sso does not exist. Wallet does not appear to be autologin wallet.
    [11/May/2004:17:29:05 +0700] [warning 11921] [ecid: -] The origin server wallet did not open. Operating without wallet for backend. Only Diffie-Hellman anonymous connections supported to origin servers.
    [11/May/2004:17:29:05 +0700] [warning 11922] [ecid: -] Origin Server Wallet wallet fails to open at location /etc/ORACLE/WALLETS/oraias, NZE-28759, as user oraias
    [11/May/2004:17:29:06 +0700] [notification 9607] [ecid: -] The admin server started successfully.
    How can I solve this problem ?
    Thank you for your help,
    xtanto

    Hi xtanto,
    You may not have set up the privileges for running on a port less than 1024 (i.e. port 80) in your old back-uped tar-file.
    Please check Chapter 8 "Running webcached with Root Privilege" in the Web Cache Admin document.
    http://download-east.oracle.com/docs/cd/B14099_19/caching.1012/b14046/basics.htm#sthref1060
    Regards,
    Martin

Maybe you are looking for