Apple spamtrainer script vs. TopicDesk Spamtrainer

Going over the mail server logs trying to troubleshoot a bit more and noticed this lil tidbit:
1/28/09 12:22:43 PM com.apple.updatesa[30314] config: configuration file "/tmp/.spamassassin30314LpphMTtmp/20_****.cf" requires version 3.002001 of SpamAssassin, but this is code version 3.002005. Maybe you need to use the -C switch, or remove the old config files? Skipping this file at /Library/Perl/5.8.8/Mail/SpamAssassin/Conf/Parser.pm line 372.
We are using TopicDesk's SpamTrainer script so I think this is one to ignore (also followed their tutorial to update SA)... but I am just tossing out to check with the community.
Thanks!

This has nothing to do with spamtrainer. You seem to have a mix of old and updated SpamAssassin versions installed.
Re-do the Spamassassin installation. When you get to "sudo perl Makefile.PL" skip the command and instead issue:
sudo make clean
sudo perl Makefile.PL PREFIX=/usr
then continue the tutorial as is.
(If you still have the source directory, simply cd into it and start at "sudo make clean".)
HTH,
Alex

Similar Messages

  • Add xml Tags in Indesign CS4 by Apple/Java script

    Hi,
    All, I'm new to Indesign Scripting, and I'm hoping someone can help me with the following add xml tags in my xml indesign cs4 files.
    I have IDML (ETMV2) xml Indesign CS4 files. But i have lots of powermath equation without xml tags. So i want how i can insert xml tags.
    My probleam like this =>
    <no open xml tags>[&x^{2}+y_{3}&]<no close xml tags>
    I want like this (But i do manualy)
    <inlineequation><inlinemediaobject><textobject role="xpressmath">[&x^{2}+y_{3}&</textobject></inlinemediaobject></inlineequation>
    Can anyone write/suggest me how i can add xml Tags. By Apple/Java Script
    Any insight is appreciated!
    snegig

    Hi,
    John Hawkinson thank you so much your suggestion.
    I am new  this type of discusion (on this page). So i think anybody could not replay my answer. So i repost my question.
    I want insert tags in my Indesign CS4 files. Is this posible when i select my powermath equaiton then run script. Script add tags automatically before/after my equation. Please ignore IDML word.
    Yes i an comfortable with XSLT presently i working with Pearson ETMV2.
    I have one more question when i past my snapshot its appear properly but when i agin see my commant then my snapshot disappear (see small blue rectangle).
    Thank you John again i am new in this industry please guide.
    snegig

  • Add xml Tags by Apple/Java script

    Hi,
    All, I'm new to Indesign Scripting, and I'm hoping someone can help me with the following (add xml) problem.
    Can anyone write/suggest me how i can add xml tags. By Apple/Java Script
    My Probleam =>
    [&x+2, y+3&]
    Solution => (But its manual)
    <inlineequation><inlinemediaobject><textobject role="xpressmath">[&x+2, y+3&]</textobject></inlinemediaobject></inlineequation>
    I want add xml tags on my powermath equaiton. Its ETMV2 xml tags.
      Any insight is appreciated!
    Thank you so much
    snegig

    Hi John,
    (1) Without xml tags my InDesign file
    (2) After add tags my file (its manually)
    Is this any script when i select my power math equation data then add xml tags automatically
    Thank's any suggestion

  • Apple's (wireless) Mighty Mouse throwing fits

    Not sure how to pinpoint the origins of this fault, but it all started about the same time as the 10.5.1. Update.
    Some 0.5-1 hours in computer usage, the mouse would lose the left button and/or scrolling functionality (while maintaining maneuverability), and trackpad & click would work fine.
    Am already patched to the absolute latest Software Update (which by the way, still gives me the ocassional "suspended 1st key press problem" which was purportedly solved by the patch.. well... not quite Apple

    I am not familiar, either, with Apple's scripting tools. I find it somewhat odd that a simple option like configuring a button to double-click was not included by Apple in its spiffy BT MightyMouse, and that one has to purchase a shareware application to be able to have that configuration.

  • Almost there with a folder & file renaming script

    Hi all,
    I have been trying to write a script that will replace text in every file and folder from given folder, and all of its subfolders and files.
    I have manage to tweek the apple supplied script to rename all files but it keeps crashing when it renames a folder. I am guessing it is because if the parent folder gets renamed all the aliases to the other folders are broken?
    Can anybody please help, I'm sure this script would be of use to many people!
    Here is the script as it stands now
    try
    tell application "Finder"
    set source_folder to choose folder with prompt "Select folder to rename files in:"
    end tell
    end try
    tell application "Finder"
    display dialog "Search and replace in:" buttons {"File Names", "Folder Names", "Both"} default button 3
    set the search_parameter to the button returned of the result
    end tell
    repeat
    tell application "Finder"
    display dialog "Enter text to find in the item names:" default answer "" buttons {"Cancel", "OK"} default button 2
    set the search_string to the text returned of the result
    if the search_string is not "" then exit repeat
    end tell
    end repeat
    repeat
    tell application "Finder"
    display dialog "Enter replacement text:" default answer "" buttons {"Cancel", "OK"} default button 2
    set the replacement_string to the text returned of the result
    if the replacement_string contains ":" then
    beep
    display dialog "A file or folder name cannot contain a colon (:)." buttons {"Cancel", "OK"} default button 2
    else if the replacement_string contains "/" then
    beep
    display dialog "A file or folder name cannot contain a forward slash (/)." buttons {"Cancel", "OK"} default button 2
    else
    exit repeat
    end if
    end tell
    end repeat
    tell application "Finder"
    display dialog "Replace “" & the search_string & "” with “" & the replacement_string & "” in every item name?" buttons {"Cancel", "OK"} default button 2
    end tell
    tell application "Finder"
    set a to every folder of entire contents of source_folder
    repeat with aa in a
    -- looping within folders of selected source folder
    set aastring to aa as string
    set all_files to (every file in aa)
    repeat with ff in all_files
    -- looping within the files for the current folder
    set this_item to ff
    set this_item to (this_item) as alias
    set this_info to info for this_item
    set the current_name to the name of this_info
    set change_flag to false
    if the current_name contains the search_string then
    if the search_parameter is "File Names" then
    set the change_flag to true
    else if the search_parameter is "Both" then
    set the change_flag to true
    end if
    if the change_flag is true then
    -- replace target string using delimiters
    set AppleScript's text item delimiters to the search_string
    set the textitemlist to every text item of the current_name
    set AppleScript's text item delimiters to the replacement_string
    set the newitemname to the textitemlist as string
    set AppleScript's text item delimiters to ""
    my setitem_name(thisitem, newitemname)
    end if
    end if
    end repeat
    -- now we have renamed all the files lets rename the folder
    set this_item to aa
    set this_item to (this_item) as alias
    set this_info to info for this_item
    set the current_name to the name of this_info
    set change_flag to false
    if the current_name contains the search_string then
    if the search_parameter is "Folder Names" then
    set the change_flag to true
    else if the search_parameter is "Both" then
    set the change_flag to true
    end if
    if the change_flag is true then
    -- replace target string using delimiters
    set AppleScript's text item delimiters to the search_string
    set the textitemlist to every text item of the current_name
    set AppleScript's text item delimiters to the replacement_string
    set the newitemname to the textitemlist as string
    set AppleScript's text item delimiters to ""
    my setitem_name(thisitem, newitemname)
    end if
    end if
    end repeat
    end tell
    beep 2
    on setitem_name(thisitem, newitemname)
    tell application "Finder"
    --activate
    set the parentcontainerpath to (the container of this_item) as text
    if not (exists item (the parentcontainerpath & newitemname)) then
    try
    set the name of this_item to newitemname
    on error the error_message number the error_number
    if the error_number is -59 then
    set the error_message to "This name contains improper characters, such as a colon (:)."
    else --the suggested name is too long
    set the error_message to error_message -- "The name is more than 31 characters long."
    end if
    --beep
    tell me to display dialog the error_message default answer newitemname buttons {"Cancel", "Skip", "OK"} default button 3
    copy the result as list to {newitemname, button_pressed}
    if the button_pressed is "Skip" then return 0
    my setitem_name(thisitem, newitemname)
    end try
    else --the name already exists
    --beep
    tell me to display dialog "This name is already taken, please rename." default answer newitemname buttons {"Cancel", "Skip", "OK"} default button 3
    copy the result as list to {newitemname, button_pressed}
    if the button_pressed is "Skip" then return 0
    my setitem_name(thisitem, newitemname)
    end if
    end tell
    end setitemname
    Message was edited by: James @ Hakoona

    Hmmm, that script is definitely a bit old.
    An alias will still refer to the same file or folder, even if renamed. Your script does not crash on my machine, but the list of folder items to rename is empty. You are doing a lot more work than you really need to - you can just tell the Finder to get a list of file or folders so you don't have to do all that looping. By the way, you do not need the Finder to display the dialogs - normally an application tell statement should just contain terminology for that application (i.e. commands specific to the application).
    The following script replaces your loops through the files and folders with statements that just get all of the files or folders (or both). I also renamed the buttons so that their names/selection can be used elsewhere, such as some of the dialogs.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #DAFFB6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    set source_folder to choose folder with prompt "Select a folder to rename files in:"
    display dialog "Search and replace text in the names of every:" buttons {"file", "folder", "file and folder"} default button 3
    set search_parameter to button returned of the result
    repeat
    display dialog "Enter the text to find in " & search_parameter & " names:" default answer "" buttons {"Cancel", "OK"} default button 2
    set search_string to text returned of the result
    if search_string is not "" then exit repeat
    end repeat
    repeat
    display dialog "Enter the replacement text:" default answer "" buttons {"Cancel", "OK"} default button 2
    set replacement_string to text returned of the result
    try
    if replacement_string contains ":" then error "colon (:)."
    if replacement_string contains "/" then error "forward slash (/)."
    exit repeat
    on error error_message
    beep
    display dialog "A file or folder name cannot contain a " & error_message buttons {"Cancel", "OK"} default button 2
    end try
    end repeat
    display dialog "Replace “" & search_string & "” with “" & replacement_string & "” in every " & search_parameter & " name?" buttons {"Cancel", "OK"} default button 2
    tell application "Finder"
    try
    if search_parameter is "file" then
    set item_list to files of entire contents of source_folder
    else if search_parameter is "folder" then
    set item_list to folders of entire contents of source_folder
    else -- both
    set item_list to entire contents of source_folder
    end if
    on error -- no items
    set item_list to {}
    end try
    if class of item_list is not list then set item_list to {item_list} -- single item
    repeat with this_item in item_list
    set current_name to the name of this_item
    if current_name contains the search_string then
    -- replace target string using delimiters
    set AppleScript's text item delimiters to search_string
    set text_item_list to text items of current_name
    set AppleScript's text item delimiters to replacement_string
    set new_item_name to text_item_list as text
    set AppleScript's text item delimiters to ""
    my set_item_name(this_item, new_item_name)
    end if
    end repeat
    end tell
    beep 2
    on set_item_name(this_item, new_item_name)
    tell application "Finder"
    --activate
    set the parent_container_path to (the container of this_item) as text
    if not (exists item (the parent_container_path & new_item_name)) then
    try
    set the name of this_item to new_item_name
    on error the error_message number the error_number
    if the error_number is -59 then
    set the error_message to "This name contains improper characters, such as a colon (:)."
    else --the suggested name is too long
    set the error_message to error_message -- "The name is more than 31 characters long."
    end if
    --beep
    tell me to display dialog the error_message default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
    copy the result as list to {new_item_name, button_pressed}
    if the button_pressed is "Skip" then return 0
    my set_item_name(this_item, new_item_name)
    end try
    else --the name already exists
    --beep
    tell me to display dialog "This name is already taken, please rename." default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
    copy the result as list to {new_item_name, button_pressed}
    if the button_pressed is "Skip" then return 0
    my set_item_name(this_item, new_item_name)
    end if
    end tell
    end set_item_name
    </pre>

  • Shell scripts do not run anymore; problems after 10.7.3?

    Hello all,
    latley all my shell scripts broke and they do  not run anymore. I suspect 10.7.3 to broke all the scripts. My scripts  used to work fine and I had no issues. I guess it started after  updateing to 10.7.3 and now I got a error as following:
    -bash: ./CamSendEmail.sh: /bin/bash: bad interpreter: Operation not permitted
    This is usually as the first line in my script is and ever was #!/bin/bash. If I do just remove the line, I am getting an error as following:
    -bash: ./CamSendEmail.sh: Operation not permitted
    Please  note, that the scripts name is "CamSendEmail.sh" and that this is just  an example. All my scripts are affected. At this point I need to say  again, that the scripts work basicly fine till a short time ago.
    Of  cause, the user who runs the scripts has the permission to run the  script. It is a standard user and it ever was. I did not touch the  scripts nor their permissions. The only change I am aware of is updating  to 10.7.3.
    I did a test and cut'n'pasted the  entire content of a not running script into a blank new file. The new  file did work! The only differences between those 2 files are now some  file system permission, I do actually not know yet:
    -rwxr--r--+ 1 james  staff  265 Feb 13 19:50 CamSendEmail.sh
    -rwxr--r--@ 1 james  staff  265 Feb 13 19:40 CamSendEmail.sh.orig
    Note, that *orig does not work, while *sh does. I could not find an information about the meaning of a + and the @ in the output of ls -al. But whatever it is, I wonder how this can be influenced by 10.7.3 ...(?) Can anyone shade a little light on that?
    I  will keep on searching for information about + an @, but since this is  somehow urgent to me, I decided to first start this posting ...
    Thx for your help on that!

    I did some research and learned the the + and the @ are indicating extented attributes which can be managed using the xattr command. I played a little bit with it, and found out that my scripts had the following extended attribute for some reason
    com.apple.quarantine
    I deleted it using xattr -d com.apple.quarantine script.sh and the script worked again. This is one point.
    What still drives me nuts, is the fact that this attribute was set without any interaction of me. Does anyone know if Apple has build in some new security stuff with 10.7.3? Or is this just accidential and some other action, which I am not aware of, has changed or added the extended attributes?
    I realy would like to have that clarified. My scripts are part of an automated process and it took some days till I noted that this process does not work anymore, which resulted in data loss. I was happy that those days data was not very important. Now I am afraid that this may happen again any time :-(
    Thx again!

  • Problem with Script Debugger Trial Version 4.5

    Hi,
    I recently downloaded the trial version of Late Night Software's Script Debugger and used it to debug a script I had created in Apple's Script Editor. Now, whenever I have a script in the Apple editor and I hit the run button, Script Debugger launches. If I don't click the trial button, but instead quit Script Debugger, the window with my script in Script Editor freezes, and I have to force quit from Script Editor. So basically Script Debugger has hijacked all my Applescripts. When I go into the info window and change the open with to Script Editor, it still doesn't work. I also notice that Script Debugger is listed with "(default)" next to its name, and also the "Use this application to open all documents like this." is now grayed out.
    Has anyone had this happen to them and have you found a solution?
    I've sent Late Night Software an email message, and I've also called their toll free number in Canada. But unless anyone's had experience with this and has a solution, I would strongly suggest that you avoid downloading their software.
    Message was edited by: Zoar

    Hi Simon,
    Thanks for the advice. I did try that, and initially the "Enable Debugging" was grayed out, so I thought I was sunk. But I may have been doing it with the script still in Script Editor. However, I did what you said, and it appears your suggestion has done the trick.
    Regards,
    Zoar

  • I am trying to install a program on my Mac and the Automator is interfering....can it be overridden or disabled?

    I purchased a program from a trusted website and was able to download it....however when I try to install it I get an "Apple Run Script Error"....the support team for the web site thinks it is Automator....so not sure how to get around this....anyone out there can help? Would be greatly appreciated.

    Well there's not enough info to even guess beyond what I previously posted.
    My only "judgement" here is that whatever program you are using has questionable tech support if all they say is "it's Automator" and offer no further assistance as to why their program doesn't work on your machine and aren't even curious.

  • I have kernel panic too! but for a different reason...

    hey all
    my macbook has recently started experiencing kernel panic and i cant figure out why.
    the first time it happened i used disk utility to verify the hard drive. DU said the hard drive needed to be repaired. i tried to boot up from the OSX 10.4 disk that came with my computer, but my computer wouldnt boot. so i booted up from disk warrior instead. i rebuilt the directory, ran the hardware check (no probs reported) and had DW check all files and folders. DW reported one corrupt .plist file. (i have looked at every single .plist file in the folder DW told me to but the corrupt file is nowhere to be found.) however, when i booted up normally and ran disk utility again DU said my hard drive was fine.
    then kernel panic struck again. did a little research and found apple jack. ran all 5 of apple jack scripts and AJ also said all is well.
    kernel panic again. used cleanapp to delete some old programs and empty caches. manually deleted about 80% of .plist files hoping that one of them would be the corrupt one. DW still reports one corrupt .plist file. so i decide to wipe the computer and do a clean install of 10.4. but when i try to open the OSX installer (from the disk that came with my computer) i get a message that says 10.4 cant be installed on this computer... that it isnt compatible. ***?
    more research and this time decide on tech tools pro. run every test TTP has to offer and everything checks out fine.
    so... now i dont know what to do. and my computer just had kernel panic again this morning. i pasted the report from it below. i dont know enough to tell if theres anything in there that explains whats wrong with my computer.
    can anyone out there help me? in the very least can anyone tell me how to get my computer to recognize that it is compatible with 10.4 so i can erase everything and start again?
    bah! this *****. thx in advance for any help you can give...
    (kernel panic report from this morning)
    panic(cpu 0 caller 0x001A49CB): Unresolved kernel trap (CPU 0, Type 14=page fault), registers:
    CR0: 0x8001003b, CR2: 0xeeeeeef2, CR3: 0x00e7e000, CR4: 0x000006e0
    EAX: 0xeeeeeeee, EBX: 0x00001e8b, ECX: 0x03a29988, EDX: 0x000002cd
    CR2: 0xeeeeeef2, EBP: 0x2521bf78, ESI: 0x0000d5eb, EDI: 0x2521bee0
    EFL: 0x00010206, EIP: 0x005a67e3, CS: 0x00000008, DS: 0x00000010
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x2521bcd8 : 0x128d0d (0x3cc65c 0x2521bcfc 0x131f95 0x0)
    0x2521bd18 : 0x1a49cb (0x3d2a94 0x0 0xe 0x3d22b8)
    0x2521be28 : 0x19b3a4 (0x2521be40 0x2ce 0x51 0x19b430)
    0x2521bf78 : 0x13d989 (0x0 0x0 0x2521bfc8 0x39a8fc)
    0x2521bfc8 : 0x19b21c (0x0 0x0 0x19e0b5 0x4a98c14) Backtrace terminated-invalid frame pointer 0x0
    Kernel version:
    Darwin Kernel Version 8.11.1: Wed Oct 10 18:23:28 PDT 2007; root:xnu-792.25.20~1/RELEASE_I386
    Model: MacBook2,1, BootROM MB21.00A5.B07, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), 1.4.4
    Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK2035GSS, 186.31 GB
    Parallel ATA Device: HL-DT-ST DVDRW GWA4080MA
    SCSI Device: SCSI Target Device @ 0
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Hub, Up to 480 Mb/sec, 500 mA
    USB Device: SoundSticks, harman/kardon, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA

    fettered, welcome to Apple Discussions.
    Understanding crash logs isn’t easy and it’s hard (sometimes impossible) to decipher the cause of the problem. Take a look at Apple’s Crash Reporter document at http://developer.apple.com/technotes/tn2004/tn2123.html
    Also look at Tutorial: An introduction to reading Mac OS X crash reports
    http://www.macfixit.com/article.php?story=20060309075929717
    Kernel panics are usually caused by a hardware problem – frequently RAM, a USB device or a Firewire device. What external devices do you have connected? When trying to troubleshoot problems, disconnect all external devices. Do you experience the same problems?
    To eliminate RAM being the problem, Look at this link: *Testing RAM* @ http://guides.macrumors.com/Testing_RAM Then download & use Memtest & Ramber.
    May be a solution on one of these links.
    Mac OS X Kernel Panic FAQ
    Mac OS X Kernel Panic FAQ
    Resolving Kernel Panics
    Avoiding and eliminating Kernel panics
    12-Step Program to Isolate Freezes and/or Kernel Panics
     Cheers, Tom

  • How to use single key to color a message in Mail.app?

    I would like to be able to color code a message's line in the main message summary window by pressing only a single key. In thunderbird, this is accomplished by pressing 1 to 5, each corresponding to a different color.
    Mail.app allows coloring a message, to my knowledge, only by bringing up colors chooser and then selecting a color (by default in a inprecise color wheel).
    How do a make "hot keys" for specific colors?
    thanks

    To answer my own question: Leopard and Mail.app don't suport this directly.
    What works is using Fastscripts Lite to bind application-specific hot keys to some simple applescripts.
    Here is one such script, modeled on an Apple sample script:
    using terms from application "Mail"
    tell application "Mail"
    set selectedMessages to selection
    set selectionCount to (count of selectedMessages)
    repeat with messageNumber from 1 to selectionCount
    set theMessage to item messageNumber of selectedMessages
    set background color of theMessage to green
    end repeat
    end tell
    end using terms from

  • What's YOUR Idea of an "Ideally Organized HD?

    What's YOUR Idea of an "Ideally Organized HD?"
    I've been giving this a lot of thought lately. Whereas it is obvious that OSX organizes your hard drive better than anything on Windoze, especially when you consider the power derived from using Spotlight, I have been wondering exactly WHAT, WHAT does an Ideally Organized Hard Drive look like? What are it's properties? I don't mean how it should look specifically to YOU, the single user. I mean what does an ideally organized Hard Drive look like to everyone running OSX? (which is everyone). What are some of the components of a ideally organized hard drive? What does it look like/feel like? Not necessarily in order of importance, I'll start this one off:
    An Ideally Organized Hard Drive Has These Properties (feel free to add your ideas):
    1) All the music, documents, apps, pictures and movies go into their designated locations, just for starters. You may even want to create another main Category such as I did, and call it "All Talk & Sound FX". Here's where I stick my voice, and talk radio, and verbal jokes etc. for example.
    2) There are NO identical (duplicate) files, but the thorough and profuse use of Alias files are implemented. {{{if you have duplicates, and you update the one, you necessarily have to update the other, otherwise, you don't have duplicates anymore, right? But if you use an Alias, no matter which file, original or Alias, that you update, BOTH files are updated.}}}
    3) The HD is organized for EASY Backup on a daily basis: Everything new gets placed into an "Everything New" file (call it what you want) on the Desktop, then this one folder is backed up daily, saved onto an external HD, then loaded back and now actually saved onto the HD as new stuff just once a week (in accordance to #1); this is the outcome from doing a Restore from this backed-up "Everything New" folder. Everything goes into this "Everything New" folder on a daily basis; however, Applications are installed immediately whereas everything else just gets popped into the "Everything New" folder for holding.
    4) Many files are annotated in the Get Info Window with easy to find key words and comments. Spotlight will do the rest my friends!
    5) A DMG of the HD (a perfect Clone which is achieved using your Tiger Disk--Disk Utility) is done on a weekly basis (heck, all you have to do is launch the software at night, go to bed, have an automatic shutdown on your Mac for about 3.5 hours later (for a 23GB DMG Disk Image)). {{Note that a Restore from the "Everything New" folder must be done first!, prior to making the DMG}} When this Disk Image is made, it will have All of your Preferences, All of your newly installed applications, All of your Bookmarks, All of your new additions to iCal, All of your new Addresses, EVERYTHING, and therefore these specific folders do NOT have to be backed up **separately** by using this process as I describe.
    Once a week you will Restore from this DMG (which takes an hour if you have previously verified/mounted this image), then delete the week-old Backup of the "Everything Folder", because your HD now now has all these files added to it (remember, the key here is to do a Restore from the "Everything New" folder first, before you made the most recent DMG). You can now also delete any old Disk Images that you want, because you will be making more! (I always keep 2 or 3 on hand). You can now also delete any old "Everything New" backups from your External, because you will be making more of these backups as well!
    6) Your Hard Drive should utilize the copious amount of custom icons, in order to quickly spot and identify files/folders.
    7) You have created shortcuts (Alias') on the HD, which point to spots on the External HD, (which is not only used for Backup as recently described) to facilitate the transfer of large files (example: AIFF's) to/from the external HD. My External HD has a working "Powerbook" folder where these files are saved to, keeping my internal HD at a bare minimum of growing size, yet the files are easily uploaded/downloaded between the external and internal, and viewed, when the External is attached (of course) to the internal.
    8) The hard drive lacks any sensitive material whatsoever, i.e. passwords are kept on an external hard drive, and new ones are backed up daily to the Everything New folder. Using a free program such as Password Vault also strengthens this area of security and organization. If the Passwords are kept to an external location, and yet are easily accessed by an Alias, then they are 100% safe to reside on the External, since the External would have to be attached in order for the passwords to be read.
    9) Maintenance is run routinely on the HD, using a program such as Onyx, especially before and after the disk image process. You can also schedule Onyx to run the Apple maintenance scripts automatically, when you are asleep. Also part of this maintenance would be running a program such as Disk Warrior, before and after the disk image process. Onyx and Disk Warrior go hand in hand, and although you will not "see" (visually) HOW your HD has been organized more efficiently, you will experience the benefits of using Disk Warrior (faster/more responsive), which organized your HD Directory automatically.
    10) Another nice little Utility is SpeedTools, which has a great program for Defraging files. Yes, I've found that Disk Defrag does work. Point #10 does nothing for "organizing", however I make this point because Disk Defrag does indeed help your HD to run more efficiently (thus faster).
    *** Ohh by the way, maybe I'm saying the following as a joke, maybe I'm not. But if you follow my suggestions above, you wouldn't be so paranoid about downloading the latest update to Tiger (or Leopard when that comes out) because the old "Archive & Install" option becomes obsolete. If you run into trouble NOW, using my methods, you now have the peace of knowing that you have a perfectly Cloned Disk Image of your valuable, ideally organized Mac HD, residing on an external drive and just waiting to be called into action! ***
    Finally, please note that I am not telling you how to organize your hard drive, I am only suggesting this as one way to do it, and the way that I do it. If you have something totally different from this, but it works for you, please post that. If you want to add to what I've said, go right ahead! But if you don't agree with something I've said, then by all means offer your own suggestion and be civil about it! Thanks!
    ~ Vito

    You and everyone else that takes the time to read, and understand what I said, and can benefit from this, is WELCOME! ; )
    By the way, I forgot to mention. I use "Micon" a little terrific freeware program (from VersionTracker) to make (initialize) my custom icons. I also use Graphic Converter to make my own original icons of anything I like. Don't underestimate the value in making your own custom icons-- they really stand out from the "standard old blue".
    ~ Vito

  • How Do I Catalog or List Everything on a Hard-Drive?

    I'm hoping this is the right category to post this.
    Here is the situation... I have several external drives that contain movies ripped for my Apple TV. Many are nested in specific folders (i.e. Drama, Horror, Classics, etc... as well as by director).
    Is there a utility that I can use to find out (or generate a list of) everything that is on a drive short of manually going into every single folder? Any help appreciated!

    Open a HD in a Finder window (double-click its Desktop icon), put it in list view, CMD+A (to select all), CMDOPTright arrow (to open all subfolders), CMD+A, copy, launch TextEdit, CMDSHIFTT (put it in plain text mode), and CMD+V. Do note that this should preserve the folder and subfolder hierarchy, and will list everything on that HD.
    Alternatively, you could use this Apple provided script to print each folder's contents, including subfolders.
    <script>
    Copyright © 2003 Apple Computer, Inc.
    You may incorporate this Apple sample code into your program(s) without
    restriction. This Apple sample code has been provided "AS IS" and the
    responsibility for its operation is yours. You are not permitted to
    redistribute this Apple sample code as "Apple sample code" after having
    made changes. If you're going to redistribute the code, we require
    that you make it clear that the code was descended from Apple sample
    code, but that you've made changes.
    property RadarProblem3258323IsFixed : false
    on run {}
    tell application "Finder"
    try
    set FinderSelection to the selection as alias list
    on error
    --Finder Scripting fails with one item (Radar problem 2741967)
    set FinderSelection to the selection
    end try
    end tell
    if RadarProblem3258323IsFixed then
    set FS to FinderSelection
    --Ideally, this list could be passed to the open handler
    else
    set FS to {}
    repeat with EachItem in FinderSelection
    copy EachItem as alias to end of FS
    end repeat
    end if
    set SelectionCount to number of FS -- count
    if SelectionCount is 0 then
    set FS to userPicksFolder()
    else if the SelectionCount is 1 then
    set MyPath to path to me
    if MyPath is item 1 of FS then
    --If I'm a droplet then I was double-clicked
    set FS to userPicksFolder()
    end if
    else
    --I'm not a double-clicked droplet
    end if
    open FS
    end run
    on userPicksFolder()
    set these_items to {}
    set these_items to (choose folder with prompt "Select a folder whose contents you wish to print:") as list
    end userPicksFolder
    property pShortPath : ""
    on open these_items
    set the item_info to {}
    repeat with i from 1 to the count of these_items
    set this_item to (item i of these_items)
    set the item_info to info for this_item
    if folder of the item_info is true then --if the item is a folder
    set pShortPath to (item i of these_items as string)
    set thePOSIXFilePath to POSIX path of pShortPath as string
    processFolder(thePOSIXFilePath)
    end if
    end repeat
    end open
    on processFolder(theFolder)
    set OldDelims to AppleScript's text item delimiters
    set AppleScript's text item delimiters to "/"
    set newTextList to text items of theFolder
    set x to the count of newTextList
    set printedPath to items 1 thru (x - 1) of newTextList as string
    set AppleScript's text item delimiters to OldDelims
    try
    set theShellScript to ("( echo " & printedPath & " && ls -R \"" & printedPath & "\" ) | lpr " as string)
    do shell script theShellScript
    on error ErrMsg number ErrNmbr
    tell application "Finder"
    display dialog ErrMsg & "
    Error: " & ErrNmbr buttons {"OK"} with icon note
    end tell
    end try
    end processFolder
    </script>
    Copy everything between <script> and </script>, launch Script Editor (in /Applications/AppleScript/), paste into the window, click compile, and click run. Select the HD to index and click on Choose.

  • In Admin Console We are unable to start Managed Server.

    Hi,
    We are using Weblogic 10.3.1.0 version.
    Totaly 4 Managed Severs
    1 Admin Server
    with Nodemanger.
    In Admin Console When ever we going to Stop the Manged Servers.
    1. Environment ----- > Servers ---- > Control ----------- > Mananged Server 1 -----------> Force shutdown
    2. Then click refresh button ---- showing "FAILED_NOT_RESTARTABLE"
    3. after that when ever we going to start the Managed Server in Admin console
    First its Showing ----- Starting
    and next its showing ----- FAILED_NOT_RESTARTABLE
    4. its not coming to Running State.
    In Logs
    Domain log
    -----------> <1273141345460> <BEA-000450> <Socket 8 internal data record unavailable (probable closure due idle timeout), event received 17>
    ####<06-May-2010 11:54:40 o'clock BST> <Alert> <WebLogicServer> <ukirt156> <twpserver1> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1273143280738> <BEA-000396> <Server shutdown has been requested by weblogic>
    ####<06-May-2010 11:54:40 o'clock BST> <Notice> <WebLogicServer> <ukirt156> <twpserver1> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1273143280771> <BEA-000365> <Server state changed to FORCE_SUSPENDING>
    ####<06-May-2010 11:54:40 o'clock BST> <Notice> <Cluster> <ukirt156> <twpserver1> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1273143280844> <BEA-000163> <Stopping "async" replication service>
    ####<06-May-2010 11:54:41 o'clock BST> <Notice> <WebLogicServer> <ukirt156> <twpserver1> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1273143281061> <BEA-000365> <Server state changed to ADMIN>
    ####<06-May-2010 11:54:41 o'clock BST> <Notice> <WebLogicServer> <ukirt156> <twpserver1> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1273143281064> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    ####<06-May-2010 11:54:41 o'clock BST> <Notice> <Server> <ukirt156> <twpserver1> <DynamicListenThread[Default]> <<WLS Kernel>> <> <> <1273143281113> <BEA-002607> <Channel "Default" listening on 172.21.149.168:7003 was shutdown.>
    ####<06-May-2010 11:56:30 o'clock BST> <Error> <NodeManager> <ukirt156> <AdminServer> <[ACTIVE] ExecuteThread: '45' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1273143390016> <BEA-300048> <Unable to start the server twpserver1 : Exception while starting server 'twpserver1': java.io.IOException: Server failed to start up. See server output log for more details.>
    AdminServer log
    <06-May-2010 11:56:30 o'clock BST> <Error> <NodeManager> <BEA-300048> <Unable to start the server twpserver1 : Exception while starting server 'twpserver1': java.io.IOException: Server failed to start up. See server output log for more details.>
    <06-May-2010 11:57:33 o'clock BST> <Error> <NodeManager> <BEA-300048> <Unable to start the server twpserver1 : Exception while starting server 'twpserver1': java.io.IOException: Server failed to start up. See server output log for more details.>
    <06-May-2010 12:07:02 o'clock BST> <Error> <NodeManager> <BEA-300048> <Unable to start the server twpserver1 : Exception while starting server 'twpserver1': java.io.IOException: Server failed to start up. See server output log for more details.>
    ManagedServer Log
    <06-May-2010 11:54:40 o'clock BST> <Alert> <WebLogicServer> <BEA-000396> <Server shutdown has been requested by weblogic>
    06-May-2010 11:54:41 org.quartz.core.QuartzScheduler shutdown
    INFO: Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED shutting down.
    06-May-2010 11:54:41 org.quartz.core.QuartzScheduler pause
    INFO: Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED paused.
    06-May-2010 11:54:41 org.quartz.core.QuartzScheduler shutdown
    INFO: Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED shutdown complete.
    <06-May-2010 11:54:54> <Debug> <NodeManager> <Waiting for the process to die: 19316>
    <06-May-2010 11:54:54> <Info> <NodeManager> <Server was shut down normally>
    <06-May-2010 11:54:54> <Debug> <NodeManager> <runMonitor returned, setting finished=true and notifying waiters>
    NodeManager Log
    <06-May-2010 11:54:54> <Info> <twp_domain> <twpserver1> <Server was shut down normally>
    <06-May-2010 11:56:21> <Info> <twp_domain> <twpserver1> <Boot identity properties saved to "/appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties">
    <06-May-2010 11:56:21> <Info> <twp_domain> <twpserver1> <Startup configuration properties saved to "/appl/weblogic/scripts/servers/twpserver1/data/nodemanager/startup.properties">
    <06-May-2010 11:56:21> <Info> <twp_domain> <twpserver1> <Rotated server output log to "/appl/weblogic/scripts/servers/twpserver1/logs/twpserver1.out00020">
    <06-May-2010 11:56:21> <Info> <twp_domain> <twpserver1> <Server error log also redirected to server log>
    <06-May-2010 11:56:21> <Info> <twp_domain> <twpserver1> <Starting WebLogic server with command line: /appl/weblogic/oracle/middleware/jrockit_160_05_R27.6.2-20/jre/bin/java -Dweblogic.Name=twpserver1 -Djava.security.policy=/appl/weblogic/oracle/middleware/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.management.server=http://ukirt156:7001 -Djava.library.path="/appl/weblogic/oracle/middleware/jrockit_160_05_R27.6.2-20/jre/lib/i386/jrockit:/appl/weblogic/oracle/middleware/jrockit_160_05_R27.6.2-20/jre/lib/i386:/appl/weblogic/oracle/middleware/jrockit_160_05_R27.6.2-20/jre/../lib/i386::/appl/nsm/CA/UnicenterNSM/lib:/appl/nsm/CA/SharedComponents/JRE/1.4.2_09/lib/i386/client:/appl/nsm/CA/SharedComponents/JRE/1.4.2_09/lib/i386:/appl/nsm/CA/SharedComponents/ccs/dia/dna/lib:/appl/nsm/CA/SharedComponents/ccs/dia/lib:/usr/lib:/opt/CA/CAlib:/appl/nsm/CA/SharedComponents/lib:/appl/nsm/CA/SharedComponents/Csam/SockAdapter/lib:/appl/weblogic/oracle/middleware/wlserver_10.3/server/native/linux/i686:/appl/weblogic/oracle/middleware/wlserver_10.3/server/native/linux/i686/oci920_8" -Djava.class.path=/data/share/package/twp/WEB-INF/lib/ojdbc14.jar:/appl/weblogic/oracle/middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/appl/weblogic/oracle/middleware/wlserver_10.3/server/lib/weblogic.jar -Dweblogic.system.BootIdentityFile=/appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties -Dweblogic.nodemanager.ServiceEnabled=true -Dweblogic.security.SSL.ignoreHostnameVerification=false -Dweblogic.ReverseDNSAllowed=false -Xmanagement:port=7091,ssl=false,authenticate=false -Xms=1200m -Xmx=1200m -Xverbose:gc,gcpause -Dreflexis.scheduler=true -Dreflexis.server=twpserver1 -Djava.awt.headless=true -Dclient.encoding.override=UTF-8 -Doracle.jdbc.V8Compatible=true weblogic.Server >
    <06-May-2010 11:56:21> <Info> <twp_domain> <twpserver1> <Working directory is "/appl/weblogic/scripts">
    <06-May-2010 11:56:21> <Info> <twp_domain> <twpserver1> <Rotated server output log to "/appl/weblogic/scripts/servers/twpserver1/logs/twpserver1.out00021">
    <06-May-2010 11:56:21> <Info> <twp_domain> <twpserver1> <Server error log also redirected to server log>
    <06-May-2010 11:56:21> <Info> <twp_domain> <twpserver1> <Server output log file is "/appl/weblogic/scripts/servers/twpserver1/logs/twpserver1.out">
    <06-May-2010 11:56:29> <Info> <twp_domain> <twpserver1> <Server failed during startup so will not be restarted>
    <06-May-2010 11:56:29> <Warning> <Exception while starting server 'twpserver1': java.io.IOException: Server failed to start up. See server output log for more details.>
    java.io.IOException: Server failed to start up. See server output log for more details.
    at weblogic.nodemanager.server.ServerManager.start(ServerManager.java:332)
    at weblogic.nodemanager.server.Handler.handleStart(Handler.java:542)
    at weblogic.nodemanager.server.Handler.handleCommand(Handler.java:119)
    at weblogic.nodemanager.server.Handler.run(Handler.java:66)
    at java.lang.Thread.run(Thread.java:619)
    Server logs
    <06-May-2010 12:06:57> <Info> <NodeManager> <Server output log file is "/appl/weblogic/scripts/servers/twpserver1/logs/twpserver1.out">
    [INFO ][memory ] GC mode: Garbage collection optimized for throughput, initial strategy: Generational Parallel Mark & Sweep
    [INFO ][memory ] heap size: 1228800K, maximal heap size: 1228800K, nursery size: 614400K
    [INFO ][memory ] <s>-<end>: GC <before>K-><after>K (<heap>K), <pause> ms
    [INFO ][memory ] <s/start> - start time of collection (seconds since jvm start)
    [INFO ][memory ] <end> - end time of collection (seconds since jvm start)
    [INFO ][memory ] <before> - memory used by objects before collection (KB)
    [INFO ][memory ] <after> - memory used by objects after collection (KB)
    [INFO ][memory ] <heap> - size of heap after collection (KB)
    [INFO ][memory ] <pause> - total sum of pauses during collection (milliseconds)
    [INFO ][memory ] run with -Xverbose:gcpause to see individual pauses
    [JRockit] Management server started on port 7091, ssl=false, authenticate=false.
    <06-May-2010 12:06:59 o'clock BST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA JRockit(R) Version R27.6.2-20_o-108500-1.6.0_05-20090120-1115-linux-ia32 from BEA Systems, Inc.>
    <06-May-2010 12:07:00 o'clock BST> <Critical> <Security> <BEA-090518> <Could not decrypt the username attribute value of {AES}xvFgPysVi5b89pYwaAppoqPXQ5wFVW13yoFhzhKmuQo= from the file /appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties. If you have copied an encrypted attribute from boot.properties from another domain into /appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties, change the encrypted attribute to its cleartext value then reboot the server. The attribute will be re-encrypted. Otherwise, change all encrypted attributes to their cleartext values, then reboot the server. All encryptable attributes will be re-encrypted. The decryption failed with the exception weblogic.security.internal.encryption.EncryptionServiceException: com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte..>
    <06-May-2010 12:07:00 o'clock BST> <Critical> <Security> <BEA-090518> <Could not decrypt the password attribute value of {AES}WSsjiXk6ppStq4WFajxaXkqCwpcBwaMJni7vk/pqXvk= from the file /appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties. If you have copied an encrypted attribute from boot.properties from another domain into /appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties, change the encrypted attribute to its cleartext value then reboot the server. The attribute will be re-encrypted. Otherwise, change all encrypted attributes to their cleartext values, then reboot the server. All encryptable attributes will be re-encrypted. The decryption failed with the exception weblogic.security.internal.encryption.EncryptionServiceException: com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte..>
    Enter username to boot WebLogic server:<06-May-2010 12:07:00 o'clock BST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.1.0 Thu Jun 11 00:26:56 EDT 2009 1227385 >
    <06-May-2010 12:07:01 o'clock BST> <Info> <Management> <BEA-141223> <The server name twpserver1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {AdminServer}.>
    <06-May-2010 12:07:01 o'clock BST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.management.ManagementException: [Management:141223]The server name twpserver1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {AdminServer}.
    at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:149)
    at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:41)
    at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:461)
    at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:166)
    at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:749)
    at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:488)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:446)
    at weblogic.Server.main(Server.java:67)
    >
    <06-May-2010 12:07:01 o'clock BST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <06-May-2010 12:07:01 o'clock BST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <06-May-2010 12:07:01 o'clock BST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    <06-May-2010 12:07:02> <Debug> <NodeManager> <Waiting for the process to die: 19443>
    <06-May-2010 12:07:02> <Info> <NodeManager> <Server failed during startup so will not be restarted>
    <06-May-2010 12:07:02> <Debug> <NodeManager> <runMonitor returned, setting finished=true and notifying waiters>
    Note: if i start the manged servers through WLST scripts its working fine.
    [twpuser@ukirt156 /appl/weblogic/scripts]$ java weblogic.WLST
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    wls:/offline> nmConnect('weblogic', 'w3bl0g1c', 'ukirt156', '5556', 'twp_domain', '/appl/weblogic/oracle/middleware/user_projects/domains/twp_domain', 'plain')
    Connecting to Node Manager ...
    Successfully Connected to Node Manager.
    wls:/nm/twp_domain> nmStart('twpserver1')
    Starting server twpserver1 ...
    Successfully started server twpserver1 ...
    Please provide the solution, how to solve this issue.
    Thanks
    SRK

    In my question some content was strike.... now again i updated...pls see now...
    Server logs
    <06-May-2010 12:06:57> <Info> <NodeManager> <Server output log file is "/appl/weblogic/scripts/servers/twpserver1/logs/twpserver1.out">
    [INFO ][memory ] GC mode: Garbage collection optimized for throughput, initial strategy: Generational Parallel Mark & Sweep
    [INFO ][memory ] heap size: 1228800K, maximal heap size: 1228800K, nursery size: 614400K
    [INFO ][memory ] <s>-<end>: GC <before>K-><after>K (<heap>K), <pause> ms
    [INFO ][memory ] <s/start> - start time of collection (seconds since jvm start)
    [INFO ][memory ] <end> - end time of collection (seconds since jvm start)
    [INFO ][memory ] <before> - memory used by objects before collection (KB)
    [INFO ][memory ] <after> - memory used by objects after collection (KB)
    [INFO ][memory ] <heap> - size of heap after collection (KB)
    [INFO ][memory ] <pause> - total sum of pauses during collection (milliseconds)
    [INFO ][memory ] run with -Xverbose:gcpause to see individual pauses
    [JRockit] Management server started on port 7091, ssl=false, authenticate=false.
    <06-May-2010 12:06:59 o'clock BST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA JRockit(R) Version R27.6.2-20_o-108500-1.6.0_05-20090120-1115-linux-ia32 from BEA Systems, Inc.>
    <06-May-2010 12:07:00 o'clock BST> <Critical> <Security> <BEA-090518> <Could not decrypt the username attribute value of {AES}xvFgPysVi5b89pYwaAppoqPXQ5wFVW13yoFhzhKmuQo= from the file /appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties. If you have copied an encrypted attribute from boot.properties from another domain into /appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties, change the encrypted attribute to its cleartext value then reboot the server. The attribute will be re-encrypted. Otherwise, change all encrypted attributes to their cleartext values, then reboot the server. All encryptable attributes will be re-encrypted. The decryption failed with the exception weblogic.security.internal.encryption.EncryptionServiceException: com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte..>
    <06-May-2010 12:07:00 o'clock BST> <Critical> <Security> <BEA-090518> <Could not decrypt the password attribute value of {AES}WSsjiXk6ppStq4WFajxaXkqCwpcBwaMJni7vk/pqXvk= from the file /appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties. If you have copied an encrypted attribute from boot.properties from another domain into /appl/weblogic/scripts/servers/twpserver1/data/nodemanager/boot.properties, change the encrypted attribute to its cleartext value then reboot the server. The attribute will be re-encrypted. Otherwise, change all encrypted attributes to their cleartext values, then reboot the server. All encryptable attributes will be re-encrypted. The decryption failed with the exception weblogic.security.internal.encryption.EncryptionServiceException: com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte..>
    Enter username to boot WebLogic server:<06-May-2010 12:07:00 o'clock BST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.1.0 Thu Jun 11 00:26:56 EDT 2009 1227385 >
    <06-May-2010 12:07:01 o'clock BST> <Info> <Management> <BEA-141223> <The server name twpserver1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {AdminServer}.>
    <06-May-2010 12:07:01 o'clock BST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.management.ManagementException: [Management:141223]The server name twpserver1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {AdminServer}.
    at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:149)
    at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:41)
    at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:461)
    at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:166)
    at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:749)
    at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:488)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:446)
    at weblogic.Server.main(Server.java:67)
    >
    <06-May-2010 12:07:01 o'clock BST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <06-May-2010 12:07:01 o'clock BST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <06-May-2010 12:07:01 o'clock BST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    <06-May-2010 12:07:02> <Debug> <NodeManager> <Waiting for the process to die: 19443>
    <06-May-2010 12:07:02> <Info> <NodeManager> <Server failed during startup so will not be restarted>
    <06-May-2010 12:07:02> <Debug> <NodeManager> <runMonitor returned, setting finished=true and notifying waiters>
    Note: if i start the manged servers through WLST scripts its working fine.
    [twpuser@ukirt156 /appl/weblogic/scripts]$ java weblogic.WLST
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    wls:/offline> nmConnect('weblogic', 'w3bl0g1c', 'ukirt156', '5556', 'twp_domain', '/appl/weblogic/oracle/middleware/user_projects/domains/twp_domain', 'plain')
    Connecting to Node Manager ...
    Successfully Connected to Node Manager.
    wls:/nm/twp_domain> nmStart('twpserver1')
    Starting server twpserver1 ...
    Successfully started server twpserver1 ...
    Please provide the solution, how to solve this issue.
    Thanks
    SRK

  • IMac won't complete restart after upgrade to 10.5.6

    I recently ran Mac OS upgrade 10.5.6, but iMac won't complete restart. After the apple appears, script appears across screen and a box appears in the middle telling me to restart my computer by "holding power button until shut down, then press on/off button again to restart. Any suggestions to try before taking machine to Apple Store?

    Thank you everyone. The correct answer was a kernel panic, and although the resolve kernel panic links above did not offer a successful solution, it was a correct diagnosis. Following the Apple Troubleshooting steps allowed me to determine that a faulty third party keyboard was the cause. Restarting with shift, restarting with 'x,' and restarting with ctrl-option-r-p did not solve the issue. Unplugging the keyboard and restarting did identify the keyboard as the culprit. Thank you all for your help.

  • Finding Selected Files

    I started a thread asking how I can find and delete selected files at http://discussions.apple.com/thread.jspa?messageID=6435289#6435289
    I was advised to paste the following script into Apple's Script Editor...
    tell application "Finder"
    delete (every file of entire contents of folder "Sites" of home whose name is "Thumbs.db")
    end tell
    Unfortunately, it doesn't work. It just times out, my Finder freezes, and I have to manually restart my computer.
    However, it does at least FIND every instance of the file I'm looking for. So I'd like to ask about a few variations of this script so I can understand how it works.
    Suppose that instead of searching for every instance of Thumbs.db in the folder Sites I wanted to search for every instance of Thumbs.db in User/Sites/MySite. What script would I write to do that? What about searching for the file in User/Sites/MySite/includes ?
    Also, what about searching for text on a page rather than a file name? For example, I would like to compile a list of every file in a website that includes a PHP database query. I think I could find all of these queries by searching for mysql_ in each web page's source code. So how could I search for every file that includes "mysql_" in User/Sites/MySite?
    Thanks.

    1. Use:
    tell application "Finder"
    delete (every file of entire contents of folder "Sites:MySite" of home whose name is "Thumbs.db")
    end tell
    2. This is best done with a tool such as TextWrangler instead of with AppleScript.
    (28479)

