Ecc 6.0 file system setup in solaries

Hi,
   I want to install ecc 6.0  on solaries system.
Can any one provide file system setup before starting the installation. Like /usr/sap this kind of file setup.
It will help ful to our installation.
Regards,
Venkat

Hi,
I think you are not clear, you have not reade upgrade guide. Please reade upgrade guide so many other thing to be require in installation. All are depend on the your company requirement and how much data will grow per month etc.
Regards,
Anil

Similar Messages

  • How so I protect my root file system? - x86 solaris 10 - zfs data pools

    Hello all:
    I'm new to ZFS and am trying to understand it better before I start building a new file server. I'm looking for a low cost file server for smaller projects I support and would like to use the ZFS capabilities. If I install Solaris 10 on a x86 platform and add a bunch of drives to it to create a zpool (raidz), how do I protect my root filesystem? The files in the ZFS file system are well protected, but what about my operating system files down in the root ufs filesystem? If the root filesystem gets corrupted, do I lose the zfs filesystem too? or can I independantly rebuild the root filesystem and just remount the zfs filesystem? Should I install solaris 10 on a mirrored set of drives? Can the root filesystem be zfs too? I'd like to be able to use a fairly simple PC to do this, perhaps one that doesn't have built in raid. I'm not looking for 10 terabytes of storage, maybe just four 500gb sata disks connected into a raidz zpool.
    thanks,

    patrickez wrote:
    If I install Solaris 10 on a x86 platform and add a bunch of drives to it to create a zpool (raidz), how do I protect my root filesystem?Solaris 10 doesn't yet support ZFS for a root filesystem, but it is working in some OpenSolaris distributions.
    You could use Sun Volume Manager to create a mirror for your root filesystem.
    The files in the ZFS file system are well protected, but what about my operating system files down in the root ufs filesystem? If the root filesystem gets corrupted, do I lose the zfs filesystem too?No. They're separate filesystems.
    or can I independantly rebuild the root filesystem and just remount the zfs filesystem? Yes. (Actually, you can import the ZFS pool you created).
    Should I install solaris 10 on a mirrored set of drives?If you have one, that would work as well.
    Can the root filesystem be zfs too?Not currently in Solaris 10. The initial root support in OpenSolaris will require the root pool be only a single disk or mirrors. No striping, no raidz.
    Darren

  • SAP ECC 6.0 file system Restore

    Dear Friends,
    Happy Holi.
    I have restore file system backup of our development server to another host having oracle 10g and ECC 6.0.
    After restore database has been up successfully.
    But listner is not running when I trid to run listner it is giving the error as below.
    jkeccbc:oradvr 2> lsnrctl start
    LSNRCTL for HPUX: Version 10.2.0.2.0 - Production on 19-MAR-2011 15:18:33
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Starting /oracle/DVR/102_64/bin/tnslsnr: please wait...
    TNSLSNR for HPUX: Version 10.2.0.2.0 - Production
    System parameter file is /oracle/DVR/102_64/network/admin/listener.ora
    Log messages written to /oracle/DVR/102_64/network/log/listener.log
    Error listening on: (ADDRESS=(PROTOCOL=IPC)(KEY=DVR.WORLD))
    TNS-12557: TNS:protocol adapter not loadable
    TNS-12560: TNS:protocol adapter error
      TNS-00527: Protocol Adapter not loadable
    Listener failed to start. See the error message(s) above...
    Regards
    Ganesh Datt Tiwari

    Hi Mark,
    Please find below
    cat listener.ora
    Filename......: listener.ora
    Created.......: created by SAP AG, R/3 Rel. >= 6.10
    Name..........:
    Date..........:
    @(#) $Id: //bc/700-1_REL/src/ins/SAPINST/impl/tpls/ora/ind/LISTENER.ORA#4 $
    ADMIN_RESTRICTIONS_LISTENER = on
    LISTENER =
      (ADDRESS_LIST =
            (ADDRESS =
              (PROTOCOL = IPC)
              (KEY = DVR.WORLD)
            (ADDRESS=
              (PROTOCOL = IPC)
             (KEY = DVR)
            (ADDRESS =
              (COMMUNITY = SAP.WORLD)
              (PROTOCOL = TCP)
              (HOST =jkeccbc)
              (PORT = 1527)
    STARTUP_WAIT_TIME_LISTENER = 0
    CONNECT_TIMEOUT_LISTENER = 10
    TRACE_LEVEL_LISTENER = OFF
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = DVR)
          (ORACLE_HOME = /oracle/DVR/102_64)
    ===========================================
    cat tnsnames.ora
    Filename......: tnsnames.ora
    Created.......: created by SAP AG, R/3 Rel. >= 6.10
    Name..........:
    Date..........:
    @(#) $Id: //bc/700-1_REL/src/ins/SAPINST/impl/tpls/ora/ind/TNSNAMES.ORA#4 $
    DVR.WORLD=
      (DESCRIPTION =
        (ADDRESS_LIST =
            (ADDRESS =
              (COMMUNITY = SAP.WORLD)
              (PROTOCOL = TCP)
              (HOST = jkeccbc)
              (PORT = 1527)
        (CONNECT_DATA =
           (SID = DVR)
           (GLOBAL_NAME = DVR.WORLD)
    Regards
    Ganesh Datt Tiwari

  • ZFS file system mount in solaris 11

    Create a ZFS file system for the package repository in the root pool:
    # zfs create rpool/export/repoSolaris11
    # zfs list
    The atime property controls whether the access time for files is updated when the files are read.
    Turning this property off avoids producing write traffic when reading files.
    # zfs set atime=off rpool/export/repoSolaris11
    Create the required pkg repository infrastructure so that you can copy the repository
    # pkgrepo create /export/repoSolaris11
    # cat sol-11-1111-repo-full.iso-a sol-11-1111-repo-full.iso-b > \
    sol-11-1111-repo-full.iso
    # mount -F hsfs /export/repoSolaris11/sol-11-1111-repo-full.iso /mnt
    # ls /mnt
    # df -k /mnt
    Using the tar command as shown in the following example can be a faster way to move the
    repository from the mounted file system to the repository ZFS file system.
    # cd /mnt/repo; tar cf - . | (cd /export/repoSolaris11; tar xfp -)
    # cd /export/repoSolaris11
    # ls /export/repoSolaris11
       pkg5.repository README
       publisher sol-11-1111-repo-full.iso
    # df -k /export/repoSolaris11
    # umount /mnt
    # pkgrepo -s /export/repoSolaris11 refresh
    =============================================
    # zfs create -o mountpoint=/export/repoSolaris11 rpool/repoSolaris11
    ==============================================I am trying to reconfigure the package repository with above steps. when reached the below step
    # zfs create -o mountpoint=/export/repoSolaris11 rpool/repoSolaris11
    created the mount point but not mounted giving the error message
    cannot mount ,directory not empty When restarted the box, threw service adm screen with error message
    not able to mount all pointsPlease advise and Thanks in advance.

    Hi.
    Don't mix content of directory as mountpoint and what you see after FS was mounted.
    On othet ZFS - mount point also clear. You see contetn of ZFS file system.
    For check you can unmount any other ZFS and see that mountpoint also clear.
    Regards.

  • Solaris 10 - File System Size / Layout

    Hello, I�m very new to Solaris OS � UNIX world and have a question around the file system.
    I have SUN System with a single 36GB of Hard Disk, and eventually I want to install Oracle 10g on it as a development server for myself.
    My question is around the file system size and layout
    I have installed Solaris 10 and accepted the default file system, which is as below:
    Filesystem size used avail capacity Mounted on
    /dev/dsk/c1t1d0s0 5.0G 3.4G 1.6G 69% /
    /devices 0K 0K 0K 0% /devices
    ctfs 0K 0K 0K 0% /system/contract
    proc 0K 0K 0K 0% /proc
    mnttab 0K 0K 0K 0% /etc/mnttab
    swap 1.5G 1.1M 1.5G 1% /etc/svc/volatile
    objfs 0K 0K 0K 0% /system/object
    /platform/sun4u-us3/lib/libc_psr/libc_psr_hwcap1.so.1 5.0G 3.4G 1.6G 69% /platform/sun4u-us3/lib/libc_psr.so.1
    /platform/sun4u-us3/lib/sparcv9/libc_psr/libc_psr_hwcap1.so.1 5.0G 3.4G 1.6G 69% /platform/sun4u-us3/lib/sparcv9/libc_psr.so.1
    fd 0K 0K 0K 0% /dev/fd
    swap 1.5G 136K 1.5G 1% /tmp
    swap 1.5G 88K 1.5G 1% /var/run
    /dev/dsk/c1t1d0s7 28G 28M 28G 1% /export/home
    What I don�t understand is when I eventually install Oracle, where will the directory go for it?
    The /home/export folder is aprrox: 28GB which is now taking up most of the space, and I understand that this is for users, therefore my question is:
    1.Should I have allocated a more space to the root file system for oracle during the OS install?
    2. If so what should I do? (its not a production system and I know it will have to go somewhere on the single drive, I�m happy to rebuild as I�m still learning the OS).
    Any suggestions?
    Rgds
    D

    Thanks, I do have this but needed info on the file system layout... but I have the info now...
    If you select the auto file system layout on Solaris 10 then it gives the remaining space to the home/export . I have since re-installed, customised the file system layout and have space for the database.
    D

  • How to configure a QFS file system on RAID5 disk in Sol 10 sparc

    Hi Forum,
    I am setting up Sun cluster 3.2 for oracle RAC on solaris Sparc system (2 node setup)
    I have a SAN disk of emc clarrion which is a RAID 5 disk.
    For Oracle clusterware to install it needs QFS file system so i also downloaded sun storedge QFS (refering to sun DOC)
    When i try to mount the samfs filesystem
    bash-3.00# samsharefs Data
    samsharefs: Filesystem Data not mounted
    bash-3.00# sammkfs Data
    Building 'Data' will destroy the contents of devices:
    /dev/dsk/c3t60060160F6B02000760677FF21FCDD11d0s4
    /dev/dsk/c3t60060160F6B02000760677FF21FCDD11d0s5
    Do you wish to continue? [y/N]y
    total data kilobytes = 104857600
    total data kilobytes free = 104857536
    total meta kilobytes = 104857600
    total meta kilobytes free = 104856192
    bash-3.00# samfsinfo Data
    name: Data version: 2
    time: Thu Feb 19 20:05:32 IST 2009
    count: 2
    capacity: 0000000006400000 DAU: 64
    space: 00000000063fffc0
    meta capacity: 0000000006400000 meta DAU: 16
    meta space: 00000000063ffa80
    ord eq capacity space device
    0 20 0000000006400000 00000000063ffa80 /dev/dsk/c3t60060160F6B02000760677FF21FCDD11d0s4
    1 21 0000000006400000 00000000063fffc0 /dev/dsk/c3t60060160F6B02000760677FF21FCDD11d0s5
    bash-3.00# mount /db_qfs
    mount_samfs: Non shared fs and shared are mutually exclusive.
    When i try to mount the file system i get the above message.
    Kindly suggest appropriate steps to resolve this issue.
    Regards
    Prakash

    As per the usual setup of a shared SAN disk. The file system used is UFS. when i started installing oracle clusterware i came to a point where i had to run root.sh. the error i got was UFS filesystem not supported.
    So now i get stuck in deciding which filesystem oracle clusterware would support. As i had the sun storedge QFS file system setup in the document i continued to follow it.
    If you have any steps for configuring oracle clusterware to use the UFS file system it would be an additional help. As i have the UFS file system setup ready at my end.
    Regards
    Prakash

  • Mounting FAT32 windows file system

    Hello
    I'm new to solaris.
    i am using solaris 10 on x86 machine. i'm using 2 hard disks. i installed solaris in one separate hard disk. now i want to mount my windows FAT 32 file system to my solaris.it is installed in another hard disk. any one can help me to use windows file system in solaris.
    And i also know how to configure internet setting in solaris.. that is where i can enter the IP address ,Access point name. because i'm using internet using my PDA that is connected to my pc. please help me...
    Thanks in Advance.
    Prakash.M

    PPP and PPPoE configuration are described in the [Network Administration Guide|http://docs.sun.com/app/docs/doc/816-4555/modemtm-1] .
    A WWAN device should appear as a serial device in the */dev/term* directory. The [Wireless Wide Area Network|http://www.opensolaris.org/jive/forum.jspa?forumID=134] discussion group is probably the best place to get specific questions answered regarding your setup.

  • Sun Cluster 3.0 Veritas Volume manager add a new file system

    Hello people recently in need add a new file system to my Solaris cluster installation ( with oracle 8), but I have some dudes about the correct procedure for this.
    I put the procedure:
    Ok:
    /etc/vx/bin/vxdisksetup -i c4t1d1
    /usr/sbin/vxdg -g space-dg adddisk space07= c4t1d1s2
    /etc/vx/bin/vxdisksetup -i c4t1d2
    /usr/sbin/vxdg -g space-dg adddisk space08= c4t1d2s2
    /usr/sbin/vxassist -g space-dg make vol3-space 70686720 layout=striped stripeunit=128 alloc="space07 space08"
    mkfs -F vxfs /dev/vx/rdsk/space-dg/vol3-space
    In this point I update my dginfo in the active node of my cluster
    scconf -c -D name=space-dg,sync
    Add in all node /etc/vfstab)
    /dev/vx/dsk/space-dg/vol3-space /dev/vx/rdsk/space-dg/vol3-space /space_mount/vol3-space vxfs 2 no     -
    Made the mount point in all nodes:
    mkfs /space_mount/vol3-space
    mount the file system in active node.
    mount /space_mount/vol3-space
    use sccheck.
    My dude is about is about Storage plus resource (space-grp:space-storageplus-res:FilesystemMountPoints) because this don�t have the new mount poing, if I must put the new mount point in this property using: scrgadm because my cluster has HAStorage-plus.
    What is the optimal form? If I must use scrgadm I can modify this property (FilesystemMountPoints) with
    (scrgadm -x FilesystemMountPoints =value) ??
    Or must recreate space-storageplus-res????
    Thanks for you time and sorry for my English.

    Thanks I made sucessuly.
    The final procedure:
    1 create the disks in vertias (not the volumen)
    2 if you add new disk, recreate the did
    scdidadm -L
    scdidadm -r (must exec in all nodes)
    scgdevs (in all nodes)
    3 Disable the resouces using scswitch -n -j (the resouce)
    in my case we disable all resouce but NOT the resouce group. (only exec in one node)
    Make the new file system. :-D. makefs. (in one node)
    4 make the new pount mount in all nodes.
    5 insert the new line in vfstab (remenber the mount at boot to set to no)
    scrgadm -pvv | grep "FilesystemMounPoints="
    6 You must put the "FilesystemMounPoints=" in same orden in vfstab
    I use the sunplex (more easy) ..
    Renable to online your resources.
    Test to switch over to another node.
    The new filesystem may be automaticaly mounted.
    Bye an thanks for the help

  • File system for SAP ECC, EP , BI and CRM installation on Solaris/DB2

    Hello,
    We are going to implement SAP ECC 6.0 with EP 7, BI and CRM on Solaris operating system with IBM DB2 database.
    All these applications are going to be installed on single server, as being a basis person, I know this is not all recommended.
    But due to client's requirement and keeping cost factor in mind I need to install all these application on single box.
    Now here I need your help. as I basis person, I know the required Solaris file system for SAP ECC 6.0 but not having any Idea about other application like EP/ CRM and BI .
    If anyone able to help me with required Solaris file system. it will be great help.
    Please let me know if there is any query.
    Thanks.

    > All these applications are going to be installed on single server, as being a basis person, I know this is not all recommended.
    > But due to client's requirement and keeping cost factor in mind I need to install all these application on single box.
    Why not using Solaris zones/container? This decreases the administrative amount tremendeously since you will deal as with "single machines" but they all run together on one box.
    > Now here I need your help. as I basis person, I know the required Solaris file system for SAP ECC 6.0 but not having any Idea about other application like EP/ CRM and BI .
    So you'd need to read the installation guides
    Markus

  • Solaris 10  - After installation read only file system

    Dear All,
    I have installed the Solaris 10 on my x86 system with out any problem. The installation was completed successfully. I have followed the installation instructions that are mentioned in the following link.
    http://docs.sun.com/app/docs/doc/817-0544/6mgbagb19?a=view
    I am facing a different problem. I am not able to create even a single file / sub-directory on any of the existing directories. It always says READ ONLY file system can not create firl / directory.
    Please help me how to resolve this issue.
    Thanks in advance.
    Regards,
    Srinivas G

    What do you get for 'svcs -xv' output?
    Darren

  • Is there a way to configure NTFS file system on an NSS 324 SmartStorage unit. So far I can setup ext 3 or ext 4 but no option for NTFS

    Is there a way to configure NTFS file system on an NSS 324 SmartStorage unit. So far I can setup ext 3 or ext 4 but no option for NTFS. This unit should be joining a Windows Server 2008 R2 network and needs to be shared with all users. This unit will replace a File server running Win 2003 SP2.
    Message was edited by: Hermann Koster
    Thank you very much for your reply. The idea is to decommission the Windows file server which is running Windows Server 2003 SP2 operating system but is not running as a DC but just a member server. All this server is doing is providing file server services so my idea is to replace it with the NSS 324 box. My only concern is that when my NSS joins the domain all my users would be able to see and access network shares transparently, the same way they saw the former W2003 file server. After I transferred the data from File server I will use the same for NSS that was used for file server as well as same IP address and folders path as before.
    Any suggestions or advice?
    Once again thank you very much for your reply.
    Cheers,

    The internal HDDs must be formatted in either EXT3 or EXT4 file system because NSS uses Linux OS.  This is mainly because the RAM designed to fit with the customized Linux OS's size.
    You can connect to an external HDD via a  USB or eSATA port. The external HDD's file system can be NTFS, FAT32, AFT or EXT3/4 to be recognized for read/write. You can connect a 2TB USB/eSATA drive connec to the NSS via USB port to format your HDD for NTFS, AFT, FAT32, or EXT3/4 partition.
    You can join the NSS to a Windows domainr so all domain users to access NSS. You cannot replace the NSS for the Windows 2003 SP2 server. They are two different products and do different jobs. Windows server is features sets server while the NSS is the files/data server.
    Hope that helps!!

  • How to determine the file system on Solaris

    Friends,
    How to determine which file system I have installed UFS or ZFS on Solaris
    Thanks

    Other methods would include looking at the /etc/vfstab if it's in there or fstyp(1M):
    System Administration Commands fstyp(1M)
    NAME
    fstyp - determine file system type
    SYNOPSIS
    fstyp [-a | -v] special [:logical-drive]

  • Solaris 10:unable to mount a solaris root file system

    Hi All,
    I am trying to install Solaris 10 X86 on a Proliant DL385 Server it has a Smart array 6i, I have download the driver from the HP web site, on booting up the installation CD 1, adding the device driver, it sees the device but now says it can���t mount the device. Any clues what I need to do?
    Screen Output:
    Unable to mount a Solaris root file system from the device
    DISK: Target 0, Bios primary drive - device 0x80
    on Smart Array 6i Controller on Board PCI bus 2, at Dev 4
    Error message from mount::
    /pci@0,0/pci1022,7450@7/pcie11,4091@4/cmdk@0,0:a: can't open - no vtoc
    any assistence would be appreciated.

    Hi,
    I read the Message 591 (Agu 2003) and the problem is quite the same. A brief description: I have aLaptop ASUS with HDD1 60GB and a USB storage HDD (in next HDD2) 100GB. I installed Solaris 10 x86 on HDD2 (partition c2t0d0s0). At the end of installation I removed the DVD and using BIOS features I switched the boot to HDD2. All ok; I received the SUN Blue Screen and I choose the active Solaris option; but at the beginning of the boot I received the following error message
    Screen Output:
    Unable to mount a Solaris root file system from the device
    DISK: Target 0: IC25N060 ATMR04-0 on Board ....
    Error message from mount::
    /pci@0,0/pci-ide2,5/ide@1/cmdk@0,0:a: can't open
    any assistence would be appreciated.
    Regards

  • Unbootable Solaris 10 x86 installed on ZFS root file system

    Hi all,
    I have unbootable Solaris 10 x86 installed on ZFS root file system. on an IDE HDD
    The bios keep showing the msg
    DISK BOOT FAILURE , PLEASE INSERT SYSTEM BOOT DISK
    please note :
    1- the HDD is connected properly and recognized by the system
    2- GRUB don't show any messages
    is there any guide to recover the system , or detail procedure to boot system again
    Thanks,,,

    It's not clear if this is a recently installed system that is refusing to boot OR if the system was working fine and crashed.
    If it's the former, I would suggest you check the BIOS settings to make sure it's booting from the right hard disk. In any case, the Solaris 10 installation should have writting the GRUB stage1 and stage2 blocks to the beginning of the disk.
    If the system crashed and is refusing to boot, you can try to boot from a Solaris 10 installation DVD. Choose the single user shell option and see if it can find your system. You should be able to use format/devfsadm/etc to do the actual troubleshooting. If your disk is still responding, try a `zpool import` to see if there is any data that ZFS can recognize (it usually has many backup uberblocks and disk labels scattered around the disk).

  • How do you expand a file system on Solaris 10 that is running as a LDOM on Solaris 11

    I'm somewhat new to Solaris but needing to expand an existing file system /work on our solaris 10 ldom that was P2V'd into a Solaris 11.2 environment.  I also have several additional questions that I can't seem to find an answer for anywhere.
    When trying to expand the disk device using the "format" command, when you get to the partition and it asks you to "Enter partition size(147456b, 2c, 3891e, 72.00mb, 0.07g]:" what does the "b" "c" "e" sizes indicate and why and when would you use them?   It seems that you would want to always just add size based on MB or GB?
    When trying to use "growfs" after I increased a partition on a disk, I get error devinfo: /dev/dsk/c0d0s7: Inappropriate ioctl for device, growfs: cannot get partition size.  What step have I missed?

    Matt--
    One suggestion: if you can't figure out how to put a file system on the empty space, you could clone your current partition to an external drive, re-partition the internal drive drive and then clone the external back. Like John, I've heard of utilities that can re-partition a drive without erasing your data, but I just can't imagine using one if I didn't have a clone anyway. So that's what I've done when I want to change a partition size.
    charlie

Maybe you are looking for

  • DB shutdown is taking long time

    Friends, for last few days we are observing that it was taking at least 20 mins to shutdown the db using 'shu immeditale',though there are no hints behind this as seen in alert log files. May be large number of user session and local and remote conne

  • How do I restrict access to the RT Series PXI Controller via its FTP server?

    The RT Series PXI Controllers run an FTP server, so I can view files on the controller over the Internet wtih a Web browser. I can also download and upload files with a Web browser. How can I instruct the FTP server to give access only to specified,

  • GUI_DOWNLOAD and codepage problem

    I'm trying to download XML data using this function module to a local PC file. It contains finnish characters such as Ä. When I open the XML file with an XML editor, it tells me that "Byte 0xFF found in file ... is invalid for encoding utf-8' I think

  • Stream to file size

    I need a way that I can stream audio to a file and set a cap on the size but never stop putting new audio in the file. Is there a way that I can to this. I know already how to send audio to a file but not cap it and continue. --John                  

  • Labview 2009 Module Mobile And Lego Mindstorms NXT

    Hi I've installed the mobile toolkit in labview 2009 but when I created a new mobile project I didn't find the NXT Programmings category on menu..... are they not supported? I would like to control my nxt with my PDA through bluetooth. Thanks in adva