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

Similar Messages

  • 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

  • Activuty guide for Manual start process

    Hi All,
    Hope you all doing goos.
    I am facing an issue while implementing activity guide.
    I tried the following ways of implementing.
    1) I implemented activuty guide to Asynchronous process, it works.
    2) I tried activity guide implementation to Manual BPM process, for which I am not able to implement the activity guide.
    Can you please let me know where am I going wrong?
    I implemented the activity guide and when I look the tasksin activity guide tab in workspace, there were no tasks even though tasks I can view in the home page of workspace.
    I dont know whether it works for Manual process or not.
    I am working on 11.1.1.6
    Your suggestion, corrections, advice are very much appreciated.
    Thanks
    Chandru

    Hi Daniel,
    Thanks for replying.
    even I was in this assumption and tried a lot.
    and the sample processes that I had were running properly.
    I changed the process to incorporate the manual start as well, even that worked!!!!
    So the problem was with the user.
    I was trying to assign "weblogic" user which is an administrator, but the activity guide will not be active on admin user I believe.
    When I tried the same process with jcooper, that worked.
    So my conclusion is: we should not use admin user for activity guide.
    Thanks
    Chandru

  • 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.

  • Workflow will not manually start - getting Server Error in '/' Application - Runtime Error

    I've tested so far in three site collections and I am not able to manually start a workflow. I am getting the below error
    Runtime Error
    Description: An application error occurred on the server. The current custom error
    settings for this application prevent the details of the application error from
    being viewed remotely (for security reasons). It could, however, be viewed by
    browsers running on the local server machine.
    Details: To enable
    the details of this specific error message to be viewable on remote machines,
    please create a <customErrors> tag within a "web.config" configuration
    file located in the root directory of the current web application. This
    <customErrors> tag should then have its "mode" attribute set to "Off".
    So, I jumped on the server and checked the logs and this is what I am getting below:
    Application error when access /_layouts/15/Workflow.aspx, Error=Method 'StartWorkflowOnListItem' in type 'Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider' from assembly 'Microsoft.SharePoint.WorkflowServices, Version=15.0.0.0, Culture=neutral,
    PublicKeyToken=71e9bce111e9429c' does not have an implementation.   at Microsoft.SharePoint.WorkflowServices.FabricSolutionProviderFactory.<.cctor>b__3(WorkflowServicesContext context)     at Microsoft.SharePoint.WorkflowServices.FabricSolutionProviderFactory.GetProvider[T](WorkflowServicesContext
    context)     at Microsoft.SharePoint.WorkflowServices.WorkflowServicesManager.GetProvider[T]()     at Microsoft.SharePoint.WorkflowServices.WorkflowServicesManager.GetWorkflowInstanceService()    
    at Microsoft.SharePoint.WorkflowService... 
    I would love some help if anybody has any suggestions.

    Hi,
    THis is a upgrade issue. Please check below
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/b189e4b8-bb9e-4ade-a3d5-cd2e0f90e93f/workflow-not-working-after-installing-service-pack-1-and-patches?forum=sharepointadmin
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • AS Java server0 Initial status - hangs if manually started

    Hi Experts,
    Would like to seek your help on my issue.
    I have a PI 7.10 server running on Windows & MS SQL db (with sapjvm version: 5.1.056,   sapjvm build: 51_REL-20100523)
    I recently performed a restore (DB & SAP) 
    Restore was successul, but when trying to start the instance the disp+work hangs at yellow status with "AS Java: Starting the Processes"
    I checked the AS Java Process Table and I see that the bootstrap is successful (green) but after that I immediately see the status of components as:
    debugproxy --> Status=Disabled
    icm --> Status=Initial
    server0 --> Status=Initial
    I then try to manually start the server0 but it hangs on yellow status with Status=Starting Framework
    I checked the std_server0.out and below is the entries:

    Then I checked the dev_w* and this is what I see:
    A Wed Feb 29 16:19:20 2012
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A  ** RABAX: level LEV_RX_SAVE_SHMLOCKS entered.
    A  ** RABAX: level LEV_RX_SAVE_SHMLOCKS completed.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A  ** RABAX: level LEV_RX_ROLLBACK entered.
    A  ** RABAX: level LEV_RX_ROLLBACK completed.
    A  ** RABAX: level LEV_RX_DB_ALIVE entered.
    A  ** RABAX: level LEV_RX_DB_ALIVE completed.
    A  ** RABAX: level LEV_RX_HOOKS entered.
    A  ** RABAX: level LEV_RX_HOOKS completed.
    A  ** RABAX: level LEV_RX_STANDARD entered.
    A  ** RABAX: level LEV_RX_STANDARD completed.
    A  ** RABAX: level LEV_RX_STOR_VALUES entered.
    A  ** RABAX: level LEV_RX_STOR_VALUES completed.
    A  ** RABAX: level LEV_RX_C_STACK entered.
    A  ** RABAX: level LEV_RX_C_STACK completed.
    A  ** RABAX: level LEV_RX_MEMO_CHECK entered.
    A  ** RABAX: level LEV_RX_MEMO_CHECK completed.
    A  ** RABAX: level LEV_RX_AFTER_MEMO_CHECK entered.
    A  ** RABAX: level LEV_RX_AFTER_MEMO_CHECK completed.
    A  ** RABAX: level LEV_RX_INTERFACES entered.
    A  ** RABAX: level LEV_RX_INTERFACES completed.
    A  ** RABAX: level LEV_RX_GET_MESS entered.
    A  ** RABAX: level LEV_RX_GET_MESS completed.
    A  ** RABAX: level LEV_RX_INIT_SNAP entered.
    A  ** RABAX: level LEV_RX_INIT_SNAP completed.
    A  ** RABAX: level LEV_RX_WRITE_SYSLOG entered.
    A  ** RABAX: level LEV_RX_WRITE_SYSLOG completed.
    A  ** RABAX: level LEV_RX_WRITE_SNAP_BEG entered.
    A  ** RABAX: level LEV_RX_WRITE_SNAP_BEG completed.
    A  ** RABAX: level LEV_RX_WRITE_SNAP entered.
    A  ** RABAX: level LEV_SN_END completed.
    A  ** RABAX: level LEV_RX_WRITE_SNAP_END entered.
    A  ** RABAX: level LEV_RX_WRITE_SNAP_END completed.
    A  ** RABAX: level LEV_RX_SET_ALERT entered.
    A  ** RABAX: level LEV_RX_SET_ALERT completed.
    A  ** RABAX: level LEV_RX_COMMIT entered.
    A  ** RABAX: level LEV_RX_COMMIT completed.
    A  ** RABAX: level LEV_RX_SNAP_SYSLOG entered.
    A  ** RABAX: level LEV_RX_SNAP_SYSLOG completed.
    A  ** RABAX: level LEV_RX_RESET_PROGS entered.
    A  ** RABAX: level LEV_RX_RESET_PROGS completed.
    A  ** RABAX: level LEV_RX_STDERR entered.
    A  Wed Feb 29 16:19:20 2012

    A  ABAP Program com.sap.vmc.bootstrap.Bootstrap         .
    A  Source                                          Line 0.
    A  Error Code VM_STACK_TRACE.
    A  Module  $Id: //bas/710_REL/src/krn/th/thxxvmc.c#29 $ SAP.
    A  Function ThVmcWriteStackTraceShortDump Line 8144.
    A  ** RABAX: level LEV_RX_STDERR completed.
    A  ** RABAX: level LEV_RX_RFC_ERROR entered.
    A  ** RABAX: level LEV_RX_RFC_ERROR completed.
    A  ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A  ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A  ** RABAX: level LEV_RX_IMC_ERROR entered.
    A  ** RABAX: level LEV_RX_IMC_ERROR completed.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A  ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A  ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A  ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A  ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A  ** RABAX: level LEV_RX_END entered.
    A  ** RABAX: level LEV_RX_END completed.
    A  ** RABAX: end RX_RETURN
    A  A Java VM stack trace was created..
    above is seen also as Dumps in ST22
    Line: -
    M  ThVmcEndStackTrace: end stack trace of V1
    M  *** ERROR => ThJGetVmResp2: received resp VMC_J_VM_ABORT [thxxjava.c   5516]
    M  ThVmcCreateStackTrace: create stack trace >Java VM abort<, inProcess=0, fromSched=1
    M  *** ERROR => ThJDeleteVm: Tried 5 times to create vms but failed. Deactivate VMC [thxxjava.c   4895]
    M  ThVmcDeactivate: deactivate VMC
    M  DpVmcSetActive: set vmc state DP_VMC_ENABLED
    M  ThPlgSendErrTxt2: invalid tid/mode/plugin_info_hdl (22/0/0)
    M  in_ThErrHandle: 1
    M  *** ERROR => ThJHandleVmError: java vm returned after error (step 4, th_errno 5, action 1, level 1) [thxxhead.c   11080]
    M  DpVmcGetVmByTmAdm: no VM found for T22/M0/I0 (locked VMs ignored)
    M  ThResetEmMagic: reset em magic for T22/M0/I0
    Line: -
    Aside from this I checked on DB level and I see from the log:
    Error: 18456, Severity:14, state:16
    Login failed for user 'NT AUTHORITY\SYSTEM'.[CLIENT:<local machine>]
    I hope I've provided enough information above for anyone who can help me resolve this error.
    Thanks in advanced

  • Manually starting Intelligent Agent Configuration Assistant and HTTP Listener

    I have installed Oracle 9i on Solaris 8 and it stopped with an "Out of Memory" error during the Starter Database creation. I have fixed the memory problem and have now manually started the Database Configuration Assistant manually and managed to install a new database. Now I am trying to start the Intelligent Agent Configuration Assistant and the Apache HTTP Listener, but I cannot find out how to do this so that I can continue on with and complete the installation process from where I left off.
    Do anyone know how to do this? I would appreciate any help that anyone can give.
    Thanks
    Anthony

    Lets start with what product you are installing and why. An Oracle database installation, in and of itself, does not install an HTTP server.
    Of course one might also wonder why you are, just now, installing software so old it is in desupport.

  • Manually start Oracle system processes?

    I don't use Oracle all the time, so I usually end the processes
    it runs in the background of my Windows XP session (Apache.exe,
    Java.exe, etc etc).. Does anyone know if there's a way to re-
    start these processes w/o rebooting my computer? I'd like to
    be able to manually start/stop all these processes for when I'm
    actively using/not using Oracle. Any ideas?

    I don't use Oracle all the time, so I usually end the processes
    it runs in the background of my Windows XP session (Apache.exe,
    Java.exe, etc etc).. Does anyone know if there's a way to re-
    start these processes w/o rebooting my computer? I'd like to
    be able to manually start/stop all these processes for when I'm
    actively using/not using Oracle. Any ideas? First off, you don't want to stop the processes that way at
    all. Right click on "My Computer" and select Manage. From
    there you want to expand the "Services and Applications" node,
    and then select "Services". In that list you should see the
    different Oracle services for whatever product you're running.
    They will all start with the name Oracle. If you tell me what
    product you're actually running, I can give you more info to
    keep them from starting upon boot, so that you truly on start
    them when you need to.
    Note: This forum is for the E-Business Suite, not general DB,
    assuming that the DB software is what you're running.

  • HT5634 The "automatic Install" in the windows support software does not work. I cannot see the USB in Windows to manually start set uo

    The "automatic Install" in the windows support software does not work. I cannot see the USB in Windows to manually start set up.
    I have downloaded windows support software from Apple 3 time with the same result.  Where can I get a clean copy of the Windows support software?

    Did you correctly format your usb stick in accordance with the Boot Camp installation instructions? Go here to the Boot Camp System Requirements page, http://support.apple.com/kb/HT5634, look for your computer model/year and download the correct version of Windows Support software.

  • Manually Start Workflows - Permissions

    I am seeing an issue where users cannot select the 'Workflow' button on an item because they do not have permission to manually start the workflow - they receive the 'This site has not been shared with you', Although they do have permission to run the workflow
    automatically.  I believe this is related to the workflow.aspx page.  If the user does not have permission to contribute to the site, they cannot manually execute a workflow on a list they have explicit contribute rights to.  Is there any farm
    wide fix for this?  I found this article:http://sharepoint.stackexchange.com/questions/115311/manually-start-sharepoint-2010-workflow-in-sharepoint-2013-farm
    But this would be a nightmare to maintain for each site.  Are there any other workarounds available?  Has there been a CU released to fix this?
    Thanks,
    Jesse
    Jesse A. Brandenburg

    Hi Jesse,
    By default, you must have the Edit Items permission to start a workflow. I understand you would like users with contribution permission be able to manually start a workflow.
    As workaround, we can use another ribbon or field to replace the OOTB button to manually start workflow. For example, you could create a checkbox (Yes/No) field in the list, and set it to be No as default. In the workflow, make it to automatically start
    when this checkbox value is Yes. Then users can manually start workflow via manually change this field's value.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Manual start the ips server once machine is boot up

    Hi,
    I would like to know, which configuration file should i change in order to disable ips server to automatically start up everytime the machine (server) is started. By default the ips will be automatically started everytime the machine is started. I would like to manual start the ips server everytime the machine is started. Any idea on this? Thanks a lot.

    If your iPS is installed on a Solaris machine, then you would probably be using run level 3 by default.
    You can go to /etc/rc3.d and rename S*ipsgateway and S*ipsserver.
    I haven't tried this, but it should work.

  • Manual Data binding with ADF table?

    Hi,
    I am making a stored procedure call for fetching data from database on the click of action button. My query has a where clause in it. I am not able to bind my adf table manually with my data control. Can anyone provide me some link for binding my ADF table with data control manually? My requirement is like : - I have one table in which I am displaying data in ADF table. I want to display data in another table on click of some id in the coulmn of first table.

    You basically have two options - you can choose to use ADF Binding - and have your Java class return a collection - then you just right click the class to expose it as an ADF Data control.
    Or if you rather not use ADF Binding, then you'll need to have a managed bean that returns a collection and you can use "regular" JSF binding to bind the table to it.
    The second option is shown in the ADF Faces Components demo: http://www.oracle.com/technology/products/adf/adffaces/11/doc/demo/adf_faces_rc_demo.html

  • 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

  • Process dumps core, when started by SMF - fine when manually started

    Hi.
    h2. Explanation
    I compiled [Nagios 3.2.0|http://www.nagios.org/] manually, and created a SMF manifest and method file, based on the [OpenCSW supplied files for Nagios|http://www.opencsw.org/packages/nagios]. The method file is based on [what the Nagios guys supply|http://pastebin.ca/1577792] , but [changed a little|http://pastebin.ca/diff.php?id1=1577792&id2=1577793] .
    When I enable the "application/nagios" service, it right away goes into maintenance state. In the /var/svc/log/application-nagios:default.log log file, there's consequently then this:
    + exit 0
    [ Sep 24 13:17:10 Method "start" exited with status 0 ]
    [ Sep 24 13:17:11 Stopping because process dumped core. ]
    [ Sep 24 13:17:11 Executing stop method ("/opt/local/nagios-3.2.0/method/nagios stop") ]
    + test -r /lib/svc/share/smf_include.sh
    [...]It died, because of "*Stopping because process dumped core.*"
    If you have a look at the method file, you'll find that I dump the environment with env to a file. When I login as root and set the environment variables to exactly those values and remove any other additional variables, I can run the method / init script just fine; the nagios process doesn't core dump.
    h2. Question
    Why does the process dump core, when it's run by SMF?
    Additional questoin:Where's the core dump? I did a "find / -name core" and found nothing. I also changed coreadm:
    --($ ~)-- LC_ALL=C coreadm
         global core file pattern: /var/core/core.%f.%pAfter a reboot, there's nothing in /var/core (the directory exists).
    I'm on Solaris 10 5/09 Sparc.
    h2. Files
    *[svccfg export nagios|http://pastebin.ca/1577787]*
    *[Method file /opt/local/nagios-3.2.0/method/nagios|http://pastebin.ca/1577793]*

    There's no such directory as "/var/crash":
    --($ ~)-- ls -lad /var/c*
    drwxr-xr-x    4 root     sys             4 Sep 21 14:03 /var/cache
    drwxr-xr-x    2 root     sys             7 Sep 21 13:32 /var/cc-ccr
    drwxr-xr-x    2 root     root            2 Sep 24 13:14 /var/core
    drwxr-xr-x    2 root     sys             3 Sep 21 14:03 /var/cronGranted, since when I posted that question and now, I booted the NGZ numerous times. But in a default installation of Solaris 10, that directory isn't removed during shutdown/boot, if it exist. At least it exists on my other servers, even if it is empty (eg. like that, on a different server:
    --($ ~)-- ls -laR /var/crash/
    /var/crash/:
    total 3
    drwxr-xr-x    3 root     root          512 Mai 19  2006 .
    drwxr-xr-x   56 root     sys          1024 Dez  7  2008 ..
    drwxrwx---    2 root     adm           512 Sep 22  2008 winds06
    /var/crash/winds06:
    total 2
    drwxrwx---    2 root     adm           512 Sep 22  2008 .
    drwxr-xr-x    3 root     root          512 Mai 19  2006 ..So, I'd say that the coredump has never been stored in /var/crash.
    Anyway - isn't /var/crash just used for crashdumps, when the whole machine goes down? According to [man filesystem(5)|http://docs.sun.com/app/docs/doc/816-5175/filesystem-5?a=view] , it is &#8594; "+Default depository for kernel crash dumps.+"
    If coredumps aren't in /var/crash, aren't named "core*" and aren't stored in the directory specified by coreadm, where are they?
    Converse: If no coredump is created, why does Solaris "speak" about a coredump being created?

  • Autostart of network-service fails, but manual start works fine

    I followed a guide to set up a network connection. The steps were to create a network config (/etc/config.d/network)
    interface=eth0
    address=192.168.1.2
    netmask=24
    broadcast=192.168.1.255
    gateway=192.168.1.1
    then a service description (/etc/systemd/system/network.service)
    [Unit]
    Description=Network startup
    Wants=network.target
    Before=network.target
    [Service]
    Type=oneshot
    RemainAfterExit=yes
    EnvironmentFile=/etc/conf.d/network
    ExecStart=/sbin/ip link set dev ${interface} up
    ExecStart=/sbin/ip addr add ${address}/${netmask} broadcast ${broadcast} dev ${interface}
    ExecStart=/sbin/ip route add default via ${gateway}
    ExecStop=/sbin/ip addr flush dev ${interface}
    ExecStop=/sbin/ip link set dev ${interface} down
    [Install]
    WantedBy=multi-user.target
    and then enable the service using systemctl enable network.
    After the rebooting calling systemctl states the service as failed. If I start it manually using systemctl start network everything works fine.
    How do I get it to work with autostart? Thanks in advance.
    Last edited by devrandom (2013-08-03 12:22:55)

    With 'a guide' I presume you referred to this guide
    The guide states
    To set static IP on enp3s0 interface you will need to create /etc/conf.d/network@enp3s0 config file and run:
    # systemctl enable [email protected]
    where enp3s0 has to be changed into your own interface name.
    Note that the EnvironmentFile has to change to /etc/conf.d/network@<interface>.

Maybe you are looking for

  • OBIEE 11G: Can I set limit on number of ticks only on horizontal axis and zoom in if I want to?

    Hello Is there a way I can restrict the total number of ticks on horizontal axis only? Say I want to set it to show only 24 ticks on horizontal axis. I am putting date and hour on the horizontal axis, if I take 3 dates of data, I will have 3X24 = 72

  • Safari 2.0.4?

    I am running Safari 2.0.3 on OS X 10.4.4 and for the past few days many pages, including Ebay, will not load, but tell me to update my browser. Is there a newer version of Safari thta my software udate is not catching? R

  • Client in a different machine..

    Hi, I ve a problem with JMS. I am developing a JMS Application with WebSphere and MQ Series. The application runs fine if i have the both the publisher and subscriber in the same machine. Now i want to move the client to a different machine say X. To

  • Something Unusual with synonyms ... Help needed

    Hi all, Im getting this "ORA-00942: Table or view does not exist" even though i have this table in my database. The following is the situation where im getting this. I have a table by name EMP_NO in schema HR. I created a private SYNONYM by name EMP_

  • "Open with" finder menu -- how to customize

    When I choose "Open with" from the Finder's "File" menu (or from the contextual menu). I get the spinning beachball for 10-20 seconds while the finder searches EVERY hard disk for every possible program a file can be opened with. Isn't there some way