Maybe you are looking for

  • I can't find sweetim, but everytime I log out of Firefox and back on, it shows up as the default keyword search. How can I fix this!!!!!

    I have checked my installed programs, the list of add ons on internet explorer and the one on Firfox, and cannot find sweetim. However, when I try to do a keyword search in the location bar, I am only able to do it twice, until I switch to a new tab.

  • Cannot Select Both "Manually manage music" and "Sync ringtones" for iTunes

    iTunes won't let me sync when both "manually manage music and videos" and "sync ringtones" is checked. If I choose "manage music and videos" first, add my music, then check "sync ringtones" all my music that I sync'd is deleted. The only way it worke

  • Embedded Video Plays on PCs but Not Macs

    As the King of Siam declared, "It's a puzzlement." I'm updating a site and have embedded a .mov from the client's YouTube channel using YouTube's preferred <iframe> code. Here is the URL: http://www.realcosmetics.com/ourStory.html. The video will pla

  • JTable in JPanel cut off

    I'm trying to put a JTable with several elements in a JPanel and it is getting cut off. I have tried extending the gridbagconstraints with ipady but no luck. public class PumpMonitor extends JPanel JTable Table1; PumpMonitor() Table1Model dm = new Ta

  • Object arrays

    Very new to java. I want to set up an array of objects with code below. The object class compiles, but the main class won't. It has a problem with the object's constructor. (I want to have 20 objects with an object variable (obvar) different in each