/tmp files access

Hello!
I would like access to /tmp files in root mode but I can't.
When I make an ls -l there is no files, but the files displayed in download managment window.
Is there any problem with xdm server?
Must I stop xdm to acces to /tmp files?
How can do to stop and restart it?
thank you very much.
Excuse me for my bad English.
predator
predator

Hi predator,
maybe a few rows of documentation will be good. Root mode I think doesn't exists, it's single user mode if you mean this.
It's strange if you cannot access the /tmp dir. So if you use for example the firefox to download (that I cannot resolv from your posting) be sure that you downloading to tmp please.
Why do you think that is problem with xdm?
No you cannot stop xdm to view /tmp.
So I think that you can restart xdm:
svcadm restart xdm

Similar Messages

  • ITunes .tmp files -- Over 8.5 Gb of them

    I've got over 8.5 Gb .tmp files in my My Music/iTunes folder. This is comprised of over 175 .tmp files. It doesn't appear that most of these files have been accessed anytime recently. My music files are stored on another (internal hard drive), not within My Docs.
    Needless to say, this seems to be a pretty big waste of HD space. Which, if any of these files can I delete and how will it impact iTunes? Is there anyway to keep these files from being created over and over again?

    I've got over 8.5 Gb .tmp files in my My Music/iTunes folder. This is comprised of over 175 .tmp files. It doesn't appear that most of these files have been accessed anytime recently. My music files are stored on another (internal hard drive), not within My Docs.
    Yates, are the .tmp files showing up on the same level in your itunes folder as your itunes library .itl and .xml files?
    if so, that's usually associated with security software interfering with itunes writes to your library files:
    What are the iTunes Library files?
    (it's actually more common on a Mac than on Windows PCs, but i've seen it reported every now and then on Windows PCs dating back to the itunes 4.9 days.)
    what makes and models of antivirus and/or antispyware packages are you running? by any chance, is it nod32?
    (i don't have a good feel for which packages are more likely to cause this, but we had an example of this show up in itunes 6.0.5.20 that turned out to be associated with nod32.)

  • ITunes 10.5.2 is writing a lot of temp.tmp files and using up many gigabytes of disk space! It seems as if it is completely out of control!

    iTunes 10.5.2 on my macbook pro is writing a lot of temp(number).tmp files to my iTunes folder and not erasing them later!  As a result it quickly uses up many gigabytes of hard disk space. It uses up 8 to 10 gigabytes in just a few days.  I have been using iTunes since its inception, and only had this occur in the past few weeks.  My iTunes library is large with 3187 albums, and is 425 GB in size. My iTunes library is located on remote hard disk and accessed from my wifi network.  I have had such a setup for many years without any problems. Any help would be appreciated.

    iTunes 10.5.2 on my macbook pro is writing a lot of temp(number).tmp files to my iTunes folder and not erasing them later!
    Usually, that indicates that something is interfering with read/writes to the iTunes library files. Do you have security software (or realtime backup utilities) installed that might be scanning the locations on the computer where the iTunes library files are stored?

  • Safe Protection of file access by all means

    Hello,
    we currently in an implementation project we we get delivered sensitive denormalised data from special ledger.
    Denormalised means in this case that we post transaction data and master data attributes in one file.
    This is done due to technical reasons. For example if you have 1 million transaction data and 1 million master data
    we speak about one trillion reads, which will be tear down performance in any case.
    On development and test system we are currenlty in middle to get an anonymizatin solution on board.
    For produtive enviroment we have to access the files via ABAP in order to validate them.
    In SU21 (Overview authorisation objects) I found the authorisation object S_DATASET (see attachment)
    which seem on a first sight suitable,  but it the authorisation object have to by a ABAP programm over the function module AUTHORITY_CHECK_DATASET, which means every developer can develop an ABAP programm without the function module by accident or without. In both cases it means unlimeted access the files.
    I'm looking for a more kernel based authorisation for file access.
    Additionally it should be common sense to restrict to transactin AL11. 
    + How can we protect the files in our productive enviroment by all means?
    + Are other threats beside ABAP programms for the files in our scenario?
    We are on BW 7.0 SP23 / Basis 7.00 SP21 and ABAP 7.00 SP21. We are running on OS SunOS.
    Regards & Thanks,
    Guido Brune
    Documentation on S_DATASET:
    Definition
    Authorizations for accessing files from ABAP/4 programs.
    You use this object to assign authorizations for accessing operating system files (with the ABAP/4 key word OPEN DATASET, READ DATASET, TRANSFER and DELETE). This key word can also be used to assign the authorization for using operating system commands as a file filter.
    In ABAP/4 programs, you perform the authorization check with the function module AUTHORITY_CHECK_DATASET.
    Defined fields
    The object consists of the following fields:
    ABAP/4 program name: Name of the ABAP/4 program that contains the access. You can restrict the file access to a few known access programs.
    Activity: Possible values:
    33: Normal file read
    34: Normal file write or deletion
    A6: Read file with filter (operating system command)
    A7: Write to a file with filter (operating system command)
    File name: Name of the operating system file. Here, you can restrict the accessible files.

    I think securiing the file path using SPTH table and S_PATH authorization object still make sense as an additional level of security check. Not sure if I am complicating things but seems to me these basic steps needs to be taken care of -
    1. OP should find the file path where sensitive data would reside ..for  example say /tmp/sensitive_files
    2. Update table SPTH with this path and SAVEFLAG as X and FSBRGRU as the authorization group named for these files.
    3. Make sure t-codes that can update tables are restriced in Production such as SM30 / SE16 / SE17 so that nobody can
        change this table. Again restricting S_TABU_DIS as well.
    4. Controlling the programs that have ability to read and write to these sensitive files by using S_DATASET object by updating the
        field for program name and file path for the sensitive files in this object.
    5. Giving access to S_PATH and S_DATASET to users who really need to have access to this file path and programs that can access these files. 
    S_PATH will help because suppose some previous security administrator has given S_DATASET object in any role with Wild card access but without S_PATH they still will not be able to update the file.
    > "What happens when the program lets the user define the directory path for the inbound file, and another lets the user define the directory path for reading the dataset?"
    >
    The following setting restrict ABAP programs to access any files on the application server apart from those in the path u2018(/tmpu2019).
    PATH       SAVEFLAG         FS_NOREAD      FS_NOWRITE     FSBRGRU
            *       BLANK              X                                  X                              BLANK
           /tmp       BLANK          BLANK             BLANK                                BLANK
    So technically you can control paths which can be accessed by the ABAP programs.
    Edited by: Nishant Sourabh on Sep 13, 2010 10:48 PM
    Edited by: Nishant Sourabh on Sep 13, 2010 10:50 PM

  • DW is creating tmp files when saving files

    When trying to save a file on a site using DW we are getting
    a Access to G:\xxxxxx\MFCA43.tmp was denied. We were trying to save
    another file but DW is creating a sequential .tmp file everytime we
    try to save a file.
    Any ideas????

    Did you get any answers to your post? I have the same problem
    but can't find a solution.
    12/19/2007 05:02:12 PM
    When trying to save a file on a site using DW we are getting
    a Access to G:\xxxxxx\MFCA43.tmp was denied. We were trying to save
    another file but DW is creating a sequential .tmp file everytime we
    try to save a file.
    Any ideas????

  • Not Working: BlackBerry Link Remote File Access Remove Old BlackBerry from BB ID

    I have: removed my blackberry q10 from blackberry link, wiped my q10, uninstalled and reinstalled blackberry link, have link version 1.1.1.32, blackberry q10 os version 10.1.0.2309 - which whenever I plug in the q10 after removing the device from link, says there is an os update, so I update it, and then it does nothing apart from rebooting the q10, or gives an error saying 'updates not available. Please check internet connection and retry.'.
    Also, I have Logout/login on blackberry link, I know my q10 is activated as I have purchased items from app world, and on the computer the app world site shows that I have a q10 when I sign in. I am using the same BBID and have changed the password on my q10 to see if that made a difference, then signed out and back into link on computer with updated password. I have administrator rights on my computer.
    I can access the q10 from my computer over the same wifi network, and it syncs files fine with wireless sync turned on. It is remote file access not giving the option to connect to my q10. 'BBID *email* isn't associated with a device running Blackberry 10 OS or an error occurred when trying to retrieve your information from the Blackberry ID servers.'
    The problem is that although I have the same blackberry id for link and my q10, no devices show up on the remote file access screen, and I cannot access my files on my computer from my q10, yet I can sync them on my computer over the wifi network. How can I enable Remote File Access?
    A problem could be that I have a Curve 9300 on my BB ID account, so if I could disable this (which I have no idea how to do after a lot of research), this might rectify why link cannot set up remote file access.
    What I haven't done is wiped my q10 and uninstalled all user data from link at the same time, as then I would have to manually reload everything on my q10.
    My q10 shows my computer in the settings\blackberry link\paired devices ,  but I 'cannot view files on *computer*'. Also, link does not show in the file manager. I set up my q10 as a permanent link not a one-off connection.

    No one cares because it's not a z10 (I know because I am having the same problem and no one knows how to fix it and no threads for q10 fix)
    Slàinte.
    Not all things are good.
    Not all things are evil.
    But with an open mind...
    You can see the difference.
    Knowledge is power.

  • Read-only file access from network volume

    I get an read-only file access from network volume problem while sharing a drive from Snow Leopard to a Tiger install. Most of files were opening well, but *.fp7 (FileMaker) and *.xls (Excel) files won't open dealing with a read-only error.
    As descibed in the last post of http://discussions.apple.com/thread.jspa?threadID=1406977 the client have the same share name of the server. Renomming it resolved the error!
    Thanks!

    right then, as it looks like I'm talking to myself....
    I have just wiped clean the Macbook Pro.
    I installed Leopard from scratch, then installed Office 2008.
    Logged back onto the network share, and the read-only error came up again, ONLY in Excel.
    bugger.
    Did the same thing with my Macbook and all is fine.
    Copy the file to the local hard drive, opens ok.
    I then copied the file to another Mac on the network.
    mmmm, opens fine.
    what's the difference....
    mmmm, the machine it opens fine from is running 10.4
    the machine which hosts all the data is running 10.3.9
    could this be the problem.
    Just done a software update check on the 10.3 machine and there are some security updates that need doing.
    Going to run that now and see what happens, otherwise I think the iMac running 10.3.9 is going to need to come up to 10.4 and fingers crossed this will solve it.

  • Excel automatically create .tmp file when open after close Excel, tmp file still there

    Anytime I save a change to one of my Excel files, the TMP file appears in the destination folder and remains.  The "main" Excel file
    saves the retains the changes that I made and after each subsequent change, a new TMP file is created...old TMP files are not deleted.  This is only happening with Excel files.

    Hi,
    From your description, I understand that  you want .tmp file disappear . If there is any misunderstanding, please feel free to let me know.
    This issue can be related to many factors.
    First,  try to check out file->save-> Save autorecover information, if you use Excel 2010.
    If the problem persists, it may be a permissions problem.
    Take ownership of the related file
    =============
    1.      In the "Start" menu, locate "Command Prompt". Right-click and choose "Run as Administrator".
    Note:  If you are prompted for an administrator password or confirmation, type the password or provide confirmation.
    Note 2: In Windows XP, click Start >Run, type cmd and press Enter.
    2.      Type the following commands, then press "Enter" to execute them one by one. Please note the space before the command and its parameter.
    takeown /f  <path>\<file name>
     cacls <path>\<file name> /G administrators:F
    3.      Restart the computer to check the issue.
    More references:
    http://support.microsoft.com/kb/308421
    If all user has full control rights , the .tmp file still in the folder ,please clean the virus .
    You could try disabling this program to see if the problem goes away.
    Please take your time to try the suggestions and let me know the results at your earliest convenience. If anything is unclear or if there is anything I can do for you, please feel free to let me know.

  • Acrobat 8 professional causing recovered tmp files in trash

    I have recently done a clean install of CS3 including Acrobat Pro. I'm getting an occasional bouncing of the Acrobat program icon in the application doc. It acts as if it wants attention, but when you click on it its just open and has no warnings. This is really annoying having to baby sit the app by clicking on the app icon.
    Anyway, I'm also getting strange system performance issues. I'll restart and there will be recovered files in the trash. They are all acr1234567.tmp files. They look like Acrobat temp files.
    Anyone have any ideas?
    Mac/IntelDuo2.4/2GB/10.5.5
    Much appreciated!
    Evan

    Upgrade to 8.1.1 the 8.1.2 should stop the bounce.

  • Sql agent job getting file access denied error

    I'm not sure if this question belongs in this forum. Please move it if you want to.
    Here is my question. I have an ssis package that is running into an error at the file system task trying to move a file. The package is deployed to the catalog and I am running the package using the stored procedure
    [SSISDB].[catalog].[start_execution] @execution_id
    When I execute this stored proc in Management Studio while logged in under a sysadmin, everything works fine. But when I call the same TQL in SQL Agent job, I get a file access denied error. This has something to do with the id that is getting used
    to run the package and I am not sure how to track that down. Any help would be appreciated.
    I've check the windows permission on both the id that is running the SQL Agent and SQL SSIS Service. Both seem to have the right windows permission.

    Please see:
    http://support.microsoft.com/kb/918760

  • Why does Flashplayer for Firefox create 1000's of FAP####.tmp files and never cleans then up?

    Version Info
    FlashPlayer Plugin version: 11.9.900.117 (and many version before)
    Firefox version                   : 24.0 (and many versions before)
    Windows Version               : Windows 7-SP1
    Directory of Files               :  C:\Windows\Temp
    Details
    I noticed this started all of a sudden over the last year or so, when my virus scans started taking longer and longer and more and more files were being scanned even though no windows updates were done to the computer and regular windows cleanups (Administrative tools->Free Up disk space app) were performed. Before that it was fine.
    It doesn't happen right away. It happens after many web browsing sessions (may take several hours to reproduce) of opening and closing the Firefox web browser and browsing a lot of Flash based websites. Once it starts every single website that contains a flash player object cause the files to occur (In other words, it's fine for a while and then all of a sudden it starts, even if you restart Firefox).
    There is 1 file for every flashplayer object on the page (example: 2 flashplayer items cause 2 FAP####.tmp files to be generated). The only way to stop this (temporarily) is to reboot the computer (I only reboot about once a week and use hibernate during the week).
    I had over 3500 of the randomly numbered files in the windows temp dir and the windows cleanup doesn't recognize these files as candidates to remove (I guess because they are application specific files). So I have to keep a Windows Explorer session open in Win Temp dir to periodically remove the files.
    I did google this and found this has been going on here and there for a few years. There were various discussions about uninstalling/reinstalling Firefox and the flashplayer and then people claim it didn't work and started again after some period of time.
    I also found a website that said this was caused by some protected mode the flash player is running now. They gave instructions on how to turn off the protected mode, but I've been hesitant to do this, due to some of the protections that were described and was afraid I'd be leaving myself open to viruses or other attack.
    Why is the flashplayer generating these files?
    Why isn't flashplayer cleaning up after iteself and forcing me to clean up thousands of files manually?
    why doesn't Adobe manage this properly once and for all, considering how long it's been going on?
    I would appreciate any thoughts on this issue.
    Thanks.

    Can you post back here a screenshot from this issue?

  • MaxDB KNLDIAG file access denied

    Hi,
    I'm a DBA recently assigned to support MaxDB database (ver 7.6) used by
    SAP Content Server in our windows 2003/32 bit environments.
    Initially, our windows support group granted the DBA group access to
    the files on E:\sapdb\data\wrk\CD1 where the KNLDIAG and other files
    are allocated. We were able to view the KNLDIAG file when errors
    occurred.
    However, when the database instance is placed offine and back online,
    we loose access to the KNLDIAG file, but not the other files on the
    same directory/subdirectory.
    Can you explain what is happening?
    Is MaxDB doing something behind the scenes?
    What can be done so that we don't loose access to this file?
    I would appreciate any help you can provide.
    Regards,
    Bill

    Hi Bill!
    > I'm a DBA recently assigned to support MaxDB database (ver 7.6) used by
    > SAP Content Server in our windows 2003/32 bit environments.
    > Initially, our windows support group granted the DBA group access to
    > the files on E:\sapdb\data\wrk\CD1 where the KNLDIAG and other files
    > are allocated. We were able to view the KNLDIAG file when errors
    > occurred.
    > However, when the database instance is placed offine and back online,
    > we loose access to the KNLDIAG file, but not the other files on the
    > same directory/subdirectory.
    >
    > Can you explain what is happening?
    Yes, no problem!
    > Is MaxDB doing something behind the scenes?
    Of course not - it's well documented
    Unlike Oracle MaxDB does not use the same file all the time to write out the error messages.
    Instead, with every restart the last file 'KLNDIAG' (and/or 'KNLMSG'  in more recent versions) is renamed to 'KNLDIAG.OLD'. If there is already an 'KNLDIAG.OLD' this file is gone afterwards.
    Then a new file is 'KNLDIAG' is created by the MaxDB Kernel with the default permission of the folder.
    Usually these are dictated by the Windows account that runs the MaxDB-Service.
    If you did not change this, this would be the "local systemaccount".
    On my test system this results in default permissions that allow members of "Adminstrators", "Backup Operators", "System" and of course the "Owner/Creator" to access the file.
    > What can be done so that we don't loose access to this file?
    Simple: if you want to access it via OS tools, make sure that the user is a member of the "Administrators" or the "Backup Operators" group.
    If you don't want to do that, just use the file access via the DBMGUI or DB Studio (or DBMCLI) to get access to the file.
    regards,
    Lars
    p.s.
    Maybe you didn't notice that by now - the KNLDIAG file is not simply written at the end of the file, but consists of a startup header part and a body which is cyclically overwritten.
    For any newbies I cannot overstate the importance of reading the documentation [http://maxdb.sap.com] and/or get a training for it (SAP course ADM 515 really pays of here...)

  • Server 2008r2 and windows 7 pro slow to no networkshare file searching and file access (green progress bar)

    we are running a windows server 2008r2 sp1 domain controller and a 3com gigabit switch to which 7 windows 7 pro computers are connected. We are only using the windows server to distribute a few printers and as a network share (z drive).
    we are storing all files (word documents only) centrally on the server (z share), and files are accessed and written to the z share.
    Problem is that file access from the z share on the windows 7 client computers is at best buggy. we are able to browse the z-share, but as soon as we want to search the z-share for files (f.i. use file explorer with "content: memorandum") the green
    progress bar shows and no search is performed. something like alphabetically sorting a directory on map/file name on the z-share also shows a green bar with no sorting. manually going to the files works.
    One thing i noticed, sometimes not all files that one user created and stored on the server is visible and can be found by another user. I prefer to disable all offline file caching setting, because that feature is not used. no files should be made accessible
    offline. i don't know where to change that on the server side. 
    I am reluctant to experiment on the server end (2008r2 sp1), so i tried a few suggested solutions on the client end (windows 7 client)
    I tried disabling offline file caching
    i tried properties (z share) ==> advanced and map optimizing and several options there
    i tried disabling the smbv2 protocol and disabling the smbv1 protocol (using
    sc.exe config lanmanworkstation depend= bowser/mrxsmb10/nsi command etc. posted by microsoft)
    i tried disabling windows defender
    i tried accessing the z share via ip and server name (the share is mapped via its servername, e.g. dennis-dc1\share). still the same
    file searching on the clients c drive ('own harddrive') works much better, file searching on the server also works.
    any suggestions or solutions that i can test on the client side, as mentioned i am reluctant to change something on the server side. if a solutions works, i prefer to change it on the server side.

    Hi,
    The issue could be due to windows indexing service taking long time in sorting and searching in mapped drives. Please try the steps belwo to disable windows indexing service or search service on the windows 7 client to resolve the issue.
    You can click on Start and select Control Panel, click on
    Programs and Features, go into the Turn Windows Features on or off section Scroll down the list and uncheck the box next to Indexing Service or Windows Search.
    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]

  • Problem with file access in other computer in jsp

    I have problem with file accessing in other computer in jsp.
    The follow code
    File folder=new File("Z:"+File.separator+"sharefolder");//Z is a net share driver
    File[] files=folder.listFiles();
    System.out.println("test");
    System.out.println("length="+files.length);
    will throw exception at the second print.
    but it works well in main funtion.
    Is anybody know what is the problem.
    JSP works on windows2003 server,tomcat 5.0.28 JDK1.4 net share folder on windows2000 server

    no error code for this.But when I start tomcat I get the follow error.
    java.lang.IllegalArgumentException: Document base Z:\ does not exist or is not a readable directory
         at org.apache.naming.resources.FileDirContext.setDocBase(FileDirContext.java:138)
         at org.apache.catalina.core.StandardContext.resourcesStart(StandardContext.java:3910)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4138)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
         at org.apache.catalina.core.StandardHostDeployer.addChild(StandardHostDeployer.java:903)
         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:585)
         at org.apache.commons.beanutils.MethodUtils.invokeMethod(MethodUtils.java:216)
         at org.apache.commons.digester.SetNextRule.end(SetNextRule.java:256)
         at org.apache.commons.digester.Rule.end(Rule.java:276)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1058)
         at org.apache.catalina.util.CatalinaDigester.endElement(CatalinaDigester.java:76)
         at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1567)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:488)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:863)
         at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:483)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:427)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
         at org.apache.catalina.core.StandardService.start(StandardService.java:480)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         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:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    Jun 5, 2006 6:55:41 PM org.apache.catalina.core.StandardContext start
    SEVERE: Error in resourceStart()
    Jun 5, 2006 6:55:41 PM org.apache.catalina.core.StandardContext start
    SEVERE: Error getConfigured
    Jun 5, 2006 6:55:41 PM org.apache.catalina.core.StandardContext start
    SEVERE: Context startup failed due to previous errors
    Jun 5, 2006 6:55:41 PM org.apache.catalina.core.StandardContext start
    SEVERE: Exception during cleanup after start failed
    LifecycleException: Container StandardContext[msgstore] has not been started
         at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4466)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4371)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
         at org.apache.catalina.core.StandardHostDeployer.addChild(StandardHostDeployer.java:903)
         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:585)
         at org.apache.commons.beanutils.MethodUtils.invokeMethod(MethodUtils.java:216)
         at org.apache.commons.digester.SetNextRule.end(SetNextRule.java:256)
         at org.apache.commons.digester.Rule.end(Rule.java:276)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1058)
         at org.apache.catalina.util.CatalinaDigester.endElement(CatalinaDigester.java:76)
         at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1567)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:488)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:863)
         at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:483)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:427)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
         at org.apache.catalina.core.StandardService.start(StandardService.java:480)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         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:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)

  • File access to /res folder before decompression

    Hi, anyone please assist on how i would access a compressed text file in the /res folder before I can decompress it. I also need to know if its possible to create a file since the decompression algorithm creates a new decompressed file. The following code runs on a computer but I need to use it in the J2ME platform by calling it from the midlet class. Any assistance will be highly appreciated:
    import java.io.*;
    import java.util.*;
    public class Decompress{
    final static int MAX_CODES = 4096;
    final static int BYTE_SIZE = 8;
    final static int EXCESS = 4;
    final static int ALPHA= 256;
    final static int MASK = 15;
    static int [] s;
    static int size;
    static Element [] h;
    static int leftOver;
    static boolean bitsLeftOver;
    static BufferedInputStream in;
    static BufferedOutputStream out;
    private static void setFiles(String[] args) throws IOException{
    String inputFile, outputFile;
    if(args.length >= 1){
    inputFile = args[0];
    if(!inputFile.endsWith(".lzw")){
    System.out.println("The filename must end with \"lzw\" extension");
    System.exit(1);
    in = new BufferedInputStream(new FileInputStream(inputFile));
    outputFile = inputFile.substring(0, inputFile.length()-4);
    out = new BufferedOutputStream(new FileOutputStream(outputFile));
    else{
    System.out.print("usage:java Decompress <filename>");
    System.exit(1);
    private static void output(int code)throws IOException{
    size = -1;
    while(code>=ALPHA){
    s[++size]=h.suffix;
                code = h.prefix;
    s[++size]=code;
    for(int i=size; i>=0; i--)
    out.write(s);
    private static int getCode() throws IOException{
    int c = in.read();
    if(c == -1)return -1;
    int code;
    if(bitsLeftOver)
    code = (leftOver<<BYTE_SIZE)+c;
    else{
    int d = in.read();
    code = (c<<EXCESS)+(d>>EXCESS);
    leftOver = d&MASK;
    bitsLeftOver = !bitsLeftOver;
    return code;
    private static void decompress() throws IOException{
    int codeUsed = ALPHA;
    s = new int[MAX_CODES];
    h = new Element[MAX_CODES];
    int pcode = getCode(), ccode;
    if(pcode>=0){
    s[0] = pcode;
    out.write(s[0]);
    size = 0;
    do{
    ccode = getCode();
    if(ccode<0)break;
    if(ccode<codeUsed){
    output(ccode);
    if(codeUsed<MAX_CODES)
    h[codeUsed++] = new Element(pcode, s[size]);
    else{
    h[codeUsed++] = new Element(pcode, s[size]);
    output(ccode);
    pcode = ccode;
    }while(true);
    out.close();
    in.close();
    public static void main(String [] args) throws IOException{
    setFiles(args);
    decompress();

    if(messageNotWellFormatted("File access to /res folder before decompression"){
      retry();
    }else{
      answerTo(post.getProfile());
    }retry with the formatting tips !!!!!

Maybe you are looking for

  • How to repeat output billing documents

    Hi Guru; How to repeat output billing documents ; because after VF04 maintain billing due list, all intercompany billing doucments can not be printed throught our local printer. We are using Biling type as intercompany billing and output as print. Re

  • Upgrade CFM and CML from 4.7 to ECC 6.0 Version

    Dear all, We have to Upgrade our customer installation since 4.7 to ECC 6.0. Nowadays they use CFM and CML in 4.7. We wanted to know if the Upgrade of this functionalitty could be consider just as a Technical Upgrade or we need to implement new funct

  • Making custom Live CD of Arch 2012.04.23

    Hello, I would like to have my custom Arch CD which would by able to boot into system. Something similar like CtkArch (http://ctkarch.org/) The problem is that I really cannot find any good tutorial which would work now, as far as could understand be

  • I-Frame Only MPEG in premiere pro cc

    please help........ I dont have I-Frame Only MPEG preview file format in sequence settings. It is set to Microsoft AVI. I want to set it to I-Frame Only MPEG.

  • Undo 'add sender to address book' ?

    Hi I just accidentally added a whole load of people to my Address Book unintentionally From Mail, I had a whole bunch of emails selected (100+) and chose 'Add sender to Address Book' by mistake (I intended just to add one of them). So my question is