Grub question post-installation

I installed Solaris 10 on a Dell Dimension 3000 with two hard drives. I put Solaris on HDB2 (second partition on second hard drive). The partition was previously occupied by NetBSD.
The other operating systems are:
Windows XP on HDA2
Slackware Linux on HDB1
Debian Linux on HDB3
I use Grub to boot from the MBR, with the MBR Grub files residing on the Slackware partition. When I chainload to the Solaris partition, I get the Solaris grub boot screen, as expected. But when I try to boot Solaris from there, I get an error message. I notice that when Solaris was installed, it configured Grub with the Solaris partition of HD0,1,a, which would mean the first hard drive, second partition; however, that's where Windows is.
I tried booting Solaris from the grub command line using the following:
root (hd1,1,a)
kernel /platform/i86pc/multiboot
bootbut was unsuccessful.
I also tried mounting Solaris from Debian in order to fix the menu.lst file in Grub but wasn't able to read the Solaris partition from Linux without recompiling the kernel (which I'd rather not do).
I'm looking to either (a) boot Solaris from the command line grub, or (2) access the Solaris partition some other way, either by mounting it from Linux or by using a Solaris rescue CD, if one exists.
One I get in, I know what to do, I just need to be able to get there first.
Any help would be greatly appreciated.

Disregard. After posting this, I realized I could use "e" in Grub to directly edit the grub commands. I will give that a shot.

Similar Messages

  • SQL 2005 Upgrade complete! - Post installation tasks questions!

    Hi All
    I have managed to upgrade our DEV and TST ECC6 systems to SQL2005 (from SQL2000) and so far all seems ok however I have a a few questions and checks I would like some help with. I have included my post installation tasks at the bottom of this post, so you know what I have done.
    I have noticed that when I  run SGEN I get a short dump  LOAD_VERSION_LOST which I am not sure what this means.
    If there is anything else I need to do or should do please let me know.
    Thanks
    Phil
    <b>Post Installation Tasks</b>
    <u>SQL Queries</u>
    exec sp_configure 'show advanced options', 1
    reconfigure with override
    exec sp_configure 'max degree of parallelism', 1
    reconfigure with override
    exec sp_configure 'xp_cmdshell', 1
    reconfigure with override
    alter database <SID> set page_verify checksum
    go
    alter database <SID> set auto_create_statistics on
    go
    alter database <SID> set auto_update_statistics on
    go
    alter database <SID> set auto_update_statistics_async on
    go
    dbcc updateusage ('<SID>')
    go
    exec sp_updatestats
    go
    <u>SAP Tasks</u>
    Check SM21/SM50/DB02/ST04/ST22/SICK for any unusual error messages.

    Hello,
    I want run the below script on SQL 2005, can anyone tell me how I run it in SQL 2005?
    exec sp_configure 'xp_cmdshell', 1
    reconfigure with override
    I need to enable xp_cmdshell in sql 2005
    Reg,
    SAT

  • Question on CAPolicy.inf file and post-installation script

    I'm preparing a small PKI implementation with a single Enterprise Root CA on Windows 2008 R2 Enterprise.
    The primary role of this CA is to provide certificates for about 20 laptops that will use the certificates for authentication to a wireless network.
    I have prepared a CAPolicy.inf file and a post installation script (below).
    Renewal period for the root cert should be 10 years, CRL publication every 2 days with Delta publication every 12 hours (details in scripts below).
    I want to make sure the AIA and CRL url commands are correct.
    Does this look correct?
    AIA
    1:%WINDIR%\System32\CertSrv\CertEnroll\%%1_%%3%%4.crt
    This should publish the CA certificate to the local file system "certenroll".
    2:ldap:///CN=%%7,CN=AIA,CN=Public Key Services,CN=Services,%%6%%11
    This places the LDAP url in the AIA extension of issued certs.
    I am not planning to use HTTP, hence its absence.
    CRL
    1:%WINDIR%\System32\CertSrv\CertEnroll\%%3%%8%%9.crl
    This publishes the CRL to the local file system ("certenroll" subfolder).
    10:ldap:///CN=%%7%%8,CN=%%2,CN=CDP,CN=Public Key Services,CN=Services,%%6%%10
    Indicates CDP in AD DS and includes CDP url in issued certificates.
    Complete scripts
    1. CAPolicy.inf - %windir%
    [Version]
    Signature= "$Windows NT$"
    [certsrv_server]
    renewalkeylength=2048
    RenewalValidityPeriodUnits=10
    RenewalValidityPeriod=years
    CRLPeriod = days
    CRLPeriodUnits = 2
    CRLDeltaPeriod = hours
    CRLDeltaPeriodUnits = 12
    LoadDefaultTemplates=0
    2. Install Role
    Follow steps in GUI here
    3. Run post-install script
    certutil -setreg CA\DSConfigDN CN=Configuration,DC=mydomain,DC=local
    certutil -setreg CA\CRLPeriodUnits 2
    certutil -setreg CA\CRLPeriod "days"
    certutil -setreg CA\CRLDeltaPeriodUnits 12
    certutil -setreg CA\CRLDeltaPeriod "hours"
    certutil -setreg CA\ValidityPeriodUnits 10
    certutil -setreg CA\ValidityPeriod "Years"
    certutil –setreg CA\CACertPublicationURLs "1:%WINDIR%\System32\CertSrv\CertEnroll\%%1_%%3%%4.crt\n2:ldap:///CN=%%7,CN=AIA,CN=Public Key Services,CN=Services,%%6%%11"
    certutil –setreg CA\CRLPublicationURLs "1:%WINDIR%\System32\CertSrv\CertEnroll\%%3%%8%%9.crl\n10:ldap:///CN=%%7%%8,CN=%%2,CN=CDP,CN=Public Key Services,CN=Services,%%6%%10"
    certutil -setreg CA\csp\DiscreteSignatureAlgorithm 1
    certutil -setreg CA\AuditFilter 127
    net stop certsvc & net start certsvc
    certutil -crl
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

    A couple of things (just a quick glance)
    1) CAPolicy.inf
    Everything looks fine in this file. You will have a 2 day base crl and 12 hour delta CRLs. No default templates are loaded, so you must manually designate all published certificates
    2) Post install Script
    a. Best practices are to use HTTP only, not to use LDAP, so your whole design does not follow best practices. Furthermore, if you issue a certificate to a single, non-domain joined machine, they will be unable to evaluate your certificates. If you decide
    to do VPN (or use an internal SSL cert on an externally accessible Web server), revocation checking will fail because you do not publish AD to the external world
    b. Will you be issuing 10 year certificates from the CA. These lines:
    certutil -setreg CA\ValidityPeriodUnits 10
    certutil -setreg CA\ValidityPeriod "Years"
    define the maximum validity period of certs issued *by* the CA. For example, if a certificate template states 4 years, then a four year will be issued (less than 10 years). If a template state 12 years, then the max age will be 10 years. Think of it as a
    governor.
    c.CACertPublicationURLs . This should include an HTTP URL, and if you want to still include LDAP, HTTP should be prior to the LDAP URL.
    d. CRLPublicationURLs. This should include an HTTP URL. If you want to still include LDAP, HTTP should be prior to the LDAP URL. Your checkbox value for the LDAP URL is incorrect as well. For a CA that issues both base and delta CRLs, you must have a value
    of 79 (all check boxes enabled). Your current configuration would fail for revocation checking because you do not publish the base or delta CRL to AD. There is another check box missing (I believe the one to include the URL in the base CRL's freshest CRL extension
    (how to find the delta CRL).
    e. Do not include the DiscreteSignatureAlgorithm line in the script. If you have any Windows XP clients, they will not be able to use the certs (BTW, this should have been AlternateSignatureAlgorithm in my book - where you sourced your scripts). This would
    only be used on a CA where you used something like Elliptical Curve as the assymetric algorithm and SHA384 as the signature algorithm).
    f. The restart line should be net stop certsvc && net start certsvc. The double && ensures that the service comes to a complete stop before the start command is executed.
    HTH,
    Brian

  • Installing Update Rollup 4 for R2. Question of post installation task

    I will be installing Update Rollup 4 for Service Manager 2012 R2 on our Orchestrator, Data Warehouse, Service Manager and Portal Server as well as updating the client Consoles.
    Following MS article
    http://support2.microsoft.com/kb/2989601/en-us?sd=rss#install.
    A bit confused about the Post installation tasks. Particularly the following:
    Resynchronize System Center Operations Manager mount point data
    To resynchronize Operations Manager mount point data after you apply this update, follow these steps:
    Disable all the Operations Manager configuration item (CI) connectors in the Service Manager console.
    In Windows PowerShell, check the current execution policy by running the following cmdlet:
    Get-ExecutionPolicy
    If the current execution policy is Restricted, set it to
    Remotesigned by running the following command:
    Set-ExecutionPolicy –force RemoteSigned
    Find the following PowerShell script in your System Center 2012 R2 installation directory:
    OMCIConnector_SyncMetadata_UpdateTimestamp.ps1
    By default, you should find this file in the following location:
    C:\Program Files\Microsoft System Center 2012 R2\Service Manager\PowerShell
    Run the following command from the Primary Management server:
    PowerShell .\OMCIConnector_SyncMetadata_UpdateTimestamp.ps1
    Revert the execution policy to the original value that it had in step 2.
    Enable and synchronize the relevant Operations Manager CI connectors.
    Make sure that all the mount point data is populated in Service Manager.
    I am guessing they are talking about the System Center Configuration Manager Connector but not sure. We don't have a Connector for SCOM. If by OMCIConnector they mean SCOM, then I don't need to worry about this.  If would be nice if they would tell
    you why you are doing this. I don't even know what "Mount Point Data" is.
    Does anyone know if it would cause any problems if I skipped this step? I hate doing stuff when I don't know why I am doing it. For example, step 8 "Make sure that all the mount point data is populated in Service Manager."
    What does that even mean?
    Also, I cannot even find the PowerShell script they are talking about in the C:\Program Files\Microsoft System Center 2012\Service Manager\Powershell folder so are they talking about SCOM or SCCM?

    All of the steps listed refer to the Operations Manager connections. none of these steps relate to the Config Manager connector.  If you are not using SCOM, or don't have a SCOM connector, then you can safely ignore these steps. 

  • My post installation script

    #I hope its the right forum to post that in, if not im very sorry!
    This here is a script i wrote to automate all the stuff i do after installing arch, i have several computers and it has options for a additional one
    Some important points:
    1) this script is very specific, its made for my computer and my needs, this means that its useful right now only to people who know bash
    and will find use in altering it to their own needs, also if someone wants he can make it more general for a wider use
    2) this is one of the first scripts i wrote, it may be that it doesn't implent some of its features in the best way possible
    3) use it at your own risk, if it breaks your system don't blame me please, you should check it before you use it, anyway its meant to be used
    on a FRESH arch install, not on a working system.
    What the correct script actually does:
    The script as stated in the comments does the next things:
    1) First of all it consists of several files, one the "install" file is the actual script, the others are just meant to run the script and split its output to
    show both on the terminal and in a file named: /var/log/MySysInstall.log, here is an example of main.install:
    #!/bin/bash
    ./install Main | tee /var/log/MySysInstall.log
    in the current script Main in the last row can be replaces with Laptop, Game for computer specific arguments or without argumets for a general install
    the two files should be in the same folder, i think it could have been implented with one file but im new to scripting..
    2) The script will ask some general questions to make sure everything is currect, some of the questions and checks in the script are not relevant at all
    to anybody other than myself, they usually make sure that i have a samba shared partition running (it could lose connection on wireless).
    3) Adds the archlinux.fr repo, it will be used for yaourt.
    4) The script installs lots of stuff, at first general stuff used by all computers in my house, then stuff based on the argument given in 1)
    please inspect the packages and change according to your needs
    5) The script nano's to /etc/yaourtrc
    6) Adds users to the system, change to your users.
    7) It creates my /home/samba share dir if its not created (probably irrelevant to you)
    8) Configures sudo in a nasty way that maybe can damage the sudoers file, delete this line if you dodnt know sudo well enough.
    9) Edits samba if needed, this is the first line in the script that relies on additional files i have on my comp or the samba share (main and game are the same
    comp (dual boot of arch32 and 64) and they are the hosts of /home/samba all the other computers will mount it from them, this is why a samba check is not
    present here.).
    10) Adds some commented lines to fstab and nano's it for easier configurations, this is the regular workflow in the script BTW (adding comments to the file
    before editing it)
    11) Helps edit the gpm daemon
    12) Helps to configure alsa
    13) Helps to configure xorg
    14) Does some post install copies of files AND creates a file in my main users home with further instructions, mostly for stuff that needs to be done with xorg runnig
    or stuff i was to lasy to add to the script
    15) chowns and sets my regular permissions for user folders
    16) ends the script
    The script itself, ENJOY:
    #!/bin/bash
    # Copyright 2008 Leon Vayman
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # any later version.
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU General Public License for more details.
    # A copy of the GNU General Public License is found in
    # <http://www.gnu.org/licenses/>.
    #Check that the user updated the kernel and restarted before proceeding
    while [ 1 ] ; do
    echo ; clear
    echo -n "Have you already used pacman -Syu and Restarted? (y/n) "
    read Keypress
    case "$Keypress" in
    [Yy])
    break
    [Nn])
    echo "Then do it now.."
    exit
    esac
    done
    #Check if samba is accesible and warn the user if its not (offering to quit)
    if [ ! -e /home/samba/Config/ ] ; then
    while [ 1 ] ; do
    echo ; clear
    echo -n "Samba is not accesible, do you want to proceed? (y/n) "
    read Keypress
    case "$Keypress" in
    [Yy])
    break
    [Nn])
    exit
    esac
    done
    fi
    #Make sure the app wasnt ran accidently with wrong arguments
    while [ 1 ] ; do
    echo ; clear
    echo -n "The comp you are on is $1 is that correct? (y/n) "
    read Keypress
    case "$Keypress" in
    [Yy])
    break
    [Nn])
    exit
    esac
    done
    #Edit /etc/pacman.conf
    echo ; clear
    echo >> /etc/pacman.conf
    echo "[archlinuxfr]" >> /etc/pacman.conf
    if [ "$1" = "Game" ] ; then
    echo "Server = http://repo.archlinux.fr/x86_64" >> /etc/pacman.conf
    else
    echo "Server = http://repo.archlinux.fr/i686" >> /etc/pacman.conf
    fi
    echo -n "Make sure the right archlinux.fr repo was added "
    read n1
    nano /etc/pacman.conf
    echo ; clear
    #Install all packages
    echo "Installing packages"
    pacman -Syu
    pacman -S yaourt
    pacman -S xorg
    pacman -S gstreamer0.10-plugins
    yaourt -S abiword alsa-lib alsa-utils alsa-oss bash-completion cabextract centerim conky exaile hal epdfview feh freetype2 gamin gconf-editor geany gksu gmrun gnome-icon-theme gpicview \
    gtk-engines zip irssi jre links-g libdvdcss tcl lxappearance lxpanel lxde-common lxrandr lxtask mesa moc mousepad mplayer-plugin numlockx openbox obconf obmenu openbox-themes \
    p7zip pcmanfm pidgin pm-utils powertop screen terminal ttf-bitstream-vera ttf-dejavu ttf-freefont ttf-ms-fonts unace unrar unzip xarchiver xchat xmahjongg
    yaourt -S stjerm
    case "$1" in
    "Laptop")
    yaourt -S vlc keytouch keytouch-editor xf86-video-i810 synaptics cpufrequtils flashplugin
    yaourt -S swiftweasel-pentium-3
    yaourt -S wpa_supplicant-beta
    yaourt -S xcompmgr-git
    "Main")
    yaourt -S flashplugin cpufrequtils epiphany catalyst deluge amule xmoto abs samba
    yaourt -S icecat
    yaourt -S xcompmgr-git
    yaourt -S ekiga3
    yaourt -S ov51x-jpeg
    yaourt -S vlc-branch
    yaourt -S brasero-no-gnome
    "Game")
    yaourt -S epiphany catalyst deluge amule xmoto abs samba ##!! add gnash or swfdec
    yaourt -S icecat
    yaourt -S ekiga3
    yaourt -S ov51x-jpeg
    yaourt -S vlc-branch
    yaourt -S brasero-no-gnome
    echo -n "No extra packages installed "
    esac
    echo -n "Press Enter to continue "
    read n1
    echo ; clear
    #Configure yaourt.rc
    echo -n "Replace the editor in yaourtrc "
    read n1
    nano /etc/yaourtrc
    echo ; clear
    #Add users
    echo "Adding User vleon"
    useradd -d /home/vleon -g users -G disk,wheel,games,video,audio,optical,storage,power,dbus,hal,avahi,log -m vleon
    echo "Set vleon's password"
    passwd vleon
    echo ; clear
    echo "Adding User masha"
    useradd -d /home/masha -g users -G disk,wheel,games,video,audio,optical,storage,power,dbus,hal,avahi,log -m masha
    echo "Set masha's password"
    passwd masha
    echo ; clear
    #If for some reason samba dir doesnt exist, create it
    if [ ! -e /home/samba ] ; then
    mkdir /home/samba
    chown vleon:users /home/samba
    chmod 770 /home/samba
    fi
    #Configure visudo
    echo -n "uncomment wheel in visudo and make sure the added lines are correct "
    read n1
    echo "#%power ALL=(ALL) NOPASSWD: /usr/sbin/pm-hibernate" >> /etc/sudoers
    echo "#%power ALL=(ALL) NOPASSWD: /sbin/shutdown" >> /etc/sudoers
    visudo
    echo ; clear
    #Edit samba if needed
    if ( [ "$1" = "Main" ] || [ "$1" = "Game" ] ) ; then
    echo -n "Edit swat "
    read n1
    cp /home/samba/Config/etc/xinetd.d/swat /etc/xinetd.d/swat
    nano /etc/xinetd.d/swat
    echo ; clear
    echo -n "Edit Hosts "
    read n1
    cp /home/samba/Config/etc/hosts.allow /etc/hosts.allow
    nano /etc/hosts.allow
    echo ; clear
    echo -n "Edit smb.conf "
    read n1
    cp /home/samba/Config/etc/samba/smb.conf /etc/samba/smb.conf
    nano /etc/samba/smb.conf
    echo ; clear
    echo "Set vleon's samba password"
    smbpasswd -a vleon
    echo ; clear
    echo -n "Add samba and xinetd daemon to rc.conf "
    read n1
    nano /etc/rc.conf
    echo ; clear
    fi
    #Edit fstab
    echo -n "Edit fstab "
    read n1
    echo >> /etc/fstab
    if [ "$1" != "Laptop" ] ; then
    echo "#UUID=92D8DA69D8DA4ADD /mnt/windows ntfs-3g defaults,noatime 0 0" >> /etc/fstab
    if ( [ "$1" != "Main" ] && [ "$1" != "Game" ] ) ; then
    echo "#UUID=0E15-1D06 /mnt/windows vfat defaults,noatime,umask=0000 0 0" >> /etc/fstab
    echo "#//192.168.1.100/samba /home/samba cifs defaults,noatime,noauto,user=vleon%pass 0 0" >> /etc/fstab
    echo "##change the above password!!" >> /etc/fstab
    fi
    nano /etc/fstab
    echo ; clear
    else
    echo "#UUID=0E15-1D06 /mnt/windows vfat defaults,noatime,umask=0000 0 0" >> /etc/fstab
    echo "#//192.168.1.100/samba /home/samba cifs defaults,noatime,noauto,user=vleon%pass 0 0" >> /etc/fstab
    echo "##change the above password!!" >> /etc/fstab
    nano /etc/fstab
    echo ; clear
    fi
    #Edit gpm
    echo -n "Edit gpm "
    read n1
    echo "#GPM_ARGS=\"-m /dev/input/mice -t imps2\"" >> /etc/conf.d/gpm
    nano /etc/conf.d/gpm
    echo ; clear
    echo -n "Add gpm daemon to rc.conf "
    read n1
    nano /etc/rc.conf
    echo ; clear
    #Configure alsa
    Alsa Config
    test=1
    echo -n "Edit alsamixer "
    read n1
    while [ "$test" = 1 ] ; do
    alsamixer -V all
    echo "Testing Sound"
    aplay /usr/share/sounds/alsa/Noise.wav
    while [ 1 ] ; do
    echo ; clear
    echo -n "Did You Hear Any Sound? (y/n) "
    read Keypress
    case "$Keypress" in
    [Yy])
    test=0
    break
    [Nn])
    break
    esac
    done
    done
    alsactl store
    echo -n "Add alsa to daemons "
    read n1
    nano /etc/rc.conf
    echo ; clear
    #Configure Xorg
    if [ -e /home/samba/Config/etc/X11/ ] ; then
    echo -n "Edit xorg.conf "
    read n1
    if ( [ "$1" = "Laptop" ] ) ; then
    cp /home/samba/Config/etc/X11/laptop.xorg.conf /etc/X11/xorg.conf
    else
    cp /home/samba/Config/etc/X11/main.xorg.conf /etc/X11/xorg.conf
    fi
    nano /etc/X11/xorg.conf
    echo ; clear
    echo -n "add \"ru\" to xorg.conf.mom "
    read n1
    cp etc/X11/xorg.conf etc/X11/xorg.conf.mom
    nano /etc/X11/xorg.conf.mom
    echo ; clear
    else
    echo -n "No samba connection found, manually editing xorg.conf "
    read n1
    X -configure
    mv /root/xorg.conf.new /etc/X11/xorg.conf
    echo >> /etc/X11/xorg.conf
    echo "# Option \"XkbLayout\" \"us,il\"" >> /etc/X11/xorg.conf
    echo "# Option \"XkbOptions\" \"grp:alt_shift_toggle,grp_led:scroll\"" >> /etc/X11/xorg.conf
    echo "# DefaultDepth 24" >> /etc/X11/xorg.conf
    echo "# Modes \"1680x1050\" \"1280x1024\" \"1024x768\" \"800x600\"" >> /etc/X11/xorg.conf
    if [ "$1" = "Laptop" ] ; then
    echo >> /etc/X11/xorg.conf
    echo "#Section \"InputDevice\"" >> /etc/X11/xorg.conf
    echo "# Identifier \"Touchpad\"" >> /etc/X11/xorg.conf
    echo "# Driver \"synaptics\"" >> /etc/X11/xorg.conf
    echo "# Option \"Device\" \"/dev/input/mouse0\"" >> /etc/X11/xorg.conf
    echo "# Option \"Protocol\" \"auto-dev\"" >> /etc/X11/xorg.conf
    echo "# Option \"LeftEdge\" \"1700\"" >> /etc/X11/xorg.conf
    echo "# Option \"RightEdge\" \"5300\"" >> /etc/X11/xorg.conf
    echo "# Option \"TopEdge\" \"1700\"" >> /etc/X11/xorg.conf
    echo "# Option \"BottomEdge\" \"4200\"" >> /etc/X11/xorg.conf
    echo "# Option \"FingerLow\" \"25\"" >> /etc/X11/xorg.conf
    echo "# Option \"FingerHigh\" \"30\"" >> /etc/X11/xorg.conf
    echo "# Option \"FingerPress\" \"100\"" >> /etc/X11/xorg.conf
    echo "# Option \"MaxTapTime\" \"180\"" >> /etc/X11/xorg.conf
    echo "# Option \"MaxTapMove\" \"220\"" >> /etc/X11/xorg.conf
    echo "# Option \"VertScrollDelta\" \"100\"" >> /etc/X11/xorg.conf
    echo "# Option \"MinSpeed\" \"0.06\"" >> /etc/X11/xorg.conf
    echo "# Option \"MaxSpeed\" \"0.12\"" >> /etc/X11/xorg.conf
    echo "# Option \"AccelFactor\" \"0.0010\"" >> /etc/X11/xorg.conf
    echo "# Option \"SHMConfig\" \"on\"" >> /etc/X11/xorg.conf
    echo "#EndSection" >> /etc/X11/xorg.conf
    fi
    echo -n "Edit xorg.conf "
    read n1
    nano /etc/X11/xorg.conf
    echo ; clear
    echo -n "add \"ru\" to xorg.conf.mom "
    read n1
    cp etc/X11/xorg.conf etc/X11/xorg.conf.mom
    nano /etc/X11/xorg.conf.mom
    echo ; clear
    fi
    #Start the post install document and copy files to homes if able and need to
    echo "Post Installation Instructions" > /home/vleon/PostInstall.txt
    echo "------------------------------" >> /home/vleon/PostInstall.txt
    echo >> /home/vleon/PostInstall.txt
    echo "Usage: Follow the instructions and delete the lines that are not relevant anymore. you can delete" >> /home/vleon/PostInstall.txt
    echo " this file after you finished." >> /home/vleon/PostInstall.txt
    echo >> /home/vleon/PostInstall.txt
    echo "-------------------------------------------------------------------------------------------------" >> /home/vleon/PostInstall.txt
    if [ ! -e /home/vleon/.config] ; then
    if [ -e /home/samba/Config/ ] ; then
    cp /home/samba/Config/.bash_profile /home/vleon/ ; cp /home/samba/Config/.bash_profile /home/masha/
    cp /home/samba/Config/.bashrc /home/vleon/ ; cp /home/samba/Config/.bashrc /home/masha/
    cp /home/samba/Config/.xinitrc /home/vleon/ ; cp /home/samba/Config/.xinitrc /home/masha/
    cp /home/samba/Config/.xserverrc /home/masha/
    mkdir -p /home/vleon/.config/openbox ; mkdir -p /home/masha/.config/openbox
    cp /home/samba/Config/.config/openbox/rc.xml /home/vleon/.config/openbox/ ; cp /home/samba/Config/.config/openbox/rc.xml /home/masha/.config/openbox/
    if [ "$1" = "Laptop" ] ; then
    cp /home/samba/Config/.conkyrc.laptop /home/vleon/.conkyrc ; cp /home/samba/Config/.conkyrc.laptop /home/masha/.conkyrc
    cp /home/samba/Config/.Xdefaults.laptop /home/vleon/.Xdefaults ; cp /home/samba/Config/.Xdefaults.laptop /home/masha/.Xdefaults
    cp /home/samba/Config/.config/openbox/menu.xml.laptop /home/vleon/.config/openbox/menu.xml
    cp /home/samba/Config/.config/openbox/menu.xml.laptop /home/masha/.config/openbox/menu.xml
    cp /home/samba/Config/.config/openbox/autostart.sh.laptop /home/vleon/.config/openbox/autostart.sh
    cp /home/samba/Config/.config/openbox/autostart.sh.laptop /home/masha/.config/openbox/autostart.sh
    else
    if ( [ "$1" != "Main" ] && [ "$1" != "Game" ] )
    cp /home/samba/Config/.conkyrc.laptop /home/vleon/.conkyrc ; cp /home/samba/Config/.conkyrc.laptop /home/masha/.conkyrc
    else
    cp /home/samba/Config/.conkyrc.main /home/vleon/.conkyrc ; cp /home/samba/Config/.conkyrc.main /home/masha/.conkyrc
    fi
    cp /home/samba/Config/.Xdefaults.main /home/vleon/.Xdefaults ; cp /home/samba/Config/.Xdefaults.main /home/masha/.Xdefaults
    cp /home/samba/Config/.config/openbox/menu.xml.main /home/vleon/.config/openbox/menu.xml
    cp /home/samba/Config/.config/openbox/menu.xml.main /home/masha/.config/openbox/menu.xml
    cp /home/samba/Config/.config/openbox/autostart.sh.main /home/vleon/.config/openbox/autostart.sh
    cp /home/samba/Config/.config/openbox/autostart.sh.main /home/masha/.config/openbox/autostart.sh
    fi
    else
    echo >> /home/vleon/PostInstall.txt
    echo "!!Samba is not availble, you will have to create the following files yourself!!" >> /home/vleon/PostInstall.txt
    fi
    echo >> /home/vleon/PostInstall.txt
    echo "The folowing files where probably created in your home folders:" >> /home/vleon/PostInstall.txt
    echo ".bash_profile" >> /home/vleon/PostInstall.txt
    echo ".bashrc" >> /home/vleon/PostInstall.txt
    echo ".conkyrc" >> /home/vleon/PostInstall.txt
    echo ".Xdefaults" >> /home/vleon/PostInstall.txt
    echo ".xinitrc" >> /home/vleon/PostInstall.txt
    echo ".xserverrc #<< only to /home/masha" >> /home/vleon/PostInstall.txt
    echo ".config/openbox/autostart.sh" >> /home/vleon/PostInstall.txt
    echo ".config/openbox/menu.xml" >> /home/vleon/PostInstall.txt
    echo ".config/openbox/rc.xml" >> /home/vleon/PostInstall.txt
    echo "!!Make sure the above files created and are configured properly!!" >> /home/vleon/PostInstall.txt
    echo >> /home/vleon/PostInstall.txt
    echo "Configuration Guidelines:" >> /home/vleon/PostInstall.txt
    echo "1) make sure width and hight are correct .Xdefaults" >> /home/vleon/PostInstall.txt
    echo "2) make sure to comment the \"xcompmgr\" line in autostart.sh, to fit the Computer and User" >> /home/vleon/PostInstall.txt
    echo "3) use obmenu and obconf later to tune up stuff" >> /home/vleon/PostInstall.txt
    echo >> /home/vleon/PostInstall.txt
    echo "-------------------------------------------------------------------------------------------------" >> /home/vleon/PostInstall.txt
    echo >> /home/vleon/PostInstall.txt
    echo "rc.conf Guidelines:" >> /home/vleon/PostInstall.txt
    echo "1) possible modules are: powernow-k8 or acpi-cpufreq, cpufreq_ondemand, ov51x-jpeg, fglrx" >> /home/vleon/PostInstall.txt
    echo "2) possible daemons are: hal, cpufreq, acpid [laptop], netfs, keytouch" >> /home/vleon/PostInstall.txt
    echo >> /home/vleon/PostInstall.txt
    echo "-------------------------------------------------------------------------------------------------" >> /home/vleon/PostInstall.txt
    echo >> /home/vleon/PostInstall.txt
    echo "General Guidelines:" >> /home/vleon/PostInstall.txt
    echo "1) copy or compare the files from /home/samba/Config/etc to /etc" >> /home/vleon/PostInstall.txt
    echo "2) on the laptop, dont forget to add the additional scripts needed from the /home/samba/Config/, dont forget to backup replaced files" >> /home/vleon/PostInstall.txt
    echo "3) add resume=/dev/sda3 to /boot/grub/menu.lst if its not there already" >> /home/vleon/PostInstall.txt
    echo "4) dont Forget to configure gksu after launching X" >> /home/vleon/PostInstall.txt
    echo "5) lauch and configure all the apps in the menu and the cmdline apps links -g, mocp, irssi, centerim" >> /home/vleon/PostInstall.txt
    echo "6) test logout, reboot, shutdown and hibernate" >> /home/vleon/PostInstall.txt
    echo "7) configure keytouch on the laptop" >> /home/vleon/PostInstall.txt
    echo "8) if it doesnt exist mkdir ~/.Theme for both users and add a jpg picture named theme.jpg to be the wallpaper" >> /home/vleon/PostInstall.txt
    echo "9) read /var/log/MySysInstall.log and make sure all was succesfull especialy AUR install's like icecat or iceweasel" >> /home/vleon/PostInstall.txt
    echo "10) run lxappearance, configure lxpanel, configure terminal" >> /home/vleon/PostInstall.txt
    echo "11) run powertop after you restart again with all the modules and daemons and other stuff configured" >> /home/vleon/PostInstall.txt
    #Return ownership to the approtiate users
    chown -R vleon:users /home/vleon ; chown -R masha:users /home/masha
    chmod /home/vleon 750 ; chmod /home/masha 750
    chmod /home/vleon/.config 750 ; chmod /home/masha/config 750
    chmod /home/vleon/.config/openbox 750 ; chmod /home/vleon/.config/openbox 750
    #End
    echo "Install Finished, please additional instructions where created in /home/vleon/PostInstall.txt"
    read n1
    exit

    luckystar09 - I'd say you're on your own there. This thread is nearly a year old, and Black Mage hasn't posted here since. Read the script, and modify it yourself as required.
    Forum rule - do not post in threads that have been inactive for six months of more. See here for full details.
    Closed.

  • 11.5.10.2 Post Installation Check Failures in Linux

    Hi All,
    I had installed 11i (11.5.10.2) in an external drive (made as a Linux OS through VM Ware) and was trying to access through my laptop (having OS XP Professional)
    The Installation of 11i in Linux (RHEL 4) went fine, except during the post installation checks I got the following errors:
    1. JSP Check failed
    and
    2. Environment File Check failed
    ============================================
    For the JSP Check:
    a. I ensured the dbc file in $FND_SECURE top is fine
    b. The jserv.log file shows as below:
    java.lang.NumberFormatException: For input string: "%s_servlet_init_timeout%"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Long.parseLong(Long.java:394)
    at java.lang.Long.<init>(Long.java:630)
    at org.apache.java.util.Configurations.getLong(Configurations.java:678)
    at org.apache.java.util.Configurations.getLong(Configurations.java:657)
    at org.apache.jserv.JServServletManager.init(JServServletManager.java:320)
    at org.apache.jserv.JServ.start(JServ.java:622)
    c. The mod_jserv.log is as follows:
    [04/07/2008 15:42:21:813] (EMERGENCY) ajp12: function auth fail
    [04/07/2008 15:42:22:233] (EMERGENCY) ajp12: auth did not receive challenge size
    [04/07/2008 15:42:22:234] (EMERGENCY) ajp12: function auth fail
    [04/07/2008 15:42:29:394] (EMERGENCY) ajp12: auth did not receive challenge size
    [04/07/2008 15:42:29:395] (EMERGENCY) ajp12: function auth fail
    [04/07/2008 15:42:29:763] (EMERGENCY) ajp12: auth did not receive challenge size
    d. I had given the virtual host as vision.imax.info, where imax.info is a named server that is registered
    I am able to dig vision.imax.info, as shown below:
    [root@vision etc]# dig vision.imax.info
    ; <<>> DiG 9.2.4 <<>> vision.imax.info
    ;; global options: printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 3228
    ;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;vision.imax.info. IN A
    ;; Query time: 12 msec
    ;; SERVER: 192.168.222.5#53(192.168.222.5)
    ;; WHEN: Fri Jul 4 18:59:56 2008
    ;; MSG SIZE rcvd: 34
    but please note that my ifconfig gives the following output:
    [root@vision etc]# ifconfig
    eth0 Link encap:Ethernet HWaddr 00:0C:29:5E:C8:97
    inet6 addr: fe80::20c:29ff:fe5e:c897/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:15421 errors:0 dropped:0 overruns:0 frame:0
    TX packets:11828 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:1464189 (1.3 MiB) TX bytes:2554712 (2.4 MiB)
    Interrupt:177 Base address:0x1080
    eth0:0 Link encap:Ethernet HWaddr 00:0C:29:5E:C8:97
    inet addr:192.168.222.5 Bcast:192.168.222.255 Mask:255.255.255.0
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    Interrupt:177 Base address:0x1080
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:2058114 errors:0 dropped:0 overruns:0 frame:0
    TX packets:2058114 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:297458110 (283.6 MiB) TX bytes:297458110 (283.6 MiB)
    and the linux OS having the static IP as follows:
    IP: 192.168.222.5
    Mask: 255.255.255.0
    Gateway: 192.168.222.5
    Primary DNS: 192.168.222.5
    ========================
    And for the Environment File check:
    The Error is:
    RW 10006: Error: - APPL_TOP environment files has uninstantiated variables
    File = /d01/oracle/visappl/VIS_vision.env
    But I am not able to locate which variable is not instantiated...
    Please help me to resolve this out... Please correct me if I am wrong any where..
    Many Thanks....

    Please note that, when I restarted the application services in a different terminal, I got the following script Error, only for the below mentioned script:
    Executing service control script:
    /d01/oracle/viscomn/admin/scripts/VIS_vision/addisctl.sh start
    script returned:
    addisctl.sh version 115.14
    /d01/oracle/visora/8.0.6/vbroker/bin/osagent
    Started osagent.
    Osagent logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/osagent.log.
    Waiting for OAD to start...
    Started OAD.
    OAD logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/oad.log.
    Failed to start locator.
    Cannot bind to OAD. Re-starting...
    OAD is stopped
    Osagent is stopped
    Unable to stop locator. No process-id file found.
    Unable to stop gatekeeper. No process-id file found.
    Unable to stop any Discoverer Sessions. No process-id file found.
    Unable to stop any Discoverer Preference. No process-id file found.
    Unable to stop any Discoverer Collector. No process-id file found.
    /d01/oracle/visora/8.0.6/vbroker/bin/osagent
    Started osagent.
    Osagent logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/osagent.log.
    Waiting for OAD to start...
    Started OAD.
    OAD logs messages to the file /d01/oracle/visora/8.0.6/discwb4/util/oad.log.
    Failed to start locator.
    Registering Discoverer Session
    Registering the Collector
    Applying preferences from file : /d01/oracle/visora/8.0.6/discwb4/util/pref.txt
    Finished applying preferences
    Closing down registry..
    Registry File sync...
    Registering Discoverer Preference Repository
    addisctl.sh: exiting with status 127
    .end std out.
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    /d01/oracle/visora/8.0.6/vbroker/bin/vbj: %s_disco_jretop%/bin/jre: not found
    .end err out.
    Check logfile /d01/oracle/viscomn/admin/log/VIS_vision/07042249.log for details
    Exiting with status 1
    ====================
    The /d01/oracle/viscomn/admin/log/VIS_vision/07042249.log file shows the following too:
    [Service Control Execution Report]
    The report format is:
    <Service> <Script> <Status>
    Oracle Apache Server VIS_vision adapcctl.sh Started
    OracleTNSListener80APPS_VIS_vision adalnctl.sh Started
    OracleConcMgrVIS_vision adcmctl.sh Started
    OracleFormsServer-Forms60VIS_vision adfrmctl.sh Started
    OracleReportServer-Rep60_VIS adrepctl.sh Started
    Oracle Metrics Client VIS_vision adfmcctl.sh Started
    Oracle Metrics Server VIS_vision adfmsctl.sh Started
    Oracle Fulfillment Server VIS_vision jtffmctl.sh Started
    Oracle Discoverer services VIS_vision addisctl.sh Failed
    Oracle Restricted Apache Server VIS_vision adaprstctl.sh Disabled
    Oracle Apache Server VIS_vision for PL/SQL adapcctl.sh Disabled
    Oracle TCF SocketServer VIS_vision adtcfctl.sh Disabled
    Oracle ICSM VIS_vision ieoicsm.sh Disabled
    Oracle iProcurement Bulk Loader VIS_vision icxblkctl.sh Disabled
    ServiceControl is exiting with status 1
    Where could be the problem for the above issues....

  • Post installation steps for SAP PI, scenarios for SAP ERP 6.0 EhP 3.0 BAIO

    Hi!
    I installed SAP NetWeaver 2004S with PI component.
    I also have a demo SAP ERP 6.0 EhP 3.0 BAIO system with several clients:
    (100: demo client, 200: BW, 300: demo client (copy of 100)).
    Questions:
    what are the post installation steps to configure SAP PI?
    Which scenarios can be used in such landscape?
    (eg. exchange (IDOC, RFC, etc.) from client ERP:100 to ERP:200)
    Thank you very much indeed!
    regards
    Holger

    Hi Holger:
    what are the post installation steps to configure SAP PI?
    http://help.sap.com/saphelp_nw70/helpdata/en/a0/40084136b5f423e10000000a155106/content.htm
    Which scenarios can be used in such landscape?
    (eg. exchange (IDOC, RFC, etc.) from client ERP:100 to ERP:200)
    I recommend you to use proxys in your landscape as you want to interchange messages between
    different clients in the same system.
    Hope this helps you.
    Carlos

  • Problem in XI after post installation.

    I have done the post installation for PI, everything was fine and sucessfull,
    but the problem is, in XI check list there is no objects found in the Integration Repository and Integration Directory with the URL  ( http:
    emsap008:50100\rep\start\index.asp ).
    Let me explain the problem which i faced.
    In the transaction SXMB_IFR --> Tool --> Import Design Objects Option, the result displaied is " There is no Objects found ". But as per the document i need to get               " PI7_0_BASIS_6.40_18_00.tpz ".
    Please clarify my doubt, ask me if my question is insuffecient.

    Hi Senthil !!
    Here is the guide with necessary steps
    http://help.sap.com/bp_bpmv130/Documentation/Installation/XI30InstallGuide.pdf
    /people/sravya.talanki2/blog/2006/11/15/post-installation-steps-for-activating-adobe-document-services-in-sap-xi-nw-2004s
    You will get the details of post installation activities for SAP XI in its installation guides itself. Have a look:
    SAP Exchange Infrastructure Release 3.0 - Installation Guide
    SAP Exchange Infrastructure 3.0 SR1 - Installation Guide
    Plus you can go through the following docs:
    SAP Exchange Infrastructure (XI) 3.0
    Troubleshooting Guide - SAP XI 3.0 and 2.0
    SAP XI Release 3.0 SPS11Configuration Guide
    Also you can have a look at the following thread, you will get some links in these threads too:
    Post installation of XI?
    XI INSTALLATION and POSTINSTALLATION
    XI Post Installation....Need help...
    XI Post Installation - Help
    XI Post Installation - SLD Connection
    refre this thread
    Post Installation of PI - PI template Installer not found
    <b>Pls rewards if useful</b>

  • Post Installation task of Enterprise Portal

    Subject : During the Post Installation task of Enterprise Portal such as Run Configuration Wizard u201CNWA_01u2026..u201D to u201CNWA_07u2026..u201D for portal system. Run u201CInitial setup of functional unit Development Infrastructure (DI all-in-one)u201D in development portal.
    Problem : Can anyone guide me how we are doing ( executing ) task i.e.Run u201CInitial setup of functional unit Development Infrastructure (DI all-in-one)u201D in development portal.What this is step is doing as well as what all the prerequisites for this step.
    Work Area : Dev portal with Java stack only.( SP Level is 17)
    Please guide me on this step as well as all Configuration Wizard steps( NWA_01 to NWA_07) so that I can finish with the post installation of portal.
    Regards
    Nilesh

    Hi my question has been resolved.

  • Post-Installation and Configuration of Solution Manager 7.1

    Dear community,
    we are a SAP Channel Partner and want to offer SAP BO support; therefore I am about to set up the Solution Manager 7.1 on a Windows 2008 R2 host with Oracle Database 11g. The installation has been completed successfully and I have applied our permanent license, but performing the following post-installation steps some problems and questions have arised. Because I don't want to write a novel right here, let's begin with the first issue:
    Updating the Solman, as suggested in post-installation.
    I want to update my ISS to SP 04 and followed the common instructions using ESPIN and SPAM (see, for example, this thread: ).
    That means, all packages have been loaded from ESPIN into SPAM. The problem is, that I have SPAM version 0039, but I get error message "you need at least version 0040" when I try to start the update queue. Also, I am not able to download a newer version of SPAM from SMP (702-0043 and 702-0045 are available there), because I need MOPZ for that (a message comes up telling me that items in my download basket have to be confirmed before I am allowed to download them), which will be available not before basic configuration during solman_setup later on.
    So, what to do? Is there another way to get that 5MB SPAM update or do I have to go on with the old version?
    Thanks in advance
    Sönke
    Edited by: Sönke Schnurr on Dec 29, 2011 4:15 PM (small addendum)

    Okay, I am just re-installing my Solution Manager 7.1, because I couldn't solve my SPAM problem (linked thread in my next-to-last post).
    I would like to configure the whole SAProuter SNC thing now. The Solution Manager host is the same which has the SAProuter installed. I have already registered and certified it and created the Windows Service which starts the SAProuter (saprouter -r -S 3299 -G routerlog -K u201Cp:CN=XXX, OU=YYY, OU=SAProuter, O=SAP, C=DEu201C), XXX and YYY being the appropriate values.
    Now I want to create my saprouttable. A beta version is this one here, based on some tutorials in the internet:
    KT "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE" 194.39.131.34 3299
    KP "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE"  3200
    1. deny all other connections
    D * * *
    Do you think it's alright? I'm connecting via host port 3299, so the first two lines should be alright, shouldn't they?.
    The fourth line P ? The local IP address of my host? What is that line for at all?
    Another question: The connection to OSS doesn't work yet, probably because of our local hardware router firewall. Which ports do I have to forward? I suppose it is just 3299?
    An elaborate answer would be highly appreciated!
    Regards
    Sönke

  • XI Post Installation....Need help...

    Hi,
    I am new to XI and I am installing XI on a Windows 2000 server. I am done with the installation part....(web as ABAP+Java add in + newtweaver XI Component)....Now I am in the post install configuration steps....
    My question is that...when I did the install of WEB AS ABAP...I did a local client copy and created client 100 (UCSV Profile)....now I am not sure why I had to create this client 100? Can some one tell me what is the use of this client 100.
    Second question is that for the post installation configuration, should I create all the RFC's and SLD Configuration etc in Client 000 or should I do all this post installation configuration in client 100?...
    Please help me.....
    Thanks,
    Madhu

    Today I successfully started XI IB. I had two troubles and solutions as follows:
    1. In our Co, we have a proxy server, so after installing j2sdk142, I need change the settings of java web start. Open Java WS directly then click cancel until the log in window disappears. Change the proxy settings to what you need.
    2. Please assign all the needed roles for XI into your user account. Even if you are an user with the profile of SAP_ALL, you need add the needed roles into your account.
    Any more issues to start XI, you can reach me by [email protected]

  • Post Installation steps for Messages archiving from Adapter engine

    Hi,
    Can any let me know the post installation steps for Archiving messages from AE.
    We are archiving the messages from Integration Engine (BC_XMB).
    This note refers to the Post installation steps... But i could not find them anywhere.
    Note 790226 - Messages in AdapterEngine/PCK database do not get archived
    Thanks,
    Tanuj
    Message was edited by:
            Tanuj Kumar Bolisetty

    Hi Tanuj,
    have a look at note 872388
    "2) For messages in the Adapter Framework: note 816022, question 8
    (deletion) and
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/b2fc3f48ecc742e10000000a
    1550b0/content.htm (archiving)"
    Additionally consult the troubleshooting guide,page 110
    Set the adapter service properties (note 791379)
    Hope it helps
    Jaime

  • Need help in post-installation steps of the PDK

    Hello,
    I have installed Java PDK 6.9 instead of 6.2.
    At the post-installation steps I need to:
    <i>The example iViews in the Portal Development Kit connect to a SAP System with the system alias PDK_R3_BACKEND.
    To run these examples you must define a system object for a test SAP System in your system landscape and assign the following aliases:
    1. PDK_R3_BACKEND Reference to a R/3 system of your custom landscape.
    2. PDKDummySystem Reference to provided system OBN-3. PDKDummySystem.
    WebDynpro Reference to provided system WebDynpro.</i>
    My question is: When I create this System, which type template should it be and which configuration besides the above aliases should it have?
    Roy

    Hey Aviad,
    Yes I did, in my case I've installed PDK SP 9 over SP2 which is prohibited. If this is your case as well do the following:
    1) From the Undeployment tab of the SDM select the com.sap.pct.pdk..
    components.
    2) Using the Archive remover tool which can be accessed from
    System Administration > Support > Portal Runtime > Administration
    Console > Archive Remover --> Remove the portal applications with prefixcom.sap.pct.pdk...
    3) Navigate to Content Administration > Portal content > Content
    Provided by SAP > Platform Add-Ons > Developer Content
    and remove all the contents below this folder.
    4) Restart the server
    After this you can deploy the SP9 business package using the SDM.
    Hope it helps,
    Roy

  • SAP Enterprise Portal - Post Installation Tasks

    Hello everyone,
    I am a beginner in the area of SAP Enterprise Portal. Please bear with me in case if I ask you stupid questions.
    "Our idea is to deploy the BIW 3.5 IVIEW over the portal"
    I have installed the SAP Enterprise Portal 6.0 SP6 on Windows 2000 server environment. I have followed the install guide and I have done the installation successfully. I am also able to logon to the portal server using the irl url http://sodium:5000/irj/portal as an Administrator.
    As a BASIS administrator point of view, what are the next Post Installation activities that I need to perform?
    (Our idea is to deploy the BIW 3.5 Iview over the portal)
    I really appreciate your responses.
    Thanks & regards,
    Nikee

    Hello Nikee,
    Simply define the SAP BW system, add an Alias, import portal certificate (for SSO), and start creating functional iview that can render your BW queries and reports.
    Create a System pointing to the BW server with the following details:
    a) System ID
    b) Client
    c) Web Access Point with "WAS" as category containing the following
    entries: -
    · Protocol
    · Hostname
    Note: Domain name of WAS should be same as portal domain
    After that create BW iviews
    QueryString is in the form "CMD=LDOC&infocube=myCube&query=myQuery"
    You should have WAS on the BW server and also IGS shall also be present.
    To follow with the latest, see note #489961 and
    http://help.sap.com/saphelp_nw04/helpdata/en/33/39fa40ee14f26fe10000000a1550b0/frameset.htm
    Hope this will help.
    Regards,
    AAAttar

  • SOLMAN POST INSTALLATION

    Dear Experts,
    I have installed Solman7.0 in my server with License,now I want connect to servicemarketplace and download the Abap stack, for that what is post installation steps, can any one help me, that will be great.
    BR,
    krishnamurthy .k

    Hi krishna,
    Please Reframe your question so that everyone can understand easily.
    From my understanding. U need to download the patches after selecting the component in service market place and also you need to know about the post installation steps for solman.
    There are some baisc configuration steps which we need to follow in spro tcode.
    For example for this activity we need router in place as  aprerequiste. after the route configuration u need to maintain the technical paramter settings in oss1.
    Then u need to generate the 2 rfc connection by going to dswp> edit> global settings-->give your s -userid and paswword. while saving it wiil automatically generate 2 rfc onnection. Check the  2 rfc connection should use EWA logon group.  Once the router is check the 3 RFC connection in sm59.
    After that you need to maintain your s -userid in the table aisuser.
    Then post installation is based on your scenarios are requiredl like if your client need solution monitoring or service desk or charm etc...  So please reframe your question clearly.
    Then for connecting in to portal for downloading the patched you need maintenance optimizer for approving the latest support packages.
    For this as a prerequiste
    Rrouter should be in place.
    Need to create one solution in dswp
    craete a new transcation under change request management
    then slect the component for approval
    from this maintenance optimiser u can connect to the portal also ,, by poinitinf  find download files in download basket.
    Hope i cleared you something
    Regards
    Vijay kumar G

Maybe you are looking for