Does weblogic starts with EPM services?

Hi Guys
I usually starts my EPM services using ./start.sh script. After the script finished running i am able to run my EPM applications.
My questions is, ./start.sh script doesn't start weblogic (correct me if i am wrong) than how am i able to run applications which are deployed on weblogic server? when it is not running.
Regards

Pratik02 wrote:
Hi JanGLi,
When you run ./start.sh file it will start all EPM System services installed on that machine, so you only see is there any service for weblogic server in your services panel the answer is "NO"
And
./start.sh does not start weblogic server
If you want to start the Weblogic admin server then you need to run ./startWebLogic.sh
Thanks,
Pratik
That is what I have already said.
Also to the OP it doesn't take much to do a quick search on the internet for clarification on admin and managed servers:
"One instance of WebLogic Server in each domain acts as an Administration Server. The Administration Server provides a central point for managing a WebLogic Server domain. All other WebLogic Server instances in a domain are called Managed Servers."

Similar Messages

  • Path login does not start with a "/" character

    I get a "java.lang.RuntimeException: Path login does not start with a "/" character" in my WebApplication.
    - Http Status 500
    - The server encountered an internal error () that prevented it from fulfilling this request.
    Instead I excepted the site for a Re-Login (timout after 10 min), What's wrong?
    The server I use is: Sun Java System Application Server Platform Edition 8.0 (build b57-fcs)
    Here is the full StackTrace:
    [#|2004-05-26T14:50:50.609+0200|SCHWERWIEGEND|sun-appserver-pe8.0|javax.enterprise.system.container.web|_ThreadID=17;|Standard
    WrapperValve[OwaFolderTree]: Servlet.service() for servlet OwaFolderTree threw exception
    java.lang.RuntimeException: Path login does not start with a "/" character
    at org.apache.catalina.core.ApplicationContextFacade.doPrivileged(ApplicationContextFacade.java:451)
    at org.apache.catalina.core.ApplicationContextFacade.getRequestDispatcher(ApplicationContextFacade.java:255)
    at com.space2go.icafe.S2GHttpServlet.service(S2GHttpServlet.java:3260)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:861)
    at sun.reflect.GeneratedMethodAccessor114.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:289)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
    at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:311)
    at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:205)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:102)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:192)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:261)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:215)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:200)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:180)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:582)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at com.sun.enterprise.webservice.EjbWebServiceValve.invoke(EjbWebServiceValve.java:134)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at com.sun.enterprise.security.web.SingleSignOn.invoke(SingleSignOn.java:272)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at com.sun.enterprise.web.VirtualServerValve.invoke(VirtualServerValve.java:209)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:161)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
    at com.sun.enterprise.web.VirtualServerMappingValve.invoke(VirtualServerMappingValve.java:166)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:979)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:211)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:692)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:647)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:589)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:691)
    at java.lang.Thread.run(Thread.java:534)

    It looks like you are getting this error when trying to use the RequestDispatcher. There are two different flavors of the RequestDispatcher :ServletRequest.getRequestDispatcher that will take a relative path and ServletContext.getRequestDispatcher that will only take absolute paths (ie start with a '/').
    If yoy are trying the use the second version of RequestDispatcher you'll need to adjust the path to an absolute path.
    http://java.sun.com/products/servlet/2.3/javadoc/javax/servlet/ServletContext.html

  • Error: response does not start with HTTP

    hi,
    i am using a MIDP class to send a string to a java servlet which then returns a .gif image. the string is being successfully to the servlet, but an exception is being thrown when the image is being sent back.
    java.io.IOException: response does not start with HTTP it starts with: GIF89aï4
    at com.sun.midp.io.j2me.http.Protocol.readResponseMessage(Protocol.java:2166)
    at com.sun.midp.io.j2me.http.Protocol.finishRequestGetResponseHeader(Protocol.java:1934)
    at com.sun.midp.io.j2me.http.Protocol.sendRequest(Protocol.java:1598)
    at com.sun.midp.io.j2me.http.Protocol.sendRequest(Protocol.java:1517)
    at com.sun.midp.io.j2me.http.Protocol.openInputStream(Protocol.java:484)
    my code is as follows in the midp class :
    HttpConnection c = null;
    InputStream is = null;
    StringBuffer sb = new StringBuffer();
    String url="http://localhost:8090/ProjectServer/createMap";
    url=url+"?Source="+src+"&Destination="+dest;
    try {
    c = (HttpConnection)Connector.open(url,Connector.READ_WRITE, true);
    c.setRequestMethod(HttpConnection.GET); //default
    //is = c.openDataInputStream();
    is = new DataInputStream(c.openInputStream()); //openInputStream(); // transition to connected!
    Image im=null;
    try
    ByteArrayOutputStream bStrm = new ByteArrayOutputStream();
    int ch;
    while ((ch = is.read()) != -1)
    bStrm.write(ch);
    // Place into image array
    byte imageData[] = bStrm.toByteArray();
    // Create the image from the byte array
    im = Image.createImage(imageData, 0, imageData.length);
    finally
    // Clean up
    if (is != null)
    is.close();
    the code in the servlet is as follows :_
    ServletContext sc = getServletContext();
    // Get the MIME type of the image
    String mimeType = sc.getMimeType("route.gif");
    if (mimeType == null) {
    sc.log("Could not get MIME type ");
    response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
    return;
    // Set content type
    response.setContentType(mimeType);
    // Set content size
    response.setContentLength((int)file.length());
    // Open the file and output streams
    FileInputStream in = new FileInputStream(file);
    OutputStream outstream = response.getOutputStream();
    // Copy the contents of the file to the output stream
    byte[] buf = new byte[1024];
    int count = 0;
    while ((count = in.read(buf)) >= 0) {
    outstream.write(buf, 0, count);
    in.close();
    outstream.close();
    il be immensely grateful if some1 cud tell me whre i am gng wrong.
    thnx,
    nev

    Hi, I�m trying to do the same as above, get MP3 from a Shoutcast server.
    I got the same fault ("response does not start with HTTP it starts with: ICY") when I tried to open an HttpConnection as bellow:
    ============================================
    HttpConnection conn = (HttpConnection) Connector.open("http://64.236.34.196/stream/1074");
    Then I tried to open a socket connection as bellow:
    ======================================
    SocketConnection conn = (SocketConnection) Connector.open("socket://64.236.34.196:80");
    String get = "GET /stream/1074 HTTP/1.1";
    DataOutputStream os = conn.openDataOutputStream();
    os.writeUTF(get);
    InputStream is = conn.openInputStream();
    But then I got the following error:
    =========================
    java.lang.SecurityException: Target port denied to untrusted applications
    Could someone help me to find out what is going on?
    Thanks a lot!

  • "Layer 1 does not start with a new cell" replicator error

    Hi All,
    I recently sent a dual layer +R DVD off to our replication house and their system is returning a message that says: "Layer 1 of DVD-Video does not start with a new cell".
    I know from reading that the dual-layer breakpoint must be set to the end of a cell, but what does the word "cell" translate into for DVDSP4?
    I had the DVD DL+R set to Automatic and Non-Seamless for output for the break point. Should I just try setting the break point manually at the beginning or ending of a track that would be dubbed as just a little more than half the size of the content? (I know in OTP, the Layer 0 has to be bigger than Layer 1)
    Please Help!
    Cheers,
    Dusty

    Thanks both of you for your replies.
    Eric, I am currently exporting DDPs to send in to the replicator. I also emailed them asking if they accept this format for delivery. (Which I would hope they would, as it is, an answer to DLT of sorts) Thanks for bringing this up, DDP is new to me, as this is our first DL project for replication.
    Drew, to answer your reply, yes I have two viable markers (chapter markers) that show up in black, not grayed out, in the tab you mentioned under formatting. I chose manual break point selection for this last disc I burned and chose chapter 4 of that track. (chapter 4 and chapter 5 of track 6 are only options) I have to assume that the "automatic" setting was selecting chapter 5, as it had to see that as the last viable marker available to select, as described in the DVDSP4 manual.
    DVDSP4 says that all markers are considered cells- Or actually that tracks are cells and that the markers within them make up more cells. So my question, outside of DDP option, would be, "what truly constitutes a cell boundary in DVDSP4?" Is it the markers within the tracks or the beginning or ends of the tracks themselves?
    As a side note, I burned the disc that received the error, "Layer 1 doesn't start with a new cell" from an IMG i created from DVDSP4 through Disk Utility. Word is that IMG's somehow don't include breakpoint information.
    So at this point I don't know if it is the IMG or the fact that DVDSP4 wants the break at one of two possible chapter markers in track 6.
    (Some more background- this is a TV show season DVD, with thirteen tracks of video, each with 12-14 chapter markers a piece.)
    Any more thoughts to help clear the air on what constitutes a true new cell boundary?
    Thanks sooo much Eric and Drew, I know this a long read.
    Cheers,
    Dusty

  • OWB 10.1.0.2 Repository Assistant does no start with Windows XP.

    OWB 10.1.0.2 Repository Assistant does no start with Windows XP.
    Does anyone have a clue ?
    Bests
    Eric

    Hi Eric!
    I've got a couple of clues, with the most important being that this is not the right forum. I expect that there will only a few folks in this forum who can answer you warehouse question. Try in the database section if there is a more apropriate forum.
    cu
    Andreas

  • If default domain name and server name is not accepted weblogic server 6.1 does not start as NT service

    I want to change the domain name and the server name ( I do not want
    mydomain, myserver) while installing
    weblogic as an NT service. After installing and starting weblogic from NT
    services program, weblogic does not start
    But if I start it from the command script, it starts
    Thanks
    madhu

    Hi,
    I could start weblogic as an nt service by changing the name of the
    default server and domain. I had to include password in the
    installNTservice script.
    Thanks
    Madhu
    Michael Young <[email protected]> wrote in message
    news:[email protected]..
    Hi.
    Please open a case with BEA support.
    Thanks,
    Michael
    m holur wrote:
    I want to change the domain name and the server name ( I do not want
    mydomain, myserver) while installing
    weblogic as an NT service. After installing and starting weblogic from
    NT
    services program, weblogic does not start
    But if I start it from the command script, it starts
    Thanks
    madhu--
    Developer Relations Engineer
    BEA Support

  • Where does WebLogic fit with/beside our custom web-server?

    Hi,
    I'm just getting started with the WebLogic Application Server and wondering
    what it can do for our setup, which looks like the following:
    Our web server has a plug-in which parses each html file requested, and
    if it contains any of our "custom" tags, passes it on to another "engine".
    This "engine" uses our own database, and object server to make queries,
    and turn the custom tags into standard HTML. Some custom-tags include
    custom links to other "extended" pages, which the "web server extension"
    converts to normal HTML links to the custom pages, which will of course
    be caught in turn by the intermediary parser when navigated to.
    There are probably ways we can stream-line and minimize the steps required
    to assemble the standard HTML. However, if anyone has some ideas,
    I'm basically just wondering how WebLogic can help improve our architechture
    and the performance, with minimal changes at first. Since we do so much
    page assembly by parsing the custom tags, I have difficulty seeing how
    WebLogic could do caching. The HTML that a custom tag "expands" to
    may be state dependent on the underlying database/object server!
    Any comments/ideas much appreciated.
    Thanks,
    Andy

    If you need an extra "ZAP" to get people to return,
    your site is probably lacking good content. People
    won't go to your site just for your fancy applets and
    flash animations, you need to have content. Why do so
    many people use Google instead of Yahoo? Because
    Google's homepage loads faster without all the ads and
    other crap that you get on other search sites. Also,
    because google performs searches faster than any other
    site. Basically you need good content and good
    service without distractions.I get the 'content is king' bit although I tend to disagree with the effect that multimedia has on users. I have a MSc by research which looked at the effects of animation on users of e-commerce sites. It does have a positive effect (it did with my results anyway) - hence I would like to build more multimedia into the web site (under construction).
    A combination of fast download, intuitive navigation and clear layout can improve usability.
    I disagree with the Jakob Nielsen school of thought i.e. text-only web sites with no graphics are the ultimate. He is a usability expert but usability per se does not improve web site stickiness. I digress.
    I want to do the server side stuff mentioned above - it is not a question of just pointing at files on the server...if it were that easy, I would not be posting and would hook all my pages to a tight back-end. The much higher wages of web developers compared with web designers should highlight this skill difference.
    Also, not many web sites generate dynamic web pages completely differently to each individual user. Broadband (DSL) will bury the text-only 14.4 kbs modem type site (a disgusting remnant of 1995 which was severly restricted due to low modem speeds).

  • Essbase Service crashed after starting other EPM service

    Hi,
    I'm using EPM 11.1.1.3 on WebLogic 9.23. OS: Win2003R2 32bit.
    2 days ago my server has been crashed. After that I had to restore OpenLDAP directory. As loading of services Essbase service is started successfully, however at call to it through EAS or start of other services (Provider services) Essbase service is crashed.
    What log files to me need to be looked?

    Have you tried "Recover Native Directory" in Shared Services.
    Have you checked the essbase.log in hyperion\logs\essbase
    It may be a problem with the essbase security file, though I wouldn't expect essbase to start up if it was.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Attaching a URL which does not start with HTTP / HTTPS in SAP TM

    Dear Experts,
    I am trying to insert a new URL to a Attachments table in FWO / FRB application.
    My URL neither start with HTTP  nor HTTPS (Ex: Z3://searchsmartstart...). while I am trying to insert such URL, I am getting an error message 'URL not valid.Check if the URL contains the protocol (HTTP/HTTPS). Message ID - /SCMTMS/UI_MESSAGES and message number 088.
    After some analysis, I have understood that WebDynpro ABAP framework does not accept such URL.
    Could you please guide, is there any other way of doing it? The URL which I am trying to access is of SMART CLIENT.
    Thanks in advance for your reply.
    Thanks,
    Bharath.K

    Hi Bharath,
    Yes, you can achieve the same via URL redirection. Please follow the below steps.
    1.Create a service in SICF e.g. sap/bc/redirect_z3 in your SAP TM system and follow following steps.
    2. Create a class with interface IF_HTTP_EXTENSION e.g. ZCL_REDIRECT_URL
    3. Maintain  class created in step 2 into the Handler List of the service created in step 1.
    4. In class ZCL_REDIRECT_URL Method IF_HTTP_EXTENSION~HANDLE_REQUEST write below code
                        Data: lv_target type string.
                           lv_target = 'Z3://searchsmartstart.......'
                          server->response->redirect( url = lv_target ).
    5. You can also read the parameter from the source URL with below program code
    CALL METHOD server->request->get_form_data
        EXPORTING
          name = 'PAR1'
        CHANGING
          data = lv_par1.
    6. Now attach the URL of your service created in step 1(Which will be http/https URL) to Attachments table in FWO / FRB application with parameter you want.
    Now once you click this URL , Mehtod IF_HTTP_EXTENSION~HANDLE_REQUEST in Handler list class will execute here you can read the parameter as mentioned above and form a target URL and redirect to you intended target .
    Thanks, Pravin

  • Tomcat 5.0.16 does not start with https.

    I've just done an update to a tomcat that was otherwise working perfectly.
    The original tomcat was running https on 8443 and has done so without a problem for many weeks.
    Since the update (which had nothing to do with the keystore or any config files), the tomat now refuses to even start with https enabled.
    If I turn the https connector off, and run the same webapps under http, everything is fine, and the tomcat runs happily.
    What could have caused it to fail ? The SSL cert is not out of date.
    More over, if I clear the log files then attempt an https connector start, it recreates the catalina.out file, but without anything in it. Does this sound like a permissions issue.. ?
    I'm trying to figure out whats happened to the box, rather than the tomcat I think.

    try hitting the server with the https:// ip address and not the www.nameofserver.
    also try http://nameorip:443, http://nameorip:8443
    Catalina.out will only show you server started/stopped and or any System.out.println's you have.
    make sure you have something like this in your <context> tag.
    <Logger className="org.apache.catalina.logger.FileLogger" prefix="newShop_log." suffix=".txt" timestamp="true" />
    If you do have a logger for your context, check its file for errors.
    The answer will be in your logs, you just have to find 'em.

  • W2k8R2sp1::Eventlog service does not start::cause: JavaWS service does not start

    Windows Web Server W2k8R2sp1 Problem
    Eventlog service does not start
    - Cause: Java Web Start does not start
    -- Cause: Had a virus in "C:\Program Files (x86)\Java\jre1.6.0_03\bin\javaws.exe"
    (AVG removed file. Re-installed java in: S:\Java\re1.8.0_31
    In registry: file-paths seem to be okay (regedit find: javaws, Java Web Start)
    Can't find a solution on-line.
    What to do?
    It is a dedicated production server managed by remote desktop (Leaseweb.com, ip: [37.48.64.130])
    Any help will be highly appreciated.
    Thanx in advance, 
    Dick

    Hi Vivian,
    Rebooted several times
    The point is the event-viewer is not working. Because the eventlog-process is not running/starting. Because JavaWS-process isn't starting 
    Registry: http://niceware.com/zen/All_registry_20015-03-25_reg.txt
    Processes: http://niceware.com/zen/services-2015-03-25_csv.txt
    This is some info by SC.EXE:
    =========================
    CMD in elevated mode:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Windows\system32>sc queryex eventlog
    SERVICE_NAME: eventlog
            TYPE               : 20  WIN32_SHARE_PROCESS
            STATE              : 1  STOPPED
            WIN32_EXIT_CODE    : 1068  (0x42c)
            SERVICE_EXIT_CODE  : 0  (0x0)
            CHECKPOINT         : 0x0
            WAIT_HINT          : 0x0
            PID                : 0
            FLAGS              :
    C:\Windows\system32>sc queryex javaws
    SERVICE_NAME: javaws
            TYPE               : 10  WIN32_OWN_PROCESS
            STATE              : 1  STOPPED
            WIN32_EXIT_CODE    : 0  (0x0)
            SERVICE_EXIT_CODE  : 0  (0x0)
            CHECKPOINT         : 0x0
            WAIT_HINT          : 0x0
            PID                : 0
            FLAGS              :
    C:\Windows\system32>sc start javaws
    [SC] StartService FAILED 1053:
    The service did not respond to the start or control request in a timely fashion.
    ========
    C:\Windows\system32>sc start eventlog
    [SC] StartService FAILED 1068:
    The dependency service or group failed to start.
    ========
    C:\Windows\system32>sc qc javaws
    [SC] QueryServiceConfig SUCCESS
    SERVICE_NAME: javaws
            TYPE               : 10  WIN32_OWN_PROCESS
            START_TYPE         : 2   AUTO_START
            ERROR_CONTROL      : 0   IGNORE
            BINARY_PATH_NAME   : S:\Java\re1.8.0_31\bin\javaws.exe
            LOAD_ORDER_GROUP   :
            TAG                : 0
            DISPLAY_NAME       : Java Web Start
            DEPENDENCIES       :
            SERVICE_START_NAME : LocalSystem
    C:\Windows\system32>sc qc eventlog
    [SC] QueryServiceConfig SUCCESS
    SERVICE_NAME: eventlog
            TYPE               : 20  WIN32_SHARE_PROCESS
            START_TYPE         : 2   AUTO_START
            ERROR_CONTROL      : 1   NORMAL
            BINARY_PATH_NAME   : C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted
            LOAD_ORDER_GROUP   : Event Log
            TAG                : 0
            DISPLAY_NAME       : Windows Event Log
            DEPENDENCIES       : javaws
            SERVICE_START_NAME : NT AUTHORITY\LocalService
    C:\Windows\system32>

  • Skype does NOT start with Windows Anymore (start S...

    My Skype NO LONGER starts with Windows anymore!!! I HAVE to manually open Skype!!! I cheked the options and "start Skype with Windows" IS checked!!! I tried unchecking the option and rechecking it, made no difference!!! how do I fix??

     Just because Skype isn't starting up automatically doesn't mean it isn't trying.  Other applications you have loading at startup could be slowing down Skype's ability to start.  You can run msconfig ( Start - Run  (Wink key + R) -  "msconfig".  Under the startup tab you can see if Skype is set to start or not.  You can also uncheck everything else but Skype and see if it comes up them.  If it does, using a process of elimination you should be able to determine the application causing the probelm.  If you do not see anything for Skype you can use the registry files provided to toggle that feature on/off just as the Skype program attempts to.
    Attachments:
    Start_Skype.zip ‏2 KB

  • ABAP WebDynpro - ArchiveLink - PDF Error: "File does not start with..."

    Hey community,
    I have a WebDynpro application in which I want to show a Archive document.
    I'm using FM 'ARCHIV_GET_TABLE' and then FM 'SCMS_BINARY_TO_XSTRING'.
    But I only get the error message: (see also attached)
    File does not open with "%PDF-".
    Local\EWH...
    Attachment two shows, how the data is stored in TOA03.
    Document type is FAX .
    I tried several FM and nothing worked.
    Does anyone have an idea?
    Thank you very much in advance.
    Florian

    Hi Florian,
    I don't think you need to use FM SCMS_BINARY_TO_XSTRING.
    Just try to make of your binary output table from ARCHIV_GET_TABLE an xstring by concatenating all lines into one xstring.
    Regards,
    Julien

  • [solved] Bash shell... does not start with user name, but used to...!

    when I start a console, logged in as user, it always used to start with
    user@hostname ~$
    Suddenly, and I cannot recall having done anything that could lead to the issue, konsole will always start as
    bash3.2$                                                     
    even after many reboots, this is still the case.
    whoami shows my user name. I can su to root, and from there to my username, but never directly from bash.
    Occasionally, starting a program like KDE partition manager fails with the error message the program su could not be found. but it is as I said occasional.
    I am quite a newbie to Linux, so I am clueless. Can someone help me..? I tried googling, but I seem to be the only one in the WWW that goofed up to such an extent..! and searches are quite unrevealing.
    I am installing Linux From scratch using arch linux as base system, but I am just following The Book to the letter and don't think that caused the problem.
    Last edited by jaydoc (2009-01-26 09:12:56)

    @weasel8...
    That is THE trouble. And I take back my words, it was during the linux from scratch install that I botched that file...! I was supposed to make a new bashrc file in the LFS directory, but I went wrong on the commands and I think I ended up removing the Arch Linux file...!
    If it is to be found, it should be in the etc directory, right..? I looked there and could not find it. Did I look in the right place...?
    What can I do...?
    Last edited by jaydoc (2009-01-26 07:33:14)

  • TS1292 my card is not letting me redeem my $15 credit from my itunes card and the serial number does not start with GCA

    the system keeps saying that my itunes card is invalid and the serial number starts with GCA I NEED HELP I dont have $15 to waste

    Make sure you're using the correct code. For most iTunes cards, the code is under the scratchoff area on the back of the card. Also, the gift card you're trying to use must have been issued in the country whose iTunes Store you are using; you cannot use a card from another country. If you're sure you're using the correct code and that the card was indeed issued in your country, contact the iTunes Store Support; instructions are at the bottom of the article from which you came.
    Regards.

Maybe you are looking for

  • Values not getting saved in DFF in iSupport

    Hi, I have enabled DFF in iSupport, which is visible to users. Users are able to enter values in the fields, but after SR is created, the values are not visible in SR update screen in iSupport nor in SR form in customer support. Does anybody know wha

  • How do i connect multiple devices to itunes

    I have multiple apple devices (3 Iphones and 5 ipods) to connect to Itunes.  I can't get Itunes to recognize the independent devices.

  • I would like to add a solid state drive to my 27" iMac i7 (Jul 2010). Can this be done?

    Good day all I would like to add a solid state drive to my imac 27" which currently has 1TB drive.  I know that you can by the imac with a ssd and an hdd but can a dealer install a ssd after the fact?

  • How to execute sql from table

    For a migration I have created a sql script that puts the full statement to be executed in a specific table column I'm now looking for a way how to execute those statements. Table structure like: oldName, newName, sqlStatement, id, otherField, otherF

  • Problem connecting Windows NT

    Hi all, maybe it is quite easy what I am asking but can you help me? I have an Ultra5 with Solaris 7 and a PC with Windows NT 4. I want to share a directory (or a file system) from the Ultra 5, so that the PC will see it as its own and use it to stor