How to copy mailstore from one system to another ? is nfs possible?

hello we want to copy the mailstore which is /global/mailstore/opt/SUNWmsgsr/data to a new system. we try to mount this directory with nfs in the new system in order to make a copy but i have read that nfs may cause data corruption and lose data, mails.
is it still the case. the current messaging server is
Sun Java(tm) System Messaging Server 6.2-8.04 (built Feb 28 2007)
libimta.so 6.2-8.04 (built 19:28:07, Feb 28 2007)
SunOS jesmail 5.9 Generic_118558-21 sun4u sparc SUNW,Sun-Fire-V440
the mailstore will be moved for a migration. the new system is;
Sun Java(tm) System Messaging Server 6.3-6.03 (built Mar 14 2008; 32bit)
libimta.so 6.3-6.03 (built 17:07:13, Mar 14 2008; 32bit)
SunOS messaging1 5.10 Generic_137112-02 i86pc i386 i86pc

mario_garcia wrote:
we have tried to mount /global/mailstore/opt/SUNWmsgsr/data in readonly to a temp directory in the new system (/mnt/old-mail)
but have no access to it? (cd, ls,) give permission denied and the owner of directory is 60002. i checked in the /etc/passwd and it corresponds to user noaccess. is this behaviour due that i try to mount the message store in another system while the "old" messaging server is running?Make sure that the mailsrv user (/etc/passwd) and mail group (/etc/group) entries on both systems are identical, i.e. their ID's must match otherwise the NFS can re-map the files to the 'nobody' user. You will need to remount the directory after making any changes to the user/group files.
i have mounted another dircetory outside the mailstore with the same settings (read-only) and it works correctly it is mounted read only and i can cd to it and list the contents.This is probably because the directory was owned by a user that existed on both systems with the same ID e.g. the root user.
Regards,
Shane.

