Server Replacement - Copy existing SJSWS 6.1 installation to another server

Hello,
we are planning to replace a Sun server (Solaris 5.9) with a new one.
On the current server a Sun Java System Web Server version 6.1 is running.
The new server will have new IP addresses / Listen ports / Listen addresses
for the Sun Java System Web Server.
We would like to copy the existing Sun Java System Web Server installation
from the old server to the new one instead of doing a complete new installation.
Is this possible ?
If yes, which files must be modified or other activities needs to be
performed that the Sun Java System Web Server will run on the new server ?
Thank you very much for your support.

Copying the contents should work if
* o/s version is same
* patch levels match
* you are renaming the new server with the same old servers' hostname,
* no other server is running on those http listener ports.

Similar Messages

  • Replacement of existing certificate

    Hi,
    Our wireless network uses a certificate that is generated by the ACS. This certificate is expiring with 3 months. We would like to implement a solution with a microsoft ca server but wwe have the following question.
    Will the current certificate still be valid when we install the new certificate on the ACS server ?
    Since we are not able to push the certificate to all clients at the same time we would like to avoid that the wireless network is unavailable for users with original certificate...

    If you are installing a server certificate that replaces an existing server certificate, the installation could affect the configuration of the CTL and CRL settings your Cisco Secure ACS. After you have installed a replacement certificate, you should determine whether you need to reconfigure any CTL or CRL settings.

  • How to Replace/Update existing book in ACS4?

    I want to know how to replace/upadate book in ACS4. ? I trite with replace request but it give error that duplicate item in inventory?

    Edit: For things below to work, you do need to edit packaging.conf as xnormand stated above.
    This seems to be what you said your tried, but since you were not very detailed:
    If you use the tool UploadTest bundled with ACS4.1 distribution (it has to be 4.1 or above; 4.0's will not replace already existing resources), create the associated XML:
    <?xml version="1.0" encoding="UTF-8"?>
    <package xmlns="http://ns.adobe.com/adept">
       <action>replace</action>
       <resource>urn:uuid:00000000-0000-0000-0000-000000000000</resource>
       <metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
          <dc:title>XXXXXXX</dc:title>
          <dc:creator>XXXXXXX</dc:creator>
          <dc:publisher>XXXXXXX</dc:publisher>
          <dc:format>application/epub+zip</dc:format>
       </metadata>
       <dataPath>/home/myuser/epubs/filename.epub</dataPath>
    </package>
    Note that, in the XML:
    <resource> has to be exactly the same as the UUID of the book already in ACS that you intend to replace.
    There is a directive <action>replace</action>.
    You use <dataPath> if you'd prefer to package an epub residing not on your local machine, but on the server. Inside it you specify the path where it resides on the server.
    Then run the tool from the Terminal like this:
    java -Xmx512M -jar /pathTo/UploadTest-1_2.jar http://domain.com/Package ~/epubs/ -datapath -xml -jpg -pass yourpassword
    Where:
    /pathTo/UploadTest-1_2.jar points to ACS 4.1 or above's UploadTest sample tool.
    http://domain.com/Package is the URL to your server's ACS's install of the Packaging service (depending on your server's install, port may have to be specified like http://domain.com:8080/Package)
    ~/epubs/ is your local path where the XML resides. Note that UploadTest will try to process all XML in that folder, not just the one you just created.
    Again, you use -datapath if you are packaging an epub residing not on your local machine, but on the server. Obviously requires the dataPath in the XML.
    yourpassword is your password to ACS' Packaging service. Since you are running this on the shell, watch out for plaintext password leftovers in your command history. Some UNIX installs do not add lines to the command history if the command is preceded with a space (but YMMV).

  • How can I replace an existing report?

    The way our Enterprise server is setup, we have a folder that we publish all reports to. This folder is proteced from view from anyone but admins.
    In order for our users to "see" a report we create a shortcut of the report in their User folder.
    This works well, with one exception. When we need to put a new revision of a report out there, we have to recreate all of the existing user shortcuts. There is no way to "replace" an existing report (and inherit its underlying "ID" in the sql database) and have all of the shortcuts use the new report. This is especially painfull when the reports are scheduled to run. All the the scheduling/parameters/etc ahas to be recreated after the new report is publised to the server.
    I assuem there is some way to accomplish this with the SDK. I was wondering if someone can point me in the right direction. I am rather new to DOT Net development (about a year), but I have been writing "C" and "C++" code for 20 years, hopefully I can figure this out..
    Thanks in advance for any input!
    Shayne

    Don't have a C# version, but here's a VB.NET version:
    Private Sub Page_Load(ByVal sender as System.Object, ByVal e As System.EventArgs)
        Dim boUsername As String = "Administrator"
        Dim boPassword As String = ""
        Dim boCmsName  As String = "TUEDA-BEXIR2S2"
        Dim boAuthType As String = "secEnterprise"
        Dim rptPath As String = "C:\ASP_NET\update_doc\302810928JDBC.rpt"
        Dim query As String = "Select Top 1 * From CI_INFOOBJECTS " _
                              & " Where SI_KIND='CrystalReport' " _
                              & " And SI_INSTANCE = 0 " _
                              & " And SI_NAME='302810928ODBC'"
        Dim boSession As EnterpriseSession
        Dim infoStore As InfoStore
        Dim reports   As InfoObjects
        Dim report    As Report
        Try
            boSession = (New SessionMgr()).Logon(boUsername, boPassword, boCmsName, boAuthType)
            infoStore = New InfoStore(boSession.GetService("", "InfoStore"))
            reports = infoStore.Query(query)
            report = reports.Item(1)
            report.Files.Item(1).Overwrite(rptPath)
            report.RefreshProperties()
            infoStore.Commit(reports)
        Finally
            If Not IsNothing(boSession) Then
                boSession.Logoff()
            End If
        End Try         
    End Sub
    Sincerely,
    Ted Ueda

  • How to copy  existing  row  value into new row  with a trigger. Same table

    Oracle guru,
    I am looking for a before or after trigger statement that will copy existing values inserted in the previous row into columns A & B. Then insert those values in a new row into column A & B if null? Same table. Hopefully my question is clear enough.
    -Oracle 10g express
    -I have an existing " before insert trigger" that insert id and timestamps when a new row is created.
    -Table is composed of column like id,timestamps,A,B and more.
    Thanks in advance
    Pierre

    957911 wrote:
    Oracle guru,
    I am looking for a before or after trigger statement that will copy existing values inserted in the previous row into columns A & B. Then insert those values in a new row into column A & B if null? Same table. Hopefully my question is clear enough.
    -Oracle 10g express
    -I have an existing " before insert trigger" that insert id and timestamps when a new row is created.
    -Table is composed of column like id,timestamps,A,B and more.
    Thanks in advance
    PierreI will call it a very Wrong design.
    It is a wrong Table Design. You are duplicating the data in table and not complying with the Database Normalization rules.
    How about Verifying if Column A & B are NULL before inserting and inserting another row and avoiding it in Triggers?
    If you are bent to achieve this, below code might be helpful. However, I would never go with this approach. If you would care about explaining the reason for going ahead with such a data model, people could suggest better alternative that might conform with Normalization rules.
    create or replace trigger trg_test_table
    after insert on test_table
    for each row
    declare
      pragma autonomous_transaction;
    begin
      if :new.col_a is null and :new.col_b is null then
        insert into test_table
        select 2, systimestamp, col_a, col_b
          from test_table
         where pk_col = (select max(pk_col) from test_table b where b.pk_col < :new.pk_col);
      end if;
      commit;
    end trg_test_table;Read SQL and PL/SQL FAQ and post the mentioned details.
    Do not forget to mention output from
    select * from v$version;

  • I am replacing my existing SATA hard drive to a Solid State hard drive and want to image the drive, is this possible?

    I am replacing my existing 320 GB SATA hard drive that clicks and makes weird noises to a Solid State hard drive and want to image the drive, is this possible?  I then want to replace the DVD with a secondary large drive for storage.
    So I am looking for any "gotchas" that I may be unaware of.
    Thanks!

    Put the Old drive in an external notebook drive enclosure. Install the SSD in your computer. Boot from your Old drive's Recovery HD:
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Clone Lion/Mountain Lion using Restore Option of Disk Utility
         1. Select Disk Utility from the main menu then press the Continue
             button.
         2. Select the destination volume from the left side list.
         3. Click on the Restore tab in the DU main window.
         4. Select the destination volume from the left side list and drag it
             to the Destination entry field.
         5. Select the source volume from the left side list and drag it to
             the Source entry field.
         6. Double-check you got it right, then click on the Restore button.
    Destination means the New SSD. Source means the external Old hard drive.
    Set the new Startup Disk to the SSD and restart the computer.
    This process clones both your old OS X volume and the Recovery HD volume to the SSD. You can use a similar process to clone the SSD to the new hard drive you will install.

  • I have photoshop CC and lightroom on my computer for 9.99/mo ...i just purchased a new computer to replace my existing computer and need to know how to download photoshop CC and lightroom onto my new computer using my current account so i don't have to pa

    i have photoshop CC and lightroom on my computer for 9.99/mo ...i just purchased a new computer to replace my existing computer and need to know how to download photoshop CC and lightroom onto my new computer using my current account so i don't have to pay again

    http://www.microsoft.com/mac/support
    http://answers.microsoft.com/en-us/mac/forum/macword?auth=1
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/microsoft-wor d-for-mac-2011-will-not-open-error/ecc42616-6f49-40bb-b8f5-e21c711ea359

  • How do I copy existing songs from Computer Hard Drive to IPOD 30GB

    How do I copy existing songs from Computer Hard Drive to IPOD 30GB? I am slightly learning disabled and have been unable to figure out how to add and or update. Thnaks

    If the songs are in iTunes and the iPod is set to sync automatically, the songs should already be on the iPod; if they aren't, follow the instructions in this article and post back with any error messages.
    If the iPod is set to sync manually, drag the songs onto the iPod in the iTunes source list.
    (21058)

  • How do I copy a list from one site to another that has a column that appends changes to existing text?

    I want to move a list from one SharePoint site to another, within the same collection. I have created a template and included the content but the column that is selected to append changes to existing text, has not copied in all cases, although it has for
    some items.
    I have a limited knowledge so won't be able to implement any solutions that require the use of code.

    Hi,
    According to your post, my understanding is that you wanted to copy a list from one site to another that has a column that appends changes to existing text.
    I recommend to use the custom workflow activity  Copy List Item Extended Activityto
    copy list items and files cross site.
    You can do this with codeless SharePoint Designer workflows as long as you can install the
    Codeplex Custom SharePoint Designer Workflow Activities. 
    These activities are also built-in to SPD2010.
    To install the custom activities, please follow the steps as below:
    Download the solution file form
    Useful Sharepoint Designer Custom Workflow Activities
    Copy the wps file to the Disk C.
    Open the SharePoint 2010 Management Shell.
    Run the command: add spsolution c:\ dp.sharepoint.workflow.wsp
    Open the Center Administration, click System Setting->Manage Farm Solution-> dp.sharepoint.workflow.wsp->Deploy to one or more Web Application.
    Open the SharePoint designer, add action from Custom Actions.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • To completely replace an existing web page with another

    Dreamweaver CC / Windows 7 / ...nube
    So , bought a domain and w/hosting (major headache) ...  I run into this "Make your webpage ..." offer .. with all the excitement and hoopla , I decided to take the "do-it-now-modify-later" route ... Hah !!! ... do I need to continue ? .
    Ok , so , how do I completely replace the existing layout / template with the one already on the site , which basicly is just a header and a name .... ?  FTP connected ... webpage in Dw already .
    I appreciate and can use all the help I can get
    vahn

    >Though that is what I thought but would so doing , I wondered ,
    >keeps the older page still active ? , like in the back or underneath the new page ?
    Keep in mind that Unix servers are case sensitive, so index.html is not the same file as Index.html. Maybe that's part of your problem?

  • Where to copy existing XCM file for new b2c project?

    Hi,
    I have created one "b2c_myproject" application by using build tool. I have one b2c application running. I want to copy it's XCM setting to my new project.
    I do not want to do setting by seeing each value in XCM. Any one has a Idea from where I can copy existing XCM files?
    Thanks.
    Ashish Patel.

    Hi Ravi,
    As per your instruction I copied XCM folder into desired location. But when I am accessing that xcm page like
    "http://localhost:50000/b2c_myproject/xcm/admin/init.do"
    But I can not see default setting which I have made to my original b2c applicaiton.
    there are no XCM configuration under customer section.
    pl. let me know where I am making mistake.
    What I want actully, I want to see my basic xcm setting in my b2c_myproject so do not have to do basic xcm setting.
    Thanks for your reply and helping me.
    Ashish Patel.

  • Copy Custom toolbar from one instance to another in Project server 2007

    Hi,
    I am currently using project server 2007. We have a number of instances in our Project server enivoronment. Is it possible to copy customized toolbar from one instance to another? If yes, how?
    Thanks in advance 

    Hi Khaldun,
    As per my reply in your previous post, here is a link explaining how to use the organizer:
    Http://blogs.msdn.com/b/project/archive/2010/10/22/tips-and-tricks-copy-custom-views-filters-tables-and-other-elements-to-other-projects.aspx?Redirected=true
    Basically, just copy the toolbar from the global source instance into a blank project file. Then do the same operation from the blank file containing your toolbar into the destination global model, still using the organizer. 
    Hope this helps. 
    Guillaume Rouyre - MBA, MCP, MCTS

  • Creating New plant by copying Existing

    Dear All,
    I have to create a new plant by copying existing one, I want all the configuration that exists for existing plant in new plant.
    My query is by copying plant only all the configuration for new plant will get configured. Such as account determination etc or i have to configure it manually.
    Thanks
    Nitesh

    Hi
    no for account determination
    we have to put  valuvation gruoping code 0001 or any other which you want to use  manually
    in T-code OMWD
    for copying plant we van copy storage location ,assigement to companycode and oms2 setting also get automatically copy
    Regards
    Kailas

  • Opening a new tab in safari opens an untitled tab while replacing the existing tab with top sites

    When I open a new tab in safari, it opens an untitled tab while replacing the existing tab with top. Then if I have other tabs open, the website url of the page I was on before I opened the untitled tab freezes and is shown on each other tab.
    How can i fix this problem? It is starting to occur with increasing frequency.

    I had the same problem and I suspect you are using Glims. I uninstalled Glims and voila, problem gone. I reinstalled Glims and the problem returned.
    Link to Glims uninstaller for those who have this problem http://www.MacHangout.com/dwnlds/Glims-UnInstall.dmg.zip
    I'll report the bug and hope they fix it soon, I like Glims.

  • Copy existing queries on InfoProvider to other InfoProvider

    Hello,
    There is requirement of copy existing queries on InfoProvider (Standard InfoCube) to other InfoProvider (Z Version of InfoCube). Can we use RSAQCOPY...?
    If not, is there a way to do that (any other SAP Program of Function Modules). Also while copying can we copy only selected Restricted Key Figures to Target InfoProvider.
    Any valuable suggestions, Appreciated.
    Thanks,
    Madhu

    Hi Madhu,
    Here we have two methods of copying queries from one InfoProvider to another (Target Info provider).
    1. RSZC: Only rule is that all the characteristics contained in the source infoprovider should also be contained in the target infoprovider (i.e. both the cubes should have same Structure).
    2. Using FM: RSZ_I_COPY_QRY_TO_CUBE,  With this you can copy the query even though the characteristics contained in the source infoprovider are not present in the target infoprovider.
    Hope this helps u,
    Thanks,
    Sai Chand.S

Maybe you are looking for

  • File encoding in sender file comunication channel

    hello everyboy, i have a strange situation. 2 PI 7.0 installation: develop and production. Identical. Same SP level, java vm, etc etc I have a interface file to idoc. File sender comunication channel are FTP and with content conversion. They are iden

  • I can't login from the desktop app - "Login error. Please contact the Admin."

    1) Does anyone have the same problem as described below? 2) Does anyone know how to fix it? When I try to "work online" from the desktop app, I get asked to log out of offline, then log into online. When I put in my username and password, it gives me

  • Problem in material repliction

    Hi friends, I have a problem on Material replication from R/3 to EBP. I had configured all the required settings in EBP as well as in R/3. Whenever we are starting initial loading R3AS I am getting outbound queues in EBP instead of R/3. I am getting

  • D100 White Balance is Different between LR 2.0 & Lr 1.4

    Am I going senile or is D100 daylight now around 4300 in LR 2 vs around 5300 in LR 1.4? Did I miss something? (I'm about 25% through the help file). John PS Love LR 2.0. A bit snappier and it runs through my 50,000 photos with gusto.

  • Could any expert in WAAS Mobile see this question?

    Hi everybody! I succesfully installed WAAS Mobile in a customer. Everything worked fine with WAAS, except for a particular application. WAAS Mobile is not working with a particular client/server Application. When WAAS Client is running, the Applicati