- CAPS 5.1.3:  start/stop Integrationserver - individual Projects disable -

Hello,
I'd like to ask, if there is a solution to the following:
How do you start an integrationserver with all/individual projects disabled?
(even these projects where enabled at the point the server were stopped)
Many thanks! ;-)
Kind regards
Thomas Jakob

hi cody,
the bba group mtu setting is necessary for the MRU negotiation during PPP/LCP. it doesnt actually define the mtu on the session itself as yet.
the dynamic template configuration is a fixed value for the subscriber interface which should ideally match what you signal on the bba-group setting.
The reason for that bba-group config is that when LCP starts that nego's the MRU, the template is not yet activated hence we dont know the template configuration for the MRU exchange.
It smells like that the PPP is persisting on the 1492, maybe because of the peer.
I dont think that dropping connections are caused by MRU/MTU issues, as this would merely result in stalling or dropped connections.
You could try and set the mss-adjust to mitigate this problem.
Also there is a good history command to help finding out why sessions are disconnecting:
show ppp disconnect-history det loc
cheers
xander

Similar Messages

  • How can I create individual clips after doing DV start/stop locate?

    I know how to take a clip and have FCE mark the DV start/stop points, but is there a way to have FCE then automatically make individual clips based on the DV in/out points?

    Yes, that's actually what is 'behind the scene' in each subclip. This is actually a very powerful thing, as you will discover as you gain experience editing.
    Yes, they act as if they are completely independent of each other, you can apply further edits, filters, effects etc. to each subclip individually.
    Switching from iMovie to FCE takes some adjustment, that's for sure. But FCE is much much more capable than iMovie.
    I encourage you to get a copy of Tom Wolsky's excellent book - Final Cut Express 2 Editing Workshop. It's the best thing available to get you started with FCE ... and it includes a DVD where he shows you the differences between using iMovie and FCE. Tom has also recently produced an FCE training DVD, too, Final Cut Express HD Made Easy, and he is an active participant in this forum.

  • Way to Erase All Start/Stop Time Data?

    I used a DJ plugin called BPMer to load the BPMs into all my MP3s. It had an option "Optimize Start and Stop Times." This helps the program skip ambient intros of songs in order to beatmatch, mix and crossfade more efficiently. The only problem is that the information is retained under Get Info:Options:Start/Stop Times even if the plugin is turned off. It is stored in the ID3 info. I am wondering how to universally delete this information or reset it to default because I do not feel like going to every song individually to reset it (I'd have to do it about 6000 times). I tried selecting multiple songs, but the Start/Stop does not show up under Options when multiple tracks are selected.
    Also don't suggest to re-run the BPMer program with the box unchecked for optimize start/stop times. I tried it. I figured out how to make BPMer not edit the times in the future, but it won't erase or overwrite the old start/stop info on tracks I already used it on.
    Sort of a weird problem, but any ideas to save me from the nightmare of doing this individually 6000 times are greatly appreciated.

    Doug Adams has a script over at his great site that should help with what you're trying to do.
    http://dougscripts.com/itunes/scripts/ss.php?sp=resettracksstartstop
    Matt

  • Starting/Stopping Application Server Forms and Reports

    Hello,
    Are there any scripts (like dbstart and dbshut for Oracle DB) for starting and stopping "Application Server Forms and Reports". If not, any special suggestions?
    I must automatically start this application on Unix. I know that during starting some steps must be performedy by the root user (export DISPLAY env variable and issue the "xhost +" command) and later the oracle user must do some things( export ORACLE_HOME and DISPLAY and issue the "opmnctl startall" command). Does anybody have scripts like that?
    Regards,
    Tim

    If you're on 10.1.2, there is a script (requires an X Windows session). It's called runstartupconsole.sh, but you've got to update the install type to Portal in the ias.properties file if I remember right. It looks cool, but a shell script works better.
    Here is a shell script that does some of those things. You still need to run xhost+ after running a display if you're using something that requires a DISPLAY to start. Someone may have a better one, but this one works.
    We actually use one that starts all the different components individually except for Reports in rc scripts. That is the only thing we have that needs a Display set to start. So then xhost + is run & at the same time, the Unix sysadmin runs a script that start Reports from opmn.
    I hope this is useful.
    Cordially,
    Steve
    #!/bin/sh
    # =======================
    # Collect Global Variables
    # =======================
    # Collect server specific install location
    export ORACLE_BASE=/u01/app/oracle
    export MIDDLE_TIER_ORACLE_HOME=$ORACLE_BASE/product/ias/101202_EE/mt_maxportal_02
    export INFRASTRUCTURE_ORACLE_HOME=$ORACLE_BASE/product/ias/101202_EE/if_maxportal_02
    export SID=orcl
    # Collect current PATH and LD_LIBRARY_PATH for reuse
    export OLD_PATH=$PATH
    export OLD_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
    # Unset variables that can cause problems starting or stopping
    unset CLASSPATH
    case "$1" in
    start)
    # =======================
    # Start Infrastructure
    # =======================
    # Set environment to start infrastructure components
    export ORACLE_SID=$SID
    export ORACLE_HOME=$INFRASTRUCTURE_ORACLE_HOME
    export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
    export PATH=$ORACLE_HOME/bin:$OLD_PATH
    # Start Infrastructure Database Listener
    echo -n "Starting Infrastructure Database Listener: "
    $ORACLE_HOME/bin/lsnrctl start
    echo "OK"
    # Start Infrastructure Database
    echo -n "Starting Infrastructure Database: "
    $ORACLE_HOME/bin/dbstart
    echo "OK"
    # Start Infrastructure OPMN managed components
    echo -n "Starting Infrastructure OPMN Managed Components: "
    $ORACLE_HOME/opmn/bin/opmnctl startall
    echo "OK"
    # =======================
    # Start Middle Tier
    # =======================
    # Change environment for middle tier
    unset ORACLE_SID
    export ORACLE_HOME=$MIDDLE_TIER_ORACLE_HOME
    export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
    export PATH=$ORACLE_HOME/bin:$OLD_PATH
    # Start Middle Tier OPMN managed components
    echo -n "Starting Middle Tier OPMN Managed Components: "
    $ORACLE_HOME/opmn/bin/opmnctl startall
    echo "OK"
    # Start Application Server Control
    echo -n "Starting Application Server Control: "
    $ORACLE_HOME/bin/emctl startifdown iasconsole
    echo "OK"
    stop)
    # =======================
    # Stop Middle Tier
    # =======================
    # Set environment for middle tier
    unset ORACLE_SID
    export ORACLE_HOME=$MIDDLE_TIER_ORACLE_HOME
    export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
    export PATH=$ORACLE_HOME/bin:$OLD_PATH
    # Stop Application Server Control
    echo -n "Stopping Application Server Control: "
    $ORACLE_HOME/bin/emctl stop iasconsole
    echo "OK"
    # Stop Middle Tier OPMN managed components
    echo -n "Stopping Middle Tier OPMN managed components: "
    $ORACLE_HOME/opmn/bin/opmnctl stopall
    echo "OK"
    # =======================
    # Stop Infrastructure
    # =======================
    # Set environment to start infrastructure components
    export ORACLE_SID=$SID
    export ORACLE_HOME=$INFRASTRUCTURE_ORACLE_HOME
    export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
    export PATH=$ORACLE_HOME/bin:$OLD_PATH
    # Stop Infrastructure OPMN managed components
    echo -n "Stopping Infrastructure OPMN managed components: "
    $ORACLE_HOME/opmn/bin/opmnctl stopall
    echo "OK"
    # Stop Infrastructure Database
    echo -n "Stopping Infrastructure Database: "
    $ORACLE_HOME/bin/dbshut
    echo "OK"
    # Stop Infrastructure Database Listener
    echo -n "Stopping Infrastrucutre Database Listener: "
    $ORACLE_HOME/bin/lsnrctl stop
    echo "OK"
    reload|restart)
         $0 stop
    $0 start
    echo "Usage: `basename $0` start|stop|restart|reload"
    exit 1
    esac
    exit 0

  • Starting/Stopping 9iAS Infrastructures with batch files

    I created the following two batch files to start and stop my iAS Infrastructure. I found that if I used the services settings of automatic, all did not go well.
    start.bat:
    @ECHO OFF
    cls
    ECHO About to start the listener
    net start Oracle9ias_InfraTNSListener
    ECHO About to start the database
    net start OracleServiceIASDB
    ECHO About to start the OID monitor
    e:\ora9iasinfra\bin\oidmon start
    ECHO About to start the OID server
    e:\ora9iasinfra\bin\oidctl server=oidldapd configset=0 instance=1 start
    ECHO About to start the website
    net start Oracle9ias_infraEMWebsite
    ECHO About to start opmn and OC4j
    e:\ora9iasinfra\dcm\bin\dcmctl start -ct ohs
    e:\ora9iasinfra\dcm\bin\dcmctl start -co OC4J_DAS
    stop.bat:
    @echo off
    cls
    ECHO About to stop the website
    net stop Oracle9ias_infraEMWebsite
    ECHO About to stop opmn and OC4j
    e:\ora9iasinfra\dcm\bin\dcmctl shutdown
    ECHO About to stop the OID server
    e:\ora9iasinfra\bin\oidctl server=oidldapd configset=0 instance=1 stop
    ECHO About to stop the OID monitor
    e:\ora9iasinfra\bin\oidmon stop
    ECHO About to stop the database
    net stop OracleServiceIASDB
    ECHO About to stop the listener
    net stop Oracle9ias_InfraTNSListener
    When I execute the batch files sometimes they work and sometimes they don't, for example after starting, occasionally the Apache process has not been created, and sometimes processes won't stop.
    However if I enter each command seperatly all works OK. Can anyone suggest a reason for this, maybe ordering is significant or a time delay may be required between certain actions?. Also after starting the website manager the process managers for both the infra and ias instances are started (I have installed both the iAS and the Infrastucture on the same machine - this all works fine when started as a series of individual commands but not when through batch files).
    Also If I try to use:
    SQLPLUS /NOLOG
    SQL>CONNECT sys/password@iasdb as sysdba
    SQL>Start
    I also get an 'unable to create a dedicated server' error. I can start/stop the database through the enterprise manager in either standalone or management server configuration without any errors. Can anyone shed any light on this?. I have set both TNS_ADMIN and ORACLE_SID correctly.
    Terry Bennett

    Thanks, I had read that and it was very informative. I did however solve my problem using a few other threads that have been posted about the runtime.runtime().exec commands. Thanks for you help.

  • DVD Start/Stop and Subclips

    Question: In my browser I have double clicked a clip, it opens in the viewer, I then go to >View>DVD start/stop and the markers are inserted. Once I go back to the browser and highlight the markers and go to Modify>make subclips, FCP will only convert about 27 or 28 of the markers to subclips, when there is actually over 100 markers. Is there a maxium limit on the number of markers that can be converted or that will appear in the browser list? Hope I am clear.
    G5-1.8GHz-2GB DDR SDRAM- 250 ATA HD just upgraded to FCP 5.1
    Thanks,
    Mary
    Power Mac G5   Mac OS X (10.4.8)  

    I've done it both ways, not sure which is easier.
    HDV capture creates individual clips (individual media files) based on the detected start/stop and uses a name you specify at the initiation of the capture appending a sequence number to the end of the name for each new clip. S/S detect always uses the name "Segment". Like the Segment clips, HDV clips are in natural order, as you say. I'm guessing that the file system is smart enough to consider the entire number at the end of a name, but sorts character by charcter if the number is in the middle of the name.
    Just seems a little short sighted to use different naming conventions for essentially the same function, especially when it causes the files to be out of order.

  • Print to Video Start Stop recording

    Hello
    Ok is their any way to have FCP mark a Start Stop after each clip when recording a timeline with many clips. So that when recaptured it imports each clip in the Timeline as an individual clip.
    Perhaps their is another software for this.
    I have been reading the Manual back and fourth cant find out how to add start stop points. I have tried markers transitions blank space. Nothing wants to work.

    Thank you for your help.
    Your suggestion got me to come up with a few other things which led me to what I am going to do.
    I still am going to try the Adobe thing I'll let you know how that goes.
    I will have a directory with markers one for each tape on a USB stick.
    A black slug around 2 frames in between each clip and enough black to start off and to end with as to keep every frame.
    One thing though.
    The reason I was trying to do start and stop was in the event someone else needed to record the Tape but I will probable be the only one to do such.

  • How do I tell what songs have altered Start/Stop times (Under "Get Info-Options") without opening every single song.

    Sometimes, for whatever reason, I'll change the Start/Stop times of my songs, and I'll forget which ones I've done this to. For me, this can be a hassle, due to the number of songs I have, and the actual amount I listen to my iPod. I'll admit that it's my fault, that when I'm making a ringtone or simply shortening a song temporarily, I'll almost definitely forget to change that shortened time back after I'm done. But that moment when you're listening to a song and it abruptly ends, especially in a place I don't have access to iTunes (and in that situation I usually forget before I get home, exacerbating the problem even further), it can be the most annoying thing ever for me. I don't want to deal with it any longer, though, so here's my question:
    How can I view which songs have altered Start/Stop times, without needing to view the Info for each individual song? I can't select all songs and then select "Get Info", because if I do that it won't even show the Option. The only reason I'm here is because I tried to figure it out myself, for weeks on end, and have returned no valid options for solution. So can someone please help me?

    Customize the Finder window toolbar, adding the Path icon to it. Select an item and click on the Path icon or, as you already know, add path to the window. There's also copypath.app available via the App Store.

  • Capture Now with DV Start/Stop Detect maintaining Timecode

    I am a new Mac user coming from Adobe Premiere Pro. In Pro, I could capture an entire tape into individual clips. I am now using FCE4, and have found the Capture Now option, as well as the DV Start/Stop Detect setting. The resulting segments show an In point based on the timecode of the tape. When I rename the file and move it to a different bin, I lose the timecode (in list view, in and out point state Not Set). Is there a way to maintain timecode to keep my shots in sequence?

    This is the link to Piero's free filter - see if it is suitable:-
    http://web.mac.com/piero.fiorani/iWeb/PieroF%20FCE%20Effect/FCE%20Timecode%20Dis play.html

  • Is there any way to start/stop OBIEE system components other than OPMN

    We had some issues including OPMN into our watch dog process, does oracle provide start/stop scripts to manage system components or we have to rely on OPMN ?
    Appreciate your help
    ~Srix

    Check this link
    http://www.cool-bi.com/CMDline/Individualservices.php
    You can use ias-component name in the output to stop/start individual service
    ex:
    opmnctl startproc ias-component=coreapplication_obips1
    Hope this helps, pls mark as correct if helps
    Edited by: Srini VEERAVALLI on Jan 10, 2013 2:55 PM
    Edited by: Srini VEERAVALLI on Jan 10, 2013 9:57 PM

  • How do I select multiple albums in Revel to start/stop sharing?

    How do I select multiple albums in Revel to start/stop sharing?

    Hello,
    You have to select each one to share the album. You can have multiple albums sharing at the same time. Please see our FAQ post "How to share photos with Revel"
    http://forums.adobe.com/thread/1157995?tstart=0
    For additional helpful information regarding Revel , please see our main FAQ Forum http://forums.adobe.com/community/ps.com_sharing_and_storage
    Thanks
    Scott

  • How do I change the start/stop time for multiple songs not just one song at a time?

    How do I chnage the start/stop time for multiple songs not just one song at a time?

    I don't think you can in iTunes.
    Multiple editing in Get Info does not offer an option to change start/stop times.

  • Start/Stop music time in iTunes not syncing to iPod

    Hi, I've managed to change the start/stop times in a few of my songs to skip some lengthy intros/outros in iTunes, but for some reason, these changes refuse to be synced onto my iPod Touch (second gen).
    I'm not exactly sure what to do in this situation... any suggestions are greatly appreciated :]
    Edit: No idea how this got into the iPod nano 4th gen subforum... I was in the iPod Touch subforum when posting this
    Message was edited by: seanterisu

    I just went through and tried both updating and authorizing my computer to play the music. I have the most recent version, and even after authorizing my computer nothing has changed.
    If this helps, even on the iTunes screen, while the music files show up in the iTunes part of the library, the smart lists are empty of the same music files under the iPod listing.
    Thanks for the help, perhaps you can provide more?

  • Can not  start/stop fullfilment server after fresh install

    Can not start/stop fullfilment server after fresh install
    Product: e-business suite (11.5.9)
    Platform: Win XP 5.1 (SP2)
    We have performed a new installation of ebusiness suite in our windows platform.
    Installtion went with out any problem.
    But we can not start/stop the fullfilment server. While trying to start/stop the server we are getting follwing error message:
    c:\oracle11i\prodcomn\admin\scripts\PROD_03274019ih\jtffmctl.cmd start
    script returned:
    C:\oracle11i\prodcomn\admin\scripts\PROD_03274019ih>echo off
    You are running jtffmctl.cmd
    Mon 13/09/2004
    01:46 PM
    "Starting Fulfillment Server for "PROD" on port "9300" ...\n"
    "Error returned while running OUI"
    ERRORCODE = 1 ERRORCODE_END
    .end std out.
    Class not found: oracle.apps.jtf.fm.engine.processor.Processor
    Please let us know how to fix this issue.
    Regards, Kunal

    edit the jtffmctl.cmd and make sure that it point to the correct java path, alse try to use java 1.4.1

  • I have installed Premiere Elements 11 from a disc I bought from Amazon.  I keeps asking me to re-install or if it does start stops a few minutes after I start a project.  I have a windows 8.1 PC.  I have tried numerous times to install the program and als

    I have installed Premiere Elements 11 from a disc I bought from Amazon.  I keeps asking me to re-install or if it does start stops a few minutes after I start a project.  I have a windows 8.1 PC.  I have tried numerous times to install the program and also to open it as Administrator as suggested by a friend but it still refuses to work.  I need direct help from Adobe but don't know how to get to them on this website as they seem to rely on user forums to advise customers.

    WhiteHouse Norm
    This question is already being responded to in the following duplicate thread
    Premier elements 11 keeps stopping
    Please reply in the other thread which has a discussion in progress.
    Thank you.
    ATR