Similar Messages

  • How  to transfer data from one system to another by datamart please give de

    how  to transfer data from one system to another by datamart please give details

    Hi Deba,
    Find the below SAP help doc which may help u...
    http://help.sap.com/saphelp_nw70/helpdata/en/12/43074208ae2a38e10000000a1550b0/frameset.htm
    Also find the below threads...
    Loading data from one cube to another cube.
    data copy from infocube to infocube in two different BW systems
    Delta when loading from ODS to ODS
    reg datamart
    Data mart flag
    Regards,
    KK.

  • How to copy WorkFlow from one system to anorther system

    Hi All,
    I have to Copy the Work Flow from One system to another system. So how to download and upload workflow from SAP. Please help me in this regard.
    Thanks,
    Ananth

    Hi Ananth,
    Yes it is. From the workflow builder menu, choose Workflow > Import/Export and export to an XML file.
    You can also import from an XML file into a different system in which case the builder will create a new
    workflow in a 'New, Not Saved' status. Then when you save it, it will assign the unique IDs for the workflow and each task.
    You might also consider getting the program logic for any custom business objects. You can do this by going to the basic data of the business object and doubleclick the program name. From here, you can choose download from the utilities menu to get the program which includes the custom methods,  attributes, etc.
    Rgds,
    Ramani N

  • BOPF, how to transfer BOs from one system to another using ZSAPLINK.

    Hi,
    Is there a ways to transfer the local objects created using BOPF from one system to another using ZSAPLINK?
    Thanks and Regards,
    Vineet.

    Hi Deba,
    Find the below SAP help doc which may help u...
    http://help.sap.com/saphelp_nw70/helpdata/en/12/43074208ae2a38e10000000a1550b0/frameset.htm
    Also find the below threads...
    Loading data from one cube to another cube.
    data copy from infocube to infocube in two different BW systems
    Delta when loading from ODS to ODS
    reg datamart
    Data mart flag
    Regards,
    KK.

  • How to move files from  one  system  to another in plsql

    Hi all,
    I want to move file from one system to another using plsql procedure .
    Kindly let me know what package i have to use for doing this .
    Thanks,
    P Prakash
    Edited by: prakash on Jul 27, 2011 2:20 AM
    Edited by: prakash on Jul 27, 2011 2:59 AM

    BluShadow wrote:
    That's ok if you want to diet. ;)Ooh look, the strange punctuation is back. Can it be true that the forum software has caught up with the '80s?
    I almost feel like connecting to the internet using a 9600 baud modem to celebrate.
    http://upload.wikimedia.org/wikipedia/commons/5/5d/TeleGuide-terminal.jpg
    Colon dash right bracket.
    (Old habits die hard)

  • Copying programs from one system to another

    Is it possible to copy programs from SAP 4.6 system to SAP 6.0 system?If so , how can this be done?or we can only create new programs in 6.0.and then do a copy paste from 4.6 over there?

    ur correct....create the programs in 6.0 version.....goto 4.6 and using utilities>more utilities>download...download to a file...now goto 6.0 and using utilities->more utilities->upload the program....
    Also check....
    How to copy programs from an installation SAP to another one?
    Message was edited by:
            Ramesh Babu Chirumamilla

  • How to copy file from  one location to another

    Hi,
    I am new to java, I tried the following code to move the file from one location to another
    public class CopyFiles {
    public String copy ( File source, File target)
    throws IOException {   
    FileChannel sourceChannel = null;
    FileChannel targetChannel =null;
    try {   
    sourceChannel =new FileInputStream(source).getChannel();
    targetChannel= new FileOutputStream(target).getChannel();
    targetChannel.transferFrom(sourceChannel, 0,
    sourceChannel.size());
    finally {   
    targetChannel.close();
    sourceChannel.close();
    return "Success";
    public static void main(String [] args) throws Exception{   
    File source = new File("C:\\users\\download.pdf");
    File destinationFile = new File("C:\\apple\\download.pdf");
    copy(source, destinationFile);
    The above code is working perfectly, but I Don't want to include the file name in destination file. i.e. File destinationFile=new File("C:\\apple"), and at the same time the pdf with same name has to get stored in the destination location, how can I achieve this.

    kameshb wrote:
    I Don't want to include the file name in destination file. i.e. File destinationFile=new File("C:\\apple"), and at the same time the pdf with same name has to get stored in the destination location, how can I achieve this.It's not totally clear what you're saying here, but what I think you mean is that you don't want to explicitly set the destination file name--you want to just give the copy the same name as the original. Yes?
    If that's the case, then break the original up into separate directory and file name portions, and then construct the destination path from the destination directory plus original file name. You can do that by manipulating the full path string, or by using the methods in java.io.File.

  • How to copy data from one table to another (in other database)

    Hi. I would like to copy all rows from one table to another (and not use BC4J). Tables can be in various databases. I have already 2 connections and I am able to browse source table using
    ResultSet rset = stmt.executeQuery("select ...");
    But I would not like to create special insert statement for every row . There will be problems with date formats etc and it will be slow. Can I use retrieved ResultSet somehow ? Maybe with method insertRow, but how, if ResultSet is based on select statement and want to insert into target table? Please point me in the right direction. Thanks.

    No tools please, it must be common solution. We suceeded in converting our BC4J aplication to PostgreSQL, the MSSQL will be next. So we want to write simple aplication, which could transfer data from our tables between these 3 servers.

  • How to Copy BoM from one organization to another Organization

    Hi We are using Oracle EBS 11i, we are having problem that when one of our finished Product moved from one org to another we are not be able to copy and we have to do manually enetr each line of BoM in new Org,
    Any one can help me to find out the solution which will help us to copy one BoM from Orag 1 to Org 2.
    Regards
    Umair

    Hi Umair,
    While using the copy option, go to the org where bill is not present.
    Enter the Parent Item in the header and go to tools--> copy bill from
    There you can select the org from which bill needs to be copied.
    Also make sure your responsibility has organization access to those inventory orgs.
    Thanks
    -Arif.

  • How to copy file from one table to another table at another database

    I need to transfer my tables from one workspace and schema to another workspace and schema. Basically I need to create again all the tables at this new schema. How could I transfer data from tha table at old schema to the table at new schema when this table has files stored in it? (data type is blob)
    thank you so much,
    Silver

    Hello Silver,
    Depending which database you're using (if it's available) I would recommend to use datapump.
    Datapump allows you to copy an entire schema to another database, it's the "new" export/import you might now.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/
    http://www.apexblogs.info/
    REWARDS: Please remember to mark helpful or correct posts on the forum

  • How to copy value from one field to another in a Apex Form

    Hello guys,
    There are 2 addresses one is shipping and other is billing. I do not want the customer to re-enter all the details if it is the same address. So based upon an action, it should take the live values from one address field and populate the other address field. I know in JS you can do it, but how to implement that in Apex?
    I guess using Dynamic Actions to achieve this in Version 4 but do not know how. Read quite some info but no luck.
    Thanks in advance!

    Hi,
    I have assumed that you have your shipping address at the top of the page, and then further down the page you have your billing address that you want to enable the users to copy (if this is in reverese, you will need to switch the js variables in the code following).
    I would create a Select List item above the 'Billing Address' details, called PX_SAME_ADDRESSThis select list would be static, with the options Null.
    I also assume you would have pairs of address page items such as:
    PX_SHIPPING_ADDRESS_L1
    PX_BILLING_ADDRESS_L1
    PX_SHIPPING_ADDRESS_L2
    PX_BILLING_ADDRESS_L2
    PX_SHIPPING_POST_CODE
    PX_BILLING_POST_CODEThen copy the following code into the HTML Header of the page definition:
    <script language="JavaScript" type="text/javascript">
    function copyAddress()
       if( $x('PX_SAME_ADDRESS').value == 'YES')
         $x('PX_BILLING_ADDRESS_L1').value = $x('PX_SHIPPING_ADDRESS_L1').value;
         $x('PX_BILLING_ADDRESS_L2').value = $x('PX_SHIPPING_ADDRESS_L2').value;
         $x('PX_BILLING_POST_CODE').value = $x('PX_SHIPPING_POST_CODE').value;
       else //Clear Address Fields
         $x('PX_BILLING_ADDRESS_L1').value = " ";
         $x('PX_BILLING_ADDRESS_L2').value = " ";
         $x('PX_BILLING_POST_CODE').value = " ";
    </script>Then, in your PX_SAME_ADDRESS item, copy the code below into the Element > HTML Form Element Attributes field.
    onChange="copyAddress();"Hopefully this works for you too, and should give you some basis to play around with.
    Amanda.

  • How to copy pictures from one iPad to another iPad?

    I want to copy pictures in my new iPad3 to my iPad1 without going through my apple computer.  Is there a way to do it?  I tried to use the usb connector to sync but it can only go from my iPad 3 to iPad1 but not the other way around.  (I did try to switch the "direction" of the usb connector.)
    If I have to go through my apple computer, how should I proceed?  I have created another iTune library for the new iPad3.

    Use Finder on your computer to locate your iPad when attached. Dig down through the folders (which will only contain photos and videos) to locate your photos. Select them and copy them to a new folder or folders on your computer and subsequently check that folder or folders in iTunes during a sync to the other iPad.

  • How to copy wndow from one page to another

    hi
    i need to copy a window from first page to second page in a form
    how to do it
    can utell me the complte process
    regards
    arora

    i am getting option of  when clicking copy element
    from window
    to
    window
    and radio butto
    .) copy without text element
    .)copy with text element
    wht to chose
    also my problme is that i have coded a code in a window1 to display " pack" which is not a main window
    this is displaying in the first page of putput but not from seocond onwards
    whereas the window1 exists in both the pages
    so do we need to copy the window 1 to page 2 also even if it iw already tehre is we make any changes in code that also i need to know
    and if yes how to do it?
    regards
    Arora

  • Copy Screen from one system to another

    Hi,
    My development system has been upgraded to ECC 6.0 from 4.7 . Now some of the standard screens are missing in ECC 6.0. Now I need to  copy the missing screens from the quality system which is still in 4.7 to the upgraded ECC 6.0 development system. Is there any method?.
    I tried to use Download/Upload method.I am able to download the screen from quality but i am not able to upload it into the development as 'Upload' option is greyed out in development.
    Thanks & Regards,
    Soumya.

    Hi,
    Note: This method is useful for Z-screens only.
      Execute SE51 T-code>enter your module pool program name&screen number>click on change  push button>Go to Layout by click on Layout push button>then choose path in menu bar like as Utilities>upload/down load>download.  So you can down load from source system. next follow same steps in your destination system use upload instead of download.
    Regards,
    BBR.

  • How to copy query from one cube to another ? OR atlest a KF strecture?

    Hello edperts,
    just wanted some tips on coping a query or KF strecture from one cube to other . i am trying to use TCODE RSZC, but bcoz some of the chars. are not present in the target cube i a m not able to copy it.
    But, looks like both the cube has save KFs, so i thought atlest let me copy KFS , so i just have to pull manually chars. but thats also not working..
    Is there any back door way to do it ? please help me, it might save lots of time.
    Appreciated.

    Hi,
    Check the below article, it might help you out.
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/204111a9-0fca-2d10-219c-be20e686cdb5?QuickLink=index&overridelayout=true]
    Regards,
    Durgesh.

Maybe you are looking for

  • How to get Aperture and iPhoto to use Pentax *ist DL RAW images natively

    Using some techniques that I found in various places in these forums, I am going to give step-by-step instructions to get Aperture and iPhoto to recognize Pentax *ist DL RAW images natively. Note: This worked for me using 10.4.6 with the latest iPhot

  • Production order without material

    I am using Production order without material and without sales order in CO07. I want to derive profit center for this production order. What  is procedure to derive it?

  • Powerpivot charting: Trying to create a chart in PowerPivot but it creates a table instead.

    I do click the ICON for charting but the application seems to ignore the request and creates the table instead.  I have uninstalled and reinstalled several times but it has not made a difference.

  • Can't get screen to show after login

    Hello, I just purchased the the software upgrade and I get the loading screen, but then my screen just flickers after. Often I see my desktop, but it isn't on my screen long enough for me to even read it. I have a Mac mini from 2009, and just a regul

  • How to Mirror pages!!!

    hi, is there anyone who knows how to mirror pages by acrobat reader. i have a very important pdf document, hardly found from internet. but pages are mirrored horizontaly. i mean when you look at monitor from a mirror everything is fine :D is there an