Ep 6.0 sp 14 problem -portal platform installation worning

During the installation in the start J2EE Engine process(the last phase) i get the flowing two warnings:
WARNING 2005-11-24 10:46:32
Portal Deployment Monitor Warning: No EP file list specified.
WARNING 2005-11-24 10:46:32
Portal Deployment Monitor Warning: No PAR file list specified.
and on SapInst GUI the message down is:
portal configuration upgrade(17 of 74 upgrades done 0 with warnings time elapsed: 600 seconds )wait...
after some time it asks me if i want to try again.
I found one topic that saying to restart the J2EE engine
and then try the upgrade again i tried it in every way possible.
Any suggestions?
Message was edited by: Pavel sheynkman

i think  you need to upgrade your portal  to 2004s , even though you configure RFC(connection works fine) from SAP ABAP side you will not be able to see your system in SLD.

Similar Messages

  • Portal Platform SR1 install hanging

    Hi,
    I am currently installing Portal Platform on J2EE 6.40 SP11. the install is "hanging" at phase 2 of phase 13. the machine is still running, processor usage doesnt go past 2%. is this normal because of deployment or something else?
    Thanks,
    Raj

    Check the sapinst_dev.log and see which step it is hung at.
    Often you can simply stop/start outside of sapinst and then retry inside sapinst - BUT - always make certain that no deployments are ongoing or you will end up with a worse problem.
    Nick

  • SR1 to SP14 Upgrade - Portal Platform Warning

    Hello all,
    I am upgrading the recently installed SR1 to SP12. I successfully applied the Patch for WEBAS J2EE server. Now I'm trying to apply Portal Platform patches. During the "Deploy EAR Files" phase (6 of 12), it gave a warning Message box saying "The deloplyment may require manual postprocessing. See output of logfile C:\ProgramFiles\sapinst_instdir\callSdmViaSapinst.log' and in the status Bar it said 'Finished but with Warning'.
    When I checked the log file i didnt fine any error or warning. It seems to me fine. Wonder what this message means.
    (During the WAS Upgrade i upgraded the Central Instance and I dont have any other dialog instances).
    But After I clicked Ok on the message box, the installation continued Normally and it seems to be going fine.
    Can anyone help me out in this ?
    Thanks.

    Eric,
    Thank you so much for answering me. It really helps.
    One more question before i end this thread. I am new to portals and we are installing Portal on the Test box. To demonstrate the upper authorities how it might help for the company. I have so far installed SR1 and now upgrading to SP14. I have not installed TREX so far but will be installing in future. We are installing everything onto one box. I have installed Oracle database, WEBAS, Portal and KMC on the same drive(D:). The drive capacity is 34GB and i have so far used 11.5 GB and left with like 22.5GB. So my question is if I install TREX on another Drive (E:), will 22.5GB space on D: sufficient for doing the development which includes ESS, MSS import and bit of development?

  • SAP NetWeaver Portal Platform NW7.0, SPs21

    Hello to All!
    Where can I find information about NW7.0, SPs21.
    The note 1408461 gives no detail information.
    Is there a page which issues have been solved depending on the SP Stack??
    BR, Christian

    Hello,
    Did you go through that note? That note is only the central note as per SAP which they mentioned the issues.
    Note 1408461 - SAP NetWeaver Portal Platform NW7.0, SPs21 Central
    It contains several notes which are fixes for sps21 issues. I think there no such special page which contains all the issues related to every SPS version
    Regards,
    Koti Reddy
    Edited by: Koti Reddy Chimalamarri on May 6, 2010 12:54 PM

  • Problem in SNMP4J Installation

    Hello everyone,
    I'm working on developing an SNMPv3 based NMS software for a Licensed Band cellular Radio Backhaul, using SNMP4J. My major concern in this project is to do both, manager as well as the agent part.
    Being a beginner, I'm facing problem with the installation of the software itself.
    I downloaded snmp4j-agentx-1.3.1a , currently working on Windows XP platform and trying to execute them over the simple command prompt of Windows (Will be working over Eclipse IDE later).
    Since there was no online help available regarding the installation steps of this software, i tried n number of open forums which gave me the idea that certain .jar files were to be executed. However, no matter what i tried, all I got were Class Manifest errors. or, NoClassDef errors. This led to more confusion, resulting in multiple copies of the extracted snmp4j-agentx-1.3.1a folder at various locations. Also, is there a particular sequence in which these files are to be compiled/executed.
    I also made a simple test code that should make a PDU and send it successfully. Since i can't execute and check it, i 'm a bit doubtful about it too.
    // checking for a simple request pdu and sending it.
    import java.io.IOException;
    import java.util.List;
    import org.snmp4j.CommunityTarget;
    import org.snmp4j.scopedPDU;
    import org.snmp4j.Snmp;
    import org.snmp4j.event.ResponseEvent;
    import org.snmp4j.mp.SnmpConstants;
    import org.snmp4j.smi.Address;
    import org.snmp4j.smi.GenericAddress;
    import org.snmp4j.smi.OID;
    import org.snmp4j.smi.OctetString;
    import org.snmp4j.smi.VariableBinding;
    import org.snmp4j.transport.DefaultUdpTransportMapping;
    public class send
    public static void main(String[] args)
    //To setup a default SNMP session for UDP transport
    Address targetAddress = GenericAddress.parse("udp:127.0.0.1/161");
    TransportMapping transport = new DefaultUdpTransportMapping();
    snmp = new Snmp(transport);
    USM usm = new USM(SecurityProtocols.getInstance(),
    new OctetString(MPv3.createLocalEngineID()), 0);
    SecurityModels.getInstance().addSecurityModel(usm);
    transport.listen();
    // add user to the USM
    snmp.getUSM().addUser(new OctetString("MD5DES"),
    new UsmUser(new OctetString("MD5DES"),
    AuthMD5.ID,
    new OctetString("MD5DESUserAuthPassword"),
    PrivDES.ID,
    new OctetString("MD5DESUserPrivPassword")));
    // create the target
    UserTarget target = new UserTarget();
    target.setAddress(targetAddress);
    target.setRetries(1);
    target.setTimeout(5000);
    target.setVersion(SnmpConstants.version3);
    target.setSecurityLevel(SecurityLevel.AUTH_PRIV);
    target.setSecurityName(new OctetString("MD5DES"));
    // create the PDU
    PDU pdu = new ScopedPDU();
    pdu.add(new VariableBinding(new OID("1.3.6")));
    pdu.setType(PDU.GETNEXT);
    // send the PDU
    ResponseEvent response = snmp.send(pdu, target);
    if(response.getResponse()== NULL)
    System.out.println("Request Timed out!!!");
    exit();
    // extract the response PDU (could be null if timed out)
    PDU responsePDU = response.getResponse();
    // extract the address used by the agent to send the response:
    Address peerAddress = response.getPeerAddress();
    }

    Hi,
      Client copy is important when your adding Java Addin. The java stack will be on this client only.
    Can I perform client copy after J2EE installation?
    Yes you can.. create client just say 555 give this client in while adding java addin. It will create another instance. It might not be a problem. If possible, try to delete the java instance refer to the installation gude.
    If not, do I need to uninstall and start the installation from the scratch?
    In my view not required from scratch
    Also Please let me know the procedure for client copy?
    Go to Tcode scc4 to create client give the required details if possible all.
    Remember the client you created in the above transaction.
    Try to login system using the created client number and userid is SAP*
    and passwrd is "PASS".
    Go to tcode sccl there you have copy the data from which client. Try to give the profile which is mentioned in the installation guide..
    Regards,
    Daniel.. L A

  • Cross-platform installs or upgrades

    If I understand the license agreement correctly (and correct
    me if I'm wrong), I'm able to install my copy of DW (and the rest
    of the Suite) on both my PC and on my laptop, provided I don't use
    them both at the same time. That's also provided that both my PC
    and my laptop are on the same platform. I have a Windows PC and a
    Mac laptop, so I'm out of luck. It seems a little unfair, and I
    know there must be some kind of anti-piracy thing that they don't
    allow this, but is there any consideration for changing this so us
    legitimate users can do cross-platform installs without having to
    purchase a second copy of the suite?

    easthollow wrote:
    > I have a
    > Windows PC and a Mac laptop, so I'm out of luck. It
    seems a little unfair, and
    > I know there must be some kind of anti-piracy thing that
    they don't allow this,
    > but is there any consideration for changing this so us
    legitimate users can do
    > cross-platform installs without having to purchase a
    second copy of the suite?
    Your understanding of the licence agreement is correct. The
    question of
    a dual platform licence is raised in this forum on a regular
    basis
    because many indpendent developers are in the same situation.
    However,
    the answer is no - the licence is for one operating system
    only.
    At the moment, the Studio 8 CD-ROM contains both Mac and
    Windows
    versions, but I suspect that this may not always be the case.
    Adobe
    software is sold on separate disks.
    I raised the question of dual licensing with an Adobe
    executive at Adobe
    Live in London a few months ago. He was sympathetic to the
    problems of
    an individual developer, but from the business point of view
    the
    situation was clear. It costs twice as much to create
    programs for both
    Windows and OS X, so if you want to use it on both systems,
    you must
    contribute towards both sets of development costs.
    If you need to run the Windows version on your Mac, you can
    always use
    Virtual PC or one of the dual boot methods.
    David Powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • How to install "Microsoft Office Developer Tools for Visual Studio 2012" without "Web Platform Installer"?

    I have visual studio 2012 ultimate for practice , now I want to do SharePoint 2013 development through that. Generally I should download "Microsoft Office Developer Tools for Visual Studio 2012" through
    Web Platform Installer, but for some reason I want to avoid installing "Web Platform Installer".
    Is there any way where I can download and install "Microsoft Office Developer Tools for Visual Studio 2012" without downloading "Web Platform Installer"?
    Waiting to be guided by you.

    Hi
    Use these links to use WEBPI to download files for offline installation
    http://chakkaradeep.com/index.php/downloading-office-developer-tools-for-offline-install-2/
    http://www.iis.net/learn/install/web-platform-installer/web-platform-installer-v4-command-line-webpicmdexe-rtw-release
    Please mark it as answer if it helps you solving your problem
    Amit Kotha

  • Problem with linux installation on Thinkpad T410i

    Hello everyone. I have a problem with an installation of Linux (Debian). Installation ended in my Thinkpad T410i, but when you are starting, the computer constantly restarts. With windows does not happen. What's the problem?
    Probe with two versions: one with and one without GUI, and always restarts during startup stage or just finish loading the operating system. If eligo Windows in GRUB, the pc works normally.
    I appreciate any help you can give me.

    Madhukar,
    Check the below forums which also discuss about same problem like yours.
    Trouble with SAP system installation GUI
    error in installation of solution manager
    Regards,
    Debasis.

  • Hello I have a problem since my installation of the Yosemite update on my Mac I can longer open Indesign CS6

    Hello
    Hello I have a problem since my installation of the Yosemite update on my Mac I can longer open Indesign CS6.
    I have a problem since my installation of the Yosemite update on my Mac I can more open Indesign yet I have installed JavaForOSX2014-001 but it has changed nothing someone could help me?

    Please do not post the same question multiple times. If someone can help you, they will, but you need to be patient -- we're all just volunteers, users like yourself. I'm going to delete your other posts.

  • Has anybody had the following error while trying to download iTunes 10.5? There is a problem with Windows Installer package. A program required for this install to complete could not be run.

    Has anybody had the following error while trying to download iTunes 10.5? There is a problem with Windows Installer package. A program required for this install to complete could not be run.

    Go to "control panel" then "add or remove programs".  Highlight "Apple software update"  Choose "change" click "Repair"  This should do the trick.  Then download and install iTunes 10.5 again.

  • Tried to install iTunes 10.5 this morning but an error appeared saying "problem with windows installer package. A program required for this install to complete could not be run." Can someone please help

    I tried to install iTunes 10.5 this morning but an error appeared saying "problem with windows installer package. A program required for this install to complete could not be run." Can someone please help

    Firstly, are you installing iTunes for the first time or are you updating your current version of iTunes?
    If you're installing iTunes for the first time have you tried redownloading the installer package? Perhaps the file you downloaded originally is corrupted...
    http://www.apple.com/itunes/
    If you've tried that, then try installing iTunes as your computer's administrator. To do this right-click the install package and choose "Run as administrator".
    If you're updating iTunes to the most recent version try repairing the Apple Software Update program on your computer. It's under the add/remove programs.
    1. Open the control panel
    2. Open Add/Remove programs (called "Programs and Features" in Windows 7)
    3. Navigate to "Apple Software Update" in the list and click on it
    4. Click on "Change" then select "Repair" (or just select the repair option in Windows 7)
    Once you repair this, try running iTunes and the update again.
    Fingers crossed!

  • Problems by the Installation of Adobe Photoshop Elements 12

    Problems by the Installation of Adobe Photoshop Elements 12  can some one help me please?

    Thanks you so much,
    Somehow it is solved now. It is now perfectly installed. and when it is as
    easely as I was using 3.2 version, I shall buy it at once.
    God bless you and thanks.
    Alwin lyss
    2014-07-11 22:01 GMT+02:00 kglad <[email protected]>:
        Problems by the Installation of Adobe Photoshop Elements 12  created
    by kglad <https://forums.adobe.com/people/kglad> in *Downloading,
    Installing, Setting Up* - View the full discussion
    <https://forums.adobe.com/message/6543307#6543307>

  • Hi! I just bought Lion and I am having a problem with the installation. It keeps telling me that the computer's hard drive has a S.M.A.R.T. problem. How can I solve it?problem.

    Hi! I just bought Lion and I am having a problem with the installation. It keeps telling me that the computer's hard drive has a S.M.A.R.T. problem. How can I solve it?
    Thanks!
    Angela

    You may have a hard drive problem. When I installed Lion, the installer told me that it couldn't complete because the hard drive was failing (or broken, the exact words escape me). Since the HD had been functioning just fine, I took it to the Genius Bar, and found out that yes, the hard drive was slowly dying (bad sectors). I couldn't reboot into Snow Leopard, the installer wouldn't let me and then the drive just wouldn't work at all.
    I had to replace my drive and restore from Time Machine. Thankfully, I had Time Machine, and had just done a backup 5 minutes before the crash.
    Best of luck.

  • When i try to update my itunes on my pc i keep getting the messaage that there was a problem with the installer and it could not finish. how do i fix this? i`ve tried to download 3 times already.

    when i try to update my itunes on my pc i keep getting the messaage that there was a problem with the installer and it could not finish. how do i fix this? i`ve tried to download 3 times already.

    Hi
    I've got a similar problem.  iTunes v10.2 worked fine, but when I tried to update it to 10.5 I got a 'Bonjour' error.  I eventually solved that but I still couldn't upgrade to 10.5, so I deleted every single Apple, Quicktime, iTunes, etc file on my PC using Revo Unistaller (because the normal Windows Add/Delete programs wouldn't work) but now, when I install the latest iTunes version from scratch (on XP SP3), it says: "the installer encountered errors before it could be configured.... your system has not been modified" 
    Any ideas?
    Rick

  • HT1349 Hi all,I have just purchased new iphone but have difficulty in completing the itunes download with message : problem with Windows installer package. A program run as part of the setup did not finish as expected.

    Hi all,I have just purchased new iphone but have difficulty in completing the itunes download with message : problem with Windows installer package. A program run as part of the setup did not finish as expected.
    Would appreciate help...its driving me up the wall!!

    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

Maybe you are looking for

  • No sound on Audigy 2 ZS under Win XP, under Linux

    Hi, I have an Audigy 2 ZS installed on my AMD 64 3500+, Board Asus A8N-SLI Deluxe (BIOS 0). I first installed Win XP, Sound drivers and everything worked fine, then installed SUSE Linux 9.3 (x64-Version), and everything was fine too. After a while, u

  • Kernel panic on startup after 10.6.8 update

    My 12-core 2010 Mac Pro was OK until I updated to 10.6.8 I get this error message "Unable to find driver for this plateform: ACPI. Any idea ?? I tried disk utility, zapping PRAM, safe boot... Did not help.

  • Recommended hardware configuration when using Adobe Illustrator and Photoshop

    Hello! I am an Illustrator who uses Adobe Illustrator and Photoshop most of the time. Today I am using Adobe CS5.5 suite and is thinking of getting the Adobe CC. As my computer today is abit old and "tired", I am unsure about what to focus on when up

  • Why is the iTunes download on XP failing?

    I've tried to download the  iTunes executable file onto my XP numerous times this evening via Firefox. I confirmed that I'm downloading the version for Windows, and I've confirmed that I have Service Pack 2. I direct it to save onto my desktop, but i

  • Airplay mirroring and airplay speakers

    I would like to set up airplay mirroring so that audio gets directed to my airplay speakers and the images to the TV. LIke this: iPhone-->ATV-->Airplay speakers I can airplay audio through the phone directly to the speakers, and I can also select spe