How to manually start a WP on OS level

Hi,
does anyone knows how to start a work process on OS level?
One of my WP "disappeared" and SM50 shows it as stopped and it cannot be restart from there...
Is there a way to restart it on OS level without restarting the whole SAP system?
thanks
Antonio

Hi Antonio,
Coming back to your original question: There is no such way of starting a work process from the OS directly. As you might have noticed with a ps -ef, the dispatcher and work process share the very same code (you can see that they have the same process name), but the dispatcher is responsible for starting the work process and he has to flag internally that this new fork of this process will be an work process and not another instance of dispatcher.
About the heaplimit, this is not an error, it's just a cleanup task that the dispatcher does to clean heap memory usage. Everytime that your work process uses the value specified on abap/heaplimit, the work process will get restarted after it finishes it's activities.
If you are using an AS400, and your work process indeed restarts more than the as4/wp_max_restart, then the dispatcher indeed will not try to start this work process anymore. As the note states, if you are above the mentioned patch levels in the note, you can introduce this parameter on your profiles even tho it's not known in RZ11.
Cheers,
Maurício

Similar Messages

  • How to manually start telnetd service With Solaris 8

    "ps -ef | grep telnetd", shows telnetd daemon is not running (though telnetd is listed and uncommented in /etc/inetd.conf). Checked /etc/services and /etc/hosts, but found no abnormality. How do I manually start up telentd service? Why telnetd failed to startup automatically upon system startup.

    You're kinda are walking on your own comments ...
    in.telnetd doesn't "run" at system startup. The inetd daemon controls in.telnetd and inetd is controlled by /etc/inetd.conf. Assuming in.telnetd is uncommented in /etc/inetd.conf, just run "netstat -na | grep 23" - you should see port 23 in a LISTEN state. inetd is doing the listening in this case. Once someone actually tries to connect to telnet on that server, THEN you'll see a in.telnetd process physically running on the box because inetd will fork off in.telnetd and hand the incoming telnet session to this new process.
    P.S. don't use telnet unless you have some application that physically must use telnet to do something on a box. Disable telnet completely and use SSH.

  • How to manually start Autoarchive?

    I have set my autoarchive as standard. run it every 14 days. and some subfolders are to be run every 7 days.
    I have problems with my folders are now full and also I have problems that my Outlook is VERY laggy when autoarchive runs.
    i wonder how i can manually trigger this autoarchive so I have more control of when it is runned.

    I Googled "outlook manually run autoarchive" and this was the first hit. Not sure why though because it doesn't tell me what I was looking for.
    If you're running Outlook 2010 like me, this is probably what you're looking for:
    "If you wish to manually run AutoArchive now, go to the File menu and select Info, click on Cleanup Tools, then Mailbox Cleanup and then click on the Auto Archive button." (I
    got it from here)

  • How to Manually Start Oracle Components

    Developer new to RAC/ASM/Clustering
    I have existing install of VMware Worksation 5.5.1 (Host: XP)
    Installed the data center VM
    and manually configured VM Networking per instruction.
    VM loads fine but Oracle/RAC NOT running.
    (Reverting to original snapshot does not help)
    Can someone please list out (manual) steps to starting all the necessary pieces ?
    thanks

    figured out the easiest way to restart 11g grid control OMS is
    $MIDDLEWARE_HOME/oms11g/install/unix/scripts/omsstup start/stop
    This will also take care of the weblogic domains...

  • How to manually start a Time Machine backup?

    Is there any way to invoke a time machine backup?
    It seems that it's set on its schedule and that's that .... you can't tell it to run a backup.....

    Make sure you have the TM icon in your dock (drag it from Applications if necessary)
    To start a back immediately, right-click the icon and select 'Back Up Now'

  • Manually starting BIND

    After installing Security Update 2007 - 005 I lost Internet connectivity on all of my clients and server. I read the update documentation and it alluded to BIND not being started at startup and that it should be manually be started. Does anyone know how to manually start BIND in OS X Server 10.4.9? Any help is appreciated.
    Thanks
    ManFromTrini

    You could stop and start BIND in ServerAdmin.app or use launchctl to stop/start it in a root shell:
    launchctl stop org.isc.named
    launchctl start org.isc.named
    Roger

  • How do I manually start a workflow to...

    I have a list with 2000+ items in it. I create a 2013 workflow in SPD that will look at an item and if it date is less than 1/1/2013 it will create a copy of the item on a list used for archiving, then delete the existing list item. 
    My question is how do i manually start this workflow on the entire list (instead of selecting 1 item at a time)?
    Thanks
    James T.F

    @Romeo
    I've found to potential PowerShell scripts that could launch a list workflow from powershell, but they both throw errors for me. 
    # URL of the Site
    $web = Get-SPWeb -Identity "https://sharepointsrv/site1"
    $manager = $web.Site.WorkFlowManager
    # Name of the list
    $list = $web.Lists["Shared Documents"]
    # Name of the Workflow
    $assoc = $list.WorkflowAssociations.GetAssociationByName("On Item Created","en-US")
    $data = $assoc.AssociationData
    $items = $list.Items
    foreach($item in $items)
    $wf = $manager.StartWorkFlow($item,$assoc,$data,$true)
    $manager.Dispose()
    $web.Dispose()
    this gives me the following error
    Exception calling "StartWorkflow" with "4" argument(s): "Value cannot be null."
    At line:15 char:28
    + foreach($item in $items) { $workflow = $workFlowManager.StartWorkFlow($item,$wor ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : ArgumentNullException
    The other PS Script
    $sourceWebURL = '<URL>'
    $sourceListName = '<List Name>'
    $TargetWorkflow = '<Workflow Name>'
    $spSourceWeb = Get-SPWeb $sourceWebURL
    $spSourceList = $spSourceWeb.Lists[$sourceListName]
    #Getting a Workflow manager object to work with.
    $wfm = New-object Microsoft.SharePoint.WorkflowServices.WorkflowServicesManager($spSourceweb)
    #Getting the subscriptions
    $sub = $wfm.GetWorkflowSubscriptionService()
    #Getting the specific workflow within the list of subscriptions on the specific list. (SP2010 associated workflows basically)
    $WF = $sub.EnumerateSubscriptionsByList($spSourcelist.ID) | Where-Object {$_.Name -eq "$TargetWorkflow"}
    #Getting a Workflow instance in order to perform my commands.
    $wfis=$wfm.GetWorkflowInstanceService()
    Foreach($item in $spSourceList){
    #Creating the dictonary object I need to parse into StartWorkflow. This could be most other workflow commands.
    $object = New-Object 'system.collections.generic.dictionary[string,object]'
    $object.Add("WorkflowStart", "StartWorkflow");
    $wfis.StartWorkflowOnListItem($WF, $item.ID, $object)}
    Which then gives me this error.
    Cannot convert argument "itemId", with value: "GUID", for "StartWorkflowOnListItem" to type "System.Int32": "Cannot convert the "GUID" value of type "System.Guid" to type
    "System.Int32"."
    At line:23 char:5
    + $wfis.StartWorkflowOnListItem($WF, $item.ID, $object)
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [], MethodException
    + FullyQualifiedErrorId : MethodArgumentConversionInvalidCastArgument

  • How do I start/restart SCEP install manually ?

    I have a workstation that failed SCEP install because it could not uninstall the previous AV software. I manually uninstalled the old Av software and now waiting for SCEP to install again. Is there a way for us impatient folks to manually start the reinstall
    for SCEP with a command line or something. "My automation is working in general - I just dont want to wait."

    You can run the SCEPInstall.exe from the ConfigMgr client directory. The silent install can be triggered like this:
    scepinstall.exe /s /q.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • How can I start anew with Photos and clear the (minimal) stuff it has uploaded

    I've about had it up to here with this new Photos scheme. I reorganised my Aperture libraries on both my iMac and MBA in preparation for this, delayed turning Photos on for a couple of days until I thought everything was ready based upon the limited advice that was out there, and then got stuck in an endless loop of "uploading" and "preparing" every time I opened Photos. There are 19,975 images in my Aperture library on the iMac. I was stuck at Uploading at anywhere between that number and 19,000 with no progress after hours of waiting. I tried all the tricks mentioned here including re booting, restarting the app, repairing/rebuilding the database, killing the "cloudd" process, etc.today Today when I restarted Photos, it now said I had 23,775 images to upload- 4000
    more than I have-and of course it got stuck there, like it has for the last week.
    I copied the previous Aperture library (pre Photos migration)back to my iMac and opened it in Aperture. Thankfully, all the photos I had taken on my iPhone this week during this Photos clusterphuck transition were in the Aperture Stream so I didn't lose any of those. I'm willing to give this whole thing one more shot. So  i need some advice. How can I start anew with Photos and clear the (minimal) stuff it has uploaded (about 6000 of 19,000 images in the last 7 days) ? If I simply delete the Photos.photolibrary file will that do the trick and lt me start a new fresh library using?
    <Re-Titled By Host>

    How can I start anew with Photos and clear the (minimal) stuff it has uploaded (about 6000 of 19,000 images in the last 7 days) ? If I simply delete the Photos.photolibrary file will that do the trick and lt me start a new fresh library using?
    It is hard to say from your post, why the migration did not succeed in your case.
    by "stuck on upload" do you mean, you opened the Aperture library in Photos, and Photos converted it to a Photo Library, and then the upload to iCloud Photo Library did hang?  Or did already the upgrade to the Photo Library fail?
    If you want the Aperture library to upload to iCloud Photo Library, it needs to be on a disk formatted MacOS Extended (Journaled) and the original image files must not be referenced. Referenced originals will not upload.
    Also, the upload may hang, if you do not have enough free iCloud storage, orr if one of the videos or photos in your library is in an unsupported format or corrupted.
    To start over, try to repair and rebuild the Aperture library before opening it in Photos. Try all Aperture Library First Aid options - starting with repairing the permissions.  (Repairing and Rebuilding Your Aperture Library: Aperture 3 User Manual)
    If I simply delete the Photos.photolibrary file will that do the trick and lt me start a new fresh library using?
    You will have to delete the photos that are already in icloud too; otherwise you are risking duplicates.
    Can you launch Photos at all?  If yes, delete all photos in Photos and empty the Recently Deleted album. Wait for the deletion to sync to iCloud. Then delete the Photos.photolibrary.

  • How to manually eject a CD on my 24" iMac.

    Dear guys,
    Can anyone help to answer my question on how to manually eject a cd on my 24" imac. I inserted the Window XP Pro SP3 into my imac. Its started to run the os now cannot boot the system. Actually can anyone help to advise how to go about do the boot camp process. Great thanks.
    Please help....

    If the mouse routine does not work. on some Macs, there is a little manual trigger in the extreme top of the disc slot. Carefully trip it with something like a straightened paperclip. It is just a fraction of an inch inside.
    Your post is a bit cryptic. Did you actually follow the BootCamp process or just insert this Windows disc?
    There is an entire Apple Discussion forum dedicated to Boot Camp and Windows.
    Whereas, not everyone here with an Intel iMac has installed, tried to install or has experience with BC & Windows, everyone there has or at least has an interest. You may attract help more quickly there.
    The Forums are at the bottom of the main Apple Discussions page under Windows Compatible Technology. Here is a link;
    Boot Camp: Installation and Storage

  • How To Use Dynamic Menus To Place Manually Created Jspx Pages On Sub-Level

    JHeadstarters,
    Back on the JHS trail and could use some help.
    I started using dynamic menus (see section 9.2 JHS Dev Guide) to setup a custom menu structure and found it could not be easier however I need to solve 2 issues;
    1. How to get more than 2 levels deep on the menus (parent, child, grand-child, etc.)? In the menu structure setup I have created a menu that is 3-levels deep however when it runs you only get 2 levels. Perhaps a template needs to be changed.
    2. How can I assign manually created jspx pages to sub-level menus?
    Scenerio;
    I have JHS generated pages *** AND *** manually created pages. Using dynamic menus to place the JHS genned pages works fine, the problem is how to do it with manually created pages.
    Using Dynamic Menu's I created a top-level menu tab named "warp-core", below it on the next level I have two sub-menus, one named "search" and one named "form" for displaying the results of the search and modifying the rows (don't ask me why they are seperate).
    The problem is how to assign the manually created jspx pages to those sub-menus? Or am I going abouth this the wrong way? Perhaps I could use JHS to generate seperate search and display pages.
    Thanks!
    BG...

    Bill,
    1. Yes, you need to decide yourself how and where you want to render this third level menu. You then create a region file similar to dynamicMenu2Tabs.jspx, just replace the references to level2MenuItems with level3MenuItems. Then create a custom template to call this menu 3 region file.
    For example, you could create a bulleted vertical list for level 3 as illustrated in section 9.1.3 of the Developers Guide (that example is with static menu, but you can use similar technique for dynamic menu)
    2. Instead of a group name, you can specify a JSF Navigation action in the menu administration application. So, you create a global navigation case to your custom page, and you enter this navigation case id in the menu admin app.
    Note that if you want to generate separate search pages, you can do so by setting the advanced search property to "separatePage".
    Steven Davelaar,
    JHeadstart Team.

  • How do i start siri on my iPod touch

    how do i start siri on my iPod touch

    That is covered in chapter 4 of the manual
    http://manuals.info.apple.com/MANUALS/1000/MA1596/en_US/ipod_touch_user_guide.pd f
    You first have to turn it on in Settings>General

  • How to manually create an iPod save with iTunes?

    Hello,
    using iTunes and an iPod Touch, sometimes it happens that I want to have multiple save points available for restore in case something goes wrong with the iPod (e.g., losing notes, or forgetting which podcasts were present on the iPod, etc.)
    I noticed that, somehow, such saves were generated at some point inside ~/Library/Application Support/MobileSync/Backup; all three are named upn the same model, a long, hexadecimal-looking string, then "-date-time". All three are properly recognized in iTunes.
    As I don't remember how these were generated, how can I start a new iPod save whenever it synchronizes? I set podcasts, contacts and calendars to sync automatically, and I manually add or remove films and music.

    You can always right-click (control-click) on your iPod in the devices list of iTunes and select Backup.
    From the manual, page 109: "Backups can be created in the following ways:
    Once iPod touch has been configured to sync with a particular computer, iTunes automatically makes a backup of iPod touch on that computer when you sync. iTunes won’t automatically back up an iPod touch that is not configured to sync with that computer. If you have configured iPod touch to automatically sync with iTunes on a specific computer, iTunes will back up iPod touch every time you
    connect it to that computer. Automatic syncing is turned on by default. iTunes only makes one backup each time you connect, even if you sync multiple times before disconnecting.
    If you choose to update the software on iPod touch, iTunes will back up iPod touch automatically, even if it is not configured to sync with iTunes on that computer.
    If you choose to restore the software on iPod touch, iTunes asks if you want to back up iPod touch before restoring."

  • How can I start oracle databse in linux ?

    I have rebooted the machine and oracle database did not start.
    How can I start manually oracle database ?
    Thanks a lot !!!

    sqlplus
    connect as sysdba
    startup pfile=<Path to your init.ora>

  • Weblogic (10.3.4) & Forms (11.1.1.3) manual start linux

    Hi,
    I am a complete newbie about Oracle Products. This is the first time I install an Oracle product. I never imagined that it will be that complicated.
    Goal: install Forms 11g
    How: I installed Weblogic 10.3.4 and tried to install Forms&Reports. I run a CentOs-64
    Anyway, I tried to install Forms&Reports 11g but opmnctl failed to start during configuration and the installation failed. I unchecked Reports and the installation went well. Any clues ?????
    Now, I have a forms installed without reports. That's ok for me. I modified the tnsnames.ora.
    Do I need to restart my services. If so, how ?
    If my pc reboots how can I start them manually ?
    Thanks in advance

    First and foremost you should take a look if your platform is even certified:
    http://www.oracle.com/technetwork/middleware/downloads/fmw-11gr1certmatrix.xls
    I don't see CentOS there at all. You might get lucky as CentOS should be binary compatible to RedHat. However; you didn't mention a version number so this is difficult to tell. Instead of using your unknown version of CentOS you could use Oracle Enterprise Linux as well:
    https://edelivery.oracle.com/linux
    100% binary compatible to RedHat, freely available and it is also a supported platform with installation guides. Take a look at the documentation:
    http://download.oracle.com/docs/cd/E17904_01/index.htm
    Did you go through the documentation? If you didn't: as you have encountered the installation of OFMW 11g is not as easy as a doubleclick on a installer executable, so it is highly advisable to go through the documentation. If you have metalink (oh pardon: My Oracle Support) access you might look for installation advice there as well (cannot recite the note id's; however I am sure you know how to use a search engine ;) ).
    cheers

Maybe you are looking for

  • How to disable fields in a report at runtime

    Hi All,         i want to know is there any method to disable a particular field on the selection screen of a report program at runtime.... For example ... if i have two select options on the screen and i want to disable the second field if anything

  • How to restore information on iphone

    Okay, so I lost my iPhone but then luckily someone found it and returned it to me. However, I set a passcode on my iPhone before I lost it, so when the person found it, he tried multiple times to get into my phone, and he ended up completely disablin

  • Error in XSLT Code

    Hi All, I am working for a scenario with XSLT Mapping(For converting xml to html). I get data into a field D_TXT with S_TXT as parent node. The data in D_TXT is space delimited. I need to split the data in D_TXT for every space in data and print the

  • GR slip from CO15?

    Hi all, My customer is using CO15 to confirm production orders and they have set up automatic goods receipt on the last operation of all the routings. Now they are interested in getting the same GR slip printed that you can get when performing the GR

  • Authorizations in SEM-BPS (Web Layouts)

    Hi all, I have a question that hopefully somebody can help me in solving it. We have a bps application, with authorizations maintained in the sap normal way: pfcg, rssm, etc. The question is that we started to build some web (alv) layouts, and need t