Maybe you are looking for

  • Is it possible to use the OWB in a cloud environment?

    We are examining the possibility to move a DW into a cloud environment. We are using OWB for our ETL process. Is there anyone who has experience of running a data warehouse in a cloud environment?

  • How to tell if RH working or hung up

    Quick facts: have RoboHelp 7, single CPU with ½-GB RAM, created Primo PDF from Word, no problemo, then graphic artist created .pdf with Mac InDesign and EPS graphics, tired to import into new RoboHelp project, tried converting graphics into JPG, GIF

  • Dealing with floating point numbers...

    Please I would be very happy if someone could help me on getting something right. When ever I divide 2 numbers and the denominator is greater than the numerator, it results in the number zero(0); I want to be able to plot a financial histogram on a c

  • Iphone 5 low battery settings with wifi

    Are there any special Iphone 5 low battery settings with wifi? Today I  was using my iphone and the wifi magically turned off by itself. I  figured it was just having trouble finding the wifi so I went to my  settings to see what was going on. Someho

  • Javabean class not found by jsp page

    I have created one bean which has setFunctionId(String) and getFunctionId() methods. I put the class files at /weblogic/myserver/serverclasses directory. While I am accessing the .jsp page it is telling "Thu Aug 03 15:46:16 EDT 2000:<E> <ServletConte