Using protected install of Workshop

I've just installed Workshop 9.2 for the first time, under Suse Linux. To protect against accidental corruption and to enable safe sharing of the Workshop binaries by multiple users, I have set file permissions on the Workshop install directory structure. User-specific config can, of course, go in the private Eclipse workspace for each user.
Now, when I try to launch Workshop, I get a failure trying to create file '../workshop4WP/eclipse/configuration/org.eclipse.osgi/.manager/.fileTableLock'
which of course if quite correct because this is a file within the install directory which no user should update normally.
This would suggest there's a gotcha in that each user would need a separate installation of Workshop, which is not only inefficent use of filestore, but makes it difficult to guarantee that every user has the same version installed.
Can anyone advise on how to share Workshop installations securely?
Thanks.

Hi,
If you've not seen it yet, there is some information here on multi-user installs of Eclipse that apply to Workshop:
http://help.eclipse.org/help31/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/multi_user_installs.html
I haven't tried it myself yet, but for now I believe you can remove the osgi.configuration.area line from workshop4WP.ini allowing each user to have their own configuration area in their home directory, rather than the default area shipped out of the box.
Hope this helps.
-Chris

Similar Messages

  • Can't start Tomcat after installing Bea WorkShop for JSP

    Hi,
    I have been using Eclipse SDK Version: 3.1.2 Build id: M20060118-1600 and Web Tools Project 1.0.2 and Tomcat 5.0 and Tomcat 5.5 for about 2 months with no problems. But now I Can't start Tomcat after installing Bea WorkShop for JSP plug-in. I get "Server Tomcat v5.0 @ localhost failed to start". Any help would be greatly appreciated.

    I installed BEA Workshop for JSP Version: 3.1.0
    Build id: 536. I only wanted to install the plug-in to my existng Eclipse 3.1 / WTP application. The only option that I saw was to download the entire FullWorkshopFreeInstall-536.zip, which is 192,496 KB. During the installation, there is a screen that you can specify to only install the plug-in - and I selected that option. Today, I chose to uninstall the BEA Workshop for JSP and then I was again able to start Tomcat server. I then did a complete install of BEA Workshop for JSP into a totally separate location. My original Eclipse installation still works fine, but my Workshop for JSP Version (which is now a completely new installation) has the same problem with Tomcat that I reported with the plug-in. I am using j2sdk1.4.2_08 and have tried both Tomcat 5.0 and Tomcat 5.5. I have the same problem with both Windows XP Home Edition and Windows XP Professional.
    Thanks for your assistance.
    Ron

  • Can EMET provide a useful protection to server systems

    Hi,
    yesterday i had a discussion about "If EMET can provide additional protection to a server systems". Almost all participants think that EMET is a pure client tool and for this reason installing it on a server makes no sense. In my opinion there is
    no difference how EMET works to protect a client or a server process. in this context, some question:
    Can EMET provide a useful protection to server systems?
    Was there any "MS Bulletin (for server systems or server roles/features) in which EMET where recommended?
    Are there any officially tested application EMET settings e.g. for the IIS?
    have a nice day.

    ''you must modify image.mem.decodeondraw''
    type in the address bar '''about:config'''
    then press the button '''i'll be careful i promise
    then type in the bar '''image.mem.decodeondraw'''
    then '''Double-click '''on it, to make it '''false'''
    ''exit firefox and restart-it''.
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • [SOLVED] KVM Virtual machine using virt-install on a LVM partition

    Hello,
    I am far from an expert, and I am trying to build a virtual machine (debian squeeze) on my Arch 64 bits host. The VM will serve as a server with usual services (http, mail, ftp, media server etc). This is only for my own purpose and I do it as a hobby.I have no obligation to success, and more important I want to understand everything i do. I have some doubts, so why my post here.
    I want to install the VM on a LVM partition.
    -I first create successfully a LVM partition on /dev/sda4
    $fdisk -l /dev/sda
    /dev/sda4 1925115904 2949116309 512000203 8e LVM Linux
    I will install the VM (named "daffodil") on a 200G Logical Volume on groupe vg0
    $ lvcreate –n lv_daffodil –L 200G vg0
    Logical volume “lv_daffodil” created
    Now I need to create the VM. I want to use virt-install IN COMMAND LINE. After days an days of reading (and headache), here is what i think is the correct command :
    virt-install --connect qemu:///system --name=daffodil --ram 8192 --cpu host
    --disk path=/dev/vg0/lv_daffodil,size=200,bus=virtio,sparse=false,format=raw --cdrom /var/lib/libvirt/images/isofiles/debian-6.0.4-amd64-netinst.iso
    --description="daffodil (debian squeeze) - vm guest on host magnolia" --graphics vnc --os-type=linux --os-variant=debiansqueeze
    --network bridge:br0 --video=vga --hvm --accelerate
    So my questions :
    Is the command correct and academic?
    I think size=200 is maybe not needed, as the LV has already be created. Right?
    format=raw seems weird to me and not needed. Right?
    My host has 16G RAM. Shall I put 16 as --ram argument or stay with 8 ?
    How about the filesystem? I want an ext4. Shall I create it on lv_daffodil BEFORE the install or will I do it under the install process when partitioning?
    Any advantage in creating smaller than 200G logical volume, even if I want my VM have enough space (The whole HD is 2T)?
    Not sure about the --accelerate argument
    Any hint for optimization?
    As a n00b ++, will I be able to manage SELinux on my server, as it seems a litle bit tricky?
    what about --noautoconsole argument?
    Thank you for your help and knowledge.
    Last edited by gabx (2012-05-02 10:39:16)

    As I didn't have any answer in one week, I suscribed to [email protected]
    For those of you interested in KVM, find below a script doing excatly the needed job.
    #!/bin/bash
    #created Thursday April 26 2012
    #following Richard W.M.Jones <[email protected]> advices and script
    #this script can be changed according your own need. This one will
    #install a debian VM called daffodil on a LVM partition, with 2 CPU, 8192 RAM
    # Script used to install VMs.
    # You have to lvcreate the disk first!
    # lvcreate -L sizeG -n $name vg_data
    set -e
    name=daffodil
    cpus="--cpu=host --vcpus=2"
    disk="--disk path=/dev/vg0/lv_daffodil"
    location="--cdrom /var/lib/libvirt/images/isofiles/debian-6.0.4-amd64-netinst.iso
    type="--os-type=linux"
    variant="--os-variant=debiansqueeze"
    graphics="--graphics spice"
    bus="virtio"
    network="--network bridge=br0"
    virt-install -n $name -r 8192 \
    $name $cpus $type $variant $disk $location $graphics $bus $network
    To answer to some of my queries in first post:
    no need to give the size as I want to use the full lvm I created first. Virt-install will pick up the size
    the filesystem will be created during install
    CPU amount should be less than the host, as well as CPU numbers.
    --accelerate argument is no more needed
    spice give usually better graphic results than vnc

  • Stolen device with BB Protect installed

    Hello,
    my curve got stolen. I had BB protect installed and tryed locking the device online. The meassage coudn't be sent though.As Protect works PIN specific it is ultimately connected to the device right? Meaning it is impossible for anybody to ever use it on the network without the password set by me?
    I want to turn the phone in a worthless piece of plastic!
    Thanks for your attention and any answer in advance.
    Cheers
    Jan

    Hello,
    Everything useful on the topic is contained within this existing thread:
    http://supportforums.blackberry.com/t5/BlackBerry-​Device-software/Lost-or-Stolen-BlackBerry-What-to-​...
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I have a fully paid subscription to CC and use of installed programs but I can no longer sign in to CC. It repeatedly says "You've been signed out". I have the need to install another program but I can't sign in.

    I have a fully paid subscription to CC and use of installed programs but I can no longer sign in to CC. It repeatedly says "You've been signed out". I have the need to install another program but I can't sign in.

    Sign Out When Sign In http://forums.adobe.com/thread/1450581?tstart=0 may help
    -and http://helpx.adobe.com/creative-cloud/kb/unable-login-creative-cloud-248.html

  • Can emac installer discs be used to install OS 9.2.2 on Pismo G3?

    I have a full set of original eMac installer discs, and want to use one set to install OS9.2.2 on an Apple Pismo G3.
    Can this be done?
    I've heard Apple OEM installer discs are "Mac machine specific", and can't be used to install OS software onto other
    Apple Macs of a different model. But, I'm not sure if this is true, as there may be conflicting views on this subject.
    The OEM eMac discs I have are as follows:
    • Two (2) disc OEM set
       eMac OS X 10.4
       AHT version 2.5
       Disc version 1.1
       2Z691-5518-A
    • Five (5) disc set:
       eMac OS X and Mac OS 9
       Mac OS version 9.2.2
       CD version 1.0
       691-3981-A
    So the question is .... if OS X Tiger 10.4 has already been installed on the Pismo G3 .... can the above installer discs of (5) OS 9.2.2 be used to install OS 9.2.2 on the Pismo G3? 
    I would assume the Pismo G3 Hard drive would already have to have the OS9 drivers installed, during the OS 10.4 installation (showing an OS 9 "System Folder" on the HD, to be able to receive the OS 9.2.2 installer discs. I also understand that if installable, that the OS 9.2.2 would only open in the "Classic" mode.
    Any information as to if the above eMac OS 9.2.2 installer discs can be used to install OS 9.2.2 on the Pismo G3 ... would be appreciated.
    OR .... if other OS9.2.2 installer discs would be more appropiate, and if so, what model of Apple installer discs to use on the Pismo G3.

    dalstott:: 
    Below is the OS 9.2.2 "System Folder" that I was able to pull off the Number 1 - OEM eMac "Restore Sofware Disc". 
    It's obviously different than the first "System Folder" that I have, which I also showed above in a previous reply.
    Since the above is off the eMac OS 9.2.2 installer disc, this is the one I think would be more appropiate for copy/dragging to the Pismo G3 Hard Drive.
    Even though the Applications in the OS 9 Applications Folder are older, and probably not of much interest ... I also have the following "Applications (Mac OS 9)" folder, also taken off the eMac OS 9 installer disc. If I were to copy/drag this "Applications (Mac OS 9)" folder, to the Pismo G3 Hard Drive ... where do you think it should be placed?  In the OS 9.2.2 "System Folder" ... or separately on the main Hard Drive, with all the other main folders?
    Note: All these installer folders were "Invisable" disc folders, and only "viewable" using FileBuddy in Mountain Lion 10.8.5.

  • CF Admin login fails (invalid pw) for Windows User other than the one used to install CF 10

    I installed CF 10 on a server running Windows Server 2008 R2 Standard having logged into the server as a Windows user in the administrator group.  I set up CF 10 Administrator to use a single password (the default).  I can log into CF Admin when authenticating to the server with the same Windows credentials used when installing CF 10 but if I log into the server as another Windows user in the administrator group I cannot log into CF Admin; I get an Invalid Password error.  I thought the whole point of the single password was so that anyone who can log into the server could log into CF Admin.  It works like that for my CF 8 and CF 9 machines.

    It is a new design, based on security issues that arose in previous ColdFusion versions. See, for example, Charlie Arehart's blog for more details.

  • Can I use the install disk on two computers?

    I haven't actually installed it on my computer yet, I just allowed whatever was going to install itself to come up. If I have another computer, can I use the install disk to put OSX on there or not? If so, can I still use it in case I need a backup load of my computer?

    Only if you get a family pack license newer than the installer disk which came with the computer(s) can you install it on multiple computers. Check your license agreement.
    You can't use the disks which came with another computer on a second computer. These articles explain more along those lines:
    http://docs.info.apple.com/article.html?artnum=25517
    http://docs.info.apple.com/article.html?artnum=25784
    As for backup, I recommend looking at these various procedures:
    http://www.macmaps.com/backup.html
    Disclaimer: Reference to links I make to my Macmaps.com website are a for your information only type reference. I do not get any profit from this page, and it is open to the public.

  • Why -jar option used to install a software which is in executable jar file?

    Hi all,
    i have a query, i have a generic installer which is used to install the oracle weblogic 10.3 software in unix platform(i.e., which is in .jar extension) which is executable jar file.
    To install this software which have to use -jar option to install
    java -jar net_server<version>_generic.jar
    my question that why we use -jar option to install or to extract the software
    can any one clarify my doubt...
    thanks in advance
    abhi
    Edited by: sumanth_abhi on Jan 27, 2009 11:50 PM

    According to the Jar Guide (http://java.sun.com/j2se/1.4.2/docs/guide/jar/jarGuide.html)
    Executable Jar Files
    On Microsoft Windows systems, the Java 2 Runtime Environment's installation program will register a default association for Jar files so that double-clicking a Jar file on the desktop will automatically run it with javaw -jar. Dependent extensions bundled with the application will also be loaded automatically. This feature makes the end-user runtime environment easier to use on Microsoft Windows systems.
    The Solaris 2.6 kernel has already been extended to recognize the special "magic" number that identifies a Jar file, and to invoke java -jar on such a Jar file as if it were a native Solaris executable. A application packaged in a Jar file can thus be executed directly from the command line or by clicking an icon on the CDE desktop.
    Despite that every JAR file can be executed as a program if and only if the META-INF/Manifest.mf contains the Main-Class tag. This done through java -jar jarfile.jar
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • HT2129 Can this method be used to install 10.6.8 or later software on a Macbook running 10.5.8 whose CD drive no longer works?

    Can this method be used to install 10.6.8 or later software on a MacBook running 10.5.8 whose CD drive no longer works?

    Assuming it's not a Gray Machine specific Install Disc, it should work.

  • What are the steps to make it seamless for a customer to use the install program and then use the installed program?

    I wrote an install program (.exe) that is downloaded from a website.  When run, it 1) leads a customer to browse to a directory, and 2) copies files (.exe, .dll, etc.) from a website to that directory.  When I run, the installed program works.
    What are the steps to make it seamless for a customer to use the install program and then use the installed program? 
    bhs67

    This site https://msdn.microsoft.com/en-us/library/vstudio/2kt85ked%28v=vs.110%29.aspx provides a basic description of the Visual Studio Windows Installer. 
    Near the bottom of the page is "You can unlock all the features of InstallShield by paying to upgrade to the full version of InstallShield."  Where do I find info that describes the differences between the "free" and the "full"
    versions?
    bhs67
    Hello,
    The default feature does support the task for your requirement, so there is no need to pay for the other features unless you want to use some feature which is not free.
    In addition, as this thread
    InstallShield LE not available with VS 2012 RTM? shared, even through there is a link to InstallShield LE in the New Project dialog under Deployment solutions, but it belongs to third-party that I would recommend you consider posting this issue
    at the following forum to get supports about InstallShield.
    http://community.flexerasoftware.com/forumdisplay.php?133-InstallShield
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I think my hard drive crashed. How can I get data off via firewire before the HD completely goes? I was stuck on the BSoD and now I can't even use the install disk. Utility Disk said HD was okay. Please HELP ME

    Safe mode did nothing.
    Safe mode with verbose seemed to make it worse.
    Before continuously trying new things, I could use the install disk to check the disk utility and clear
    the hard drive from there but now the screen won't even load to that.
    I really need the data on the hard drive especially if it can't be salvaged.
    How can i transfer files?
    Am I better off physically taking my HD out or will it damage itself without
    leaving the system.
    I tried command r
    resetting the pram
    safe mode
    jumping out a window
    nothing has helped.
    I am stuck on the blue screen of death and it flickers.

    No. In order to use FireWire Target Disk Mode you need to use a FireWire equipped Mac. Other than that the only other way I can think of to even attempt to access you files would be to remove your hard drive and install it in a case and connect it to another computer.
    Have you run the Apple Hardware Test? http://support.apple.com/kb/HT1509

  • Install Sun Workshop 6 on Solaris 9

    Has anyone successfully installed Sun Workshop 6 on a Solaris 9 machine? I checked release notes, and seems like this version does not support solaris 9. Thanks!
    KC

    By 'Sun Workshop 6'... do you mean Forte Developer 6? If yes, you can only install it on versions 2.6, 7, and 8 of the Solaris O/S.

  • How to use protect and endprotect in smart form

    hi to all experts,
                        im still begineer in smart form , i have two headings like
    company_code:              purchase doc no:
    after this i have a table to be displayed with four columns
    what i want is the whole data should not be split by a page break
    i know this can be achieved by using protect and end protect in sap scripts how to implement in smart form

    probably u have the table inside a loop or a folder or something....
    see this
    Page protection attribute
    Switch for page protection.
    Use
    Page protection switch.
    In some cases you may want to avoid that text is divided by a page break. Therefore, you can protect text sections with a page protection.
    Page protection can extend to
    a paragraph
    a text node
    all output within a folder, for example, several text nodes combined in this folder.
    a line type (table node)
    If on the current page there is not enough space left for the protected text, it is displayed entirely on the next page.
    So u can page protect a line in table...
    in the table node..goto tables tab and click the details tab-->select the line type and check the 'no page break'
    check box

Maybe you are looking for

  • How to organize Places tags in Elements 12

    Hi I have assigned pictures to several different locations in Colorado using the Photoshop Elements 12 Organizer. Most of these locations are listed under "Colorado" category but one location persistantly lists under "CO". I have the same issue with

  • Initializing values in an internal table

    hi how to initialize values in a internal table according to my requirement i need to initialize (both character and currency) values present in the internal table based on certain conditions vamsi

  • I have filled a doucument in abode reader then emailed it but the recipient has not received it can

    I have received a document that needed filling in which I did in my abode reader then e.mailed it to the recipient but they have not receveied it can I trace it and found out were it has gone please help

  • Pass word for Apple ID not accepted in Newstand?

    Help! I changed my password for Apple ID and had no problem using it to purchase items in ITUNES. However when attempting to puchase magazines through APPs and newstand it is not accepting the same password. States not regonised for the same user nam

  • RESTORING THE DATABASE AFTER BEING EDITED OR DELETED

    How to restore the database after being edited? I m using sql server 2008 R2, I've done backup with some foolish knowledge and many tables have disappeared from the database. I want to get them back. Please help me.