Where is equivalent of rc.log

I want to change ownership of /dev/raw/raw1, raw2 and raw3 files to oracle:dba instead of root. I am using OEL 5.x. I created a script S99oracle in /etc/rc.d/rc3.d and /etc/rc.d/rc2.d which has commands to change ownership. However, somehow permissions are not being changed.
I want to debug the problem by looking at rc.log, but I cannot find it. The echo messages placed in S99oracle, which log files are they written?

user632098 wrote:
I want to change ownership of /dev/raw/raw1, raw2 and raw3 files to oracle:dba instead of root. I am using OEL 5.x. I created a script S99oracle in /etc/rc.d/rc3.d and /etc/rc.d/rc2.d which has commands to change ownership. However, somehow permissions are not being changed.
I want to debug the problem by looking at rc.log, but I cannot find it. The echo messages placed in S99oracle, which log files are they written?Several things wrong here. Raw devices are a deprecated feature - both by the Linux kernel and by Oracle. It is not recommended to be used. Direct I/O is supported on block devices with the newer kernel versions. There's no need to define raw character devices instead.
Secondly, changing permissions should not be done as a separate processing step. What happens if the device manager "flushes/recycles" its list of devices? Permissions that have been set somewhere else in some script, will not be executed again.
On a server that is connected to a storage system, it can take several minutes after the booting has completed for the kernel to have completed device discovery and created the required device entries - by which time the permission script has long since been executed and has failed to set any permissions as the devices were not yet there.
As for echo'ing in init.d scripts, use the command +/bin/logger+.

Similar Messages

  • From where we can get error log of delivering state

    Hi Experts,
      I have processed large file and itseems the message got picked up successfully from sender side and got stucked in deleivering state. Can anyone suggest from where can we get error log that why the message is in delivering state.
    I have checked in channel and MM log but nat able to find.
    Thanks,
    Swetha

    Hi,
    You can check in engine status - backlog data in adapter engine in component monitoring.
    Please check below link:
    [http://help.sap.com/saphelp_nwpi71/helpdata/en/12/5dd23aaad7b3408dde3c1577fda5b3/content.htm]
    Regards,
    Beena.

  • Where we can check the logs if system or application fails.

    Dear Support,
    If we are facing any system oriented issue or application oriented issue,where we can check the logs in the computer.
    This logs will help us for me to identify the error code and also to fix the resolution of the error for the same.
    Regards
    Pradeep.R

    Hello Pradeep.R,
    I can’t find a log to trace both application as system logs at the same time.
    We could try the following workaround.
    Open two Event Viewers and separately check the application and system logs based on time.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Where to find the detailed log for  Repository/Directory

    Hi all,
    I have configured some configuration objects both in Integration Repository and Directory. But facing some problems like
    activating the changes, partially missing configuration etc. For such problems, where we can find the logs to analyze the issue in repository & directory.
    Please help me in finding the location for the logs of IR & ID,
    Regards,
    Soorya

    activating the changes
    The Change list automatically gets populated with the objects which need activation....does it not help?
    partially missing configuration
    If you miss mandatory configuration (like target URL in SOAP channel) then an error message will be shown there itself...while activating....logs about the same may not be avilable....we have ot checki it manually.
    Regards,
    Abhishek.

  • Where to find an Error logs?

    Sometimes, when bpel crash i cant get it Audit Trails:
    "Audit trail is not available for this instance. This might be because either "Audit Level" configuration for BPEL is set to Off at the engine level or at the SOA Infrastructure level or due to errors while retreving audit information, please review logs for detailed information."
    But my Audit Level is set to "Development".
    Why it happens so? And where do weblogic store its logs about composites fails?

    OK i found them.
    I add a dehydration too, and now i can see a real reson of fault: <faultstring>Waiting for response has timed out.
    Now its only to find where to configure a "response timeout"

  • Where can I find the LOG file for bash/command history typed into Terminal?

    Where can I find the LOG file for bash/command history typed into Terminal?
    For 2 weeks ago I was searching for a log file on my server. Somehow I opend a file where I could see a list of all bash-commands I had ever entered into OSX Terminal.
    Now I need this file.. but cant find it.
    What is the official location for this LOG file?
    Thank you so much for helping.

    cat .bash_history

  • Where to find BPS error log

    Hi Experts,
    I try to open a BPS planning level and I receive the following error.
    UPC_FW030 with the hint to analyse the error log.
    There must be something wrong with the selection but the system automatically removes parts of the section.
    Can anyone tell me where to find this error log
    Regards Michael

    Hello Stephen,
    the log or protocol you mentioned doesn't contain any information, but I figured out what coursed the problem. It was a hierarchy in the selection of the planning level. The selection with the hierarchy was installed in 2009 and by debugging the function module UPC_OPTIOS_GET the select statement inside returned 31.12.2009 for DATETO from the table UPC_NODES and this doesnu2019t fit to 2010.
    The reason is, that hierarchy selection will be stored with a timestamp.
    Regards Michael

  • Where to find self service log

    Hi,
    I have setup self service portal under Enterprise Infrastructure Cloud on EM12c. When a SSA user requests a server using a template, the request fails with "Execution Error" and no other detail on Self Service Portal Screen. Do any one one know how to troubleshoot this and where to find the detailed log file?
    Thank you.

    By template, I presume you mean VM template.
    Have you set up the Oracle VM Self-Service Pools and Zones as outlined in:
    http://docs.oracle.com/cd/E24628_01/doc.121/e28814/cloud_setup.htm#CEGFJIHI

  • Where to find Trigger failed logs.

    Hello friends and Gurus,
    Where can we find the logs, if one trigger failed due to any reasons ?
    I can give one test example,
    First I created one table in Scott schema.
    CREATE TABLE TEMP (SRNO NUMBER PRIMARY KEY,
    DESCRIPTION VARCHAR2(50));
    Second I created a "Logoff on schema" trigger in Scott.
    CREATE OR REPLACE TRIGGER SAMPLE1 BEFORE
    LOGOFF ON SCHEMA
    BEGIN
    INSERT INTO TEMP VALUES (1, 'Message..............');
    END;
    When first time I exit from SQL plus, the trigger inserted the values to Temp table.
    Second time I changes the connection.
    Conn / as sysdba
    It gave the following error.
    ERROR:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00001: unique constraint (SCOTT.SYS_C003212) violated
    ORA-06512: at line 2
    ERROR:
    ORA-24313: user already authenticated
    Warning: You are no longer connected to ORACLE.
    This is fine. It won't allow me to connect to another user.
    But when I exit from SQL plus it allowed me to exit with out giving me any messages or warnings, the trigger has been failed because unique constraint violated.
    I am anticipating the response.

    OK i found them.
    I add a dehydration too, and now i can see a real reson of fault: <faultstring>Waiting for response has timed out.
    Now its only to find where to configure a "response timeout"

  • Project Online - Timesheet Auditing - where do we read the log?

    Where are the Timesheet Auditing logs maintained?
    I can retrieve a bunch of Timesheet data with this query -
    https://MyProjectOnlineTenant.sharepoint.com/sites/pwa/_api/projectdata/TimesheetLineActualDataSet() – but not sure if these are the audit logs or not.

    Spot on Paul - looks like either the option shouldn't be there for Project Online or we should have an OData feed - I'll try and find out which is the case - but suspect the former.
    Best regards,
    Brian
    Blog |
    Facebook | Twitter | Posting is provided "AS IS" with no warranties, and confers no rights.
    Project Server TechCenter |
    Project Developer Center |
    Project Server Help | Project Product Page

  • Where can I find a log of action center/security?

    I have a message in Action Center under security that says it has found a malware on my computer. 
    Where can I find a log of which file and location it was? 
    It only states the malware-name. No location or filename.
    Also note that this is not my antivirus (system center endpoint protection) who located the malware. And it was not the mrt.exe either. I checked that log and it is clean.

    I don't have Win 7 right now, but in Win 8 you can check archived messages option on lect side when you browse to : 
    Control Panel\All Control Panel Items\Action Center
    Can you check this ?
    I don't think we have separate logging for action center. 
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • WD app Deployment Error - Where can we find J2ee log file for linux install

    Hi,
       I have a problem with deploying a web dynpro application. There are no errors before deployment but when I deploy the application, I get a deployment error with the following description.
    I tried to view the trace or log file but we have SAP installed on a linux OS and I do not know where can we see the log or trace file. Please help.
    Version:
    SAP NW 2004s SP15
    NWDS 7.0
    xRPM 4.5
    Error Description:
    May 14, 2008 12:49:50 AM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager)
    [Thread[Deploy Thread,5,main]] ERROR:
    [008]Deployment aborted
    Settings
    SDM host : BS307
    SDM port : 50718
    URL to deploy : file:/C:/DOCUME1/SMULLA1/LOCALS~1/Temp/2/temp20045SempraDemo4.5.ear
    Result
    => deployment aborted : file:/C:/DOCUME1/SMULLA1/LOCALS~1/Temp/2/temp20045SempraDemo4.5.ear
    Aborted: development component 'SempraDemo4.5'/'local'/'LOKAL'/'0.2008.05.14.00.49.36'/'0':Caught exception during application deployment from SAP J2EE Engine's deploy service:java.rmi.RemoteException: Cannot deploy application local/SempraDemo4.5.. Reason: Clusterwide exception: Failed to deploy application local/SempraDemo4.5. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:      com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application local/SempraDemo4.5. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine? (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted
    Edited by: Subramanya Srinivas Mullapudi on May 14, 2008 8:34 AM

    Hi Reza,
    Hope you are doing good.
    You can set the trace level in the SAP/Java Gui dynamically :
    Call transaction SMICM
    Choose the menu Goto → Trace Level → Set
    In the pop-up window, set the desired level (0,1,2,3)
    To switch on an /nSMICM or ICM HTTP trace via command line you should go to
    usr\sap\<SID>\<instance_number>\exe directory and run the icmon program with the following command:
    icmon◦◦pf=\usr\sap\<SID>\SYS\profile\<SID>_<instance_name>_<HOST>
    where you fill in the SID, instance name and host corresponding to your system.
    The icmon program is interactive and to increase trace level you must write
    "+" and pres enter.To quit you must write  "q" and press enter.
    The trace will be written◦to the following file: usr\sap\<SID>\<instance_number>\work\dev_icm
    Thank you!
      Kind Regards,
      Hemanth
      SAP AGS

  • Where is the mail app log?

    I am getting a message that a message is unable to be sent.
    Port is correct.
    Auth is none.
    I'd like to see what response is being given by the SMP server, but running up console, I can't seem to find where the mail app is logging the problem it is having.

    As far as I know mail doesn't log those. It is generally a matter of either connectivity (eg I get it when trying to send a message via a server, but the part of the LAN I am currently using is blocked from accessing that server) or of a valid email address, where the server is able to verify the address because it is local to the server. It may also occur where the both the sender and recipient are outside the domain of the server, but that doesn't sound like your problem.
    If you really want to see what is happening, you will need to run a network sniffer (eg ethereal or MacSniffer).
    AK

  • Where I can find the logs in Exchange that I can check or see if our mail server accepted the emails from a certain domain.

    Good day, I would like to know where I can find the logs in Exchange that I can check or see if our mail server accepted the emails from a certain domain. The problem is we can receive emails
    from other domains like yahoo,gmail etc but from a specific domain we cannot receive emails from them. I checked the whitelist of our Exchange and that domain is currently listed. 

    As suggested above, Message tracking is your option to get these reports into your environment.
    To gather more information about, you may walk through this informative technet resource :
    https://technet.microsoft.com/en-us/library/bb124926%28v=exchg.150%29.aspx
    Here is another :
    https://technet.microsoft.com/en-us/library/bb124375%28v=exchg.150%29.aspx
    Moreover, if you wish to find this report into real time, you may consider on this automated solution (http://www.exchangereports.net/) that could be a good alternative approach for you.

  • HT201269 Where do I go to log in?

    Help I am a grandma and cannot figure out how to backup my old phone in itunes so I can transfer my stuff to my new phone.  Where do I go to log in to get started?

    You log in at the top right of this page to download programs...
    http://www.adobe.com/downloads.html
    Download the Creative Cloud application first, you can then manage your account through that on your desktop and download the applications you have access to.
    Once downloaded, you run them like any other program, from either your Programs folder on a PC, or Applications folder on the Mac.

Maybe you are looking for

  • Parameters that do not show up on default parameter form

    Reports upgraded to 6/6i from SQL*ReportWriter/Oracle Reports 2.5 contain parameters that both do and do not show up on the default parameter form. Is there any property that can be set in the Object Navigator to disable or enable a parameter on the

  • How to calculate the number of times an user has accesed a BEx report

    Hi Experts, We have number of reports in our BW portal and users logon to the portal and run the reports. How do we count the number of times each user has logged in and ran each report. Kindly advice. Thanks, Sai

  • Facebook and Twitter integration not working

    I'm have trouble using Facebook and Twitter integration in Mountain Lion. When I click 'Click to Tweet', or 'Click to Post', nothing happens; I don't get the notecard looking thig, and it's like I never clicked the button. Same thing with sharing fro

  • Oracle DataGuard  while switch logfile ora-01031 insuffcient previlage

    I have configured a simple data guard system. The physical standby database open in read only mode. when I issue the following command in the primary database it shows the following error SQL> alter system switch logfile; System altered. SQL> select

  • I can't open the creative cloud.

    So, the adobe updater said their was an update available, and i tried to install it and the creative cloud opens, but it just stays on the loading screen and nothing happens. Then i try to open the creative cloud program it opens then shuts off. I ca