Permission of libclntsh.so.10.1 has changed after applying 10.1.0.5 patch

Hi all
Does anybody encounter following error after applying 10.1.0.5/Linux patch to client?
$ sqlplus
sqlplus: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
When I looked into library path, I found "others" didn't have a read permission on the library.
lrwxrwxrwx 1 oracle oinstall 17 June 11:42 libclntsh.so -> libclntsh.so.10.1
-rwxr-x--- 1 oracle oinstall 13660752 June 13 11:42 libclntsh.so.10.1
Does anybody change permission by executing "chmod 754" to allow others to read?
I'm looking for somebody tried to solve this problem.
Thanks in advance.

I have a similar problem:
Syntax error on line 202 of /etc/httpd/conf/httpd.conf:
Cannot load /usr/lib/httpd/modules/libphp5.so into server: libclntsh.so.10.1: cannot open shared object file: No such file or directory
Using the following succesfull configuraion
PHP Version => 5.0.4
System => Linux 2.6.9-1.667smp #1 SMP Tue Nov 2 14:59:52 EST 2004 i686
Build Date => Aug 26 2005 11:23:17
Configure Command => './configure' '--enable-force-cgi-redirect' '--enable-ftp' '--with-dbase' '--with-regex=system' '--with-gd' '--with-bz2' '--with-config-file-path=/etc/httpd/conf/httpd.conf' '--with-zlib' '--with-oci8=/home/oracle/product/10.1.0/Db_1' '--enable-sigchild' '--with-dom-xslt=/usr/lib/libxslt.so.1.1.11' '--with-png' '--with-apxs2'
Server API => Command Line Interface
Virtual Directory Support => disabled
Configuration File (php.ini) Path => /etc/httpd/conf/httpd.conf
Everything is visible to all users the LD Library path is set even in the httpd.conf file.
Clear PHP works from within the command line, now I want to get it working via Apache2.
If anybody has a clue I would be most obliged.
Also disabling SELinux did not do the trick.

Similar Messages

  • Menu background color has changed after applying Forms Patch3 (10.1.2.3.0)

    Hi,
    we have applied Patch3 on our Forms Environment.
    Now the menu background color has changed from green to gray (colorScheme is "teal" in formsweb.cfg).
    This behavior isn't documented and our customer want's to get the green menubar back...
    Any hints?
    Greetings, Florian.

    removed because of obsoleteness...
    Edited by: W1zard on Feb 2, 2009 4:57 PM

  • IDOC Sender Partner has changed after transporting Integration Directory ob

    Greetings,
    After we did a transport from QA to PR for a new interface (Intergration Directory) objects were transported,
    The sender partner has changed to QA in all outbound IDOCs generated in XI PR.
    I checked the adapter-specific identifiers and it is showing as production.
    Any hint where I should check?

    Found it in the filesystem communication channel as QA and changed it to PR

  • Data has changed after passing through FIFO?

    Dear experts,
    I am currently working on a digital triangular shaping using the 7966R FPGA + 5734 AI. I am using LabView 2012 SP1.
    Some days ago I have encountered a problem with my FIFOs that I have not been able to solve since. I'd be glad if somebody could point out a solution/ my error.
    Short description:
    I am writing U16 variables between ~32700-32800 to a U16 configured FIFO. The FIFO output does not coincide with the data I have been writing to the FIFO but is rather bit-shifted or something is added. This problem does not occure if I execute the VI on the dev. PC with simulated input.
    What I have done so far:
    I am reading all 4 channels of the 5734 inside a SCTL. The data is stored in 4 feedback nodes I am applying a triangular shaping to channel 0 and 1 by using 4 FIFOs that have been prefilled with a predefined number of zeros to serve as buffers. So it's something like (FB = Feedback node):
    A I/O 1  --> FB --> FIFO 1 --> FB --> FIFO 2 --> FB --> Do something
    A I/O 2  --> FB --> FIFO 3 --> FB --> FIFO 4 --> FB --> Do something
    This code shows NO weird behaviour and works as expected.
    The Problem:
    To reduce the amount of FIFOs needed I then decided to interleave the data and to use only 2 FIFOs instead of 4. You can see the code in the attachment. As you can see I have not really changed anything to the code structure in general.
    The input to the FIFO is a U16. All FIFOs are configured to store U16 data.
    The data that I am writing to the FIFO can be seen in channel 0 of the output attachment.
    The output after passing through the two FIFOs can be seen in channel 2 of the same picture.
    The output after passing through the first FIFO (times 2) can be seen in channel 3 of the picture.
    It looks like the output is bit-shifted and truncated as it enters Buffer 1. Yet the difference between the input and output is not exactly a factor of 2. I also considered the possibility that the FIFO adds both write operations (CH0 + CH1) but that also does not account for the value of the output.
    The FIFOs are all operating normally, i.e. none throws a timeout. I also tried several different orders of reading/writing to the FIFOs and different ways of ensuring this order (i.e. case strucutres, flat and stacked sequence). The FIFOs are also large enough to store the amount of data buffered no matter if I write or read first.
    Thank you very much,
    Bjorn
    Attachments:
    FPGA-code.png ‏61 KB
    FPGA-output.png ‏45 KB

    During the last couple of days I tried the following:
    1. Running the FPGA code on the development PC with simulated I/O. The behavior was normal, i.e. like I've intended the code to perform.
    2. I tested the code on the development PC with the square and sine wave generation VI as 'simulated' I/O. The code performed normal.
    3. I replaced the FIFOs with queues and ran my logic on the dev. PC. The logic performed totally normal.
    4. Right now the code is compiling with constants as inputs like you suggested...
    I am currently trying to get LabView 2013 on the development machine. It seems like my last real hope is that the issue is a bug in the XILINX 13.4 compiler tools and that the 14.4 tools will just make it disappear...
    Nevertheless I am still open for suggestions. Some additional info about my FIFOs of concerne:
    Buffer 1 and 2:
    - Type: Target Scoped
    - Elements Requested: 1023
    - Implementation: Block Memory
    - Control Logic: Target Optimal
    - Data Type: U16
    - Arbitrate for Read: Never Arbitrate
    - No. Elements Per Read: 1
    - Arbitrate for Write: Never Arbitrate
    - No. Elements Per Write: 1
    The inputs from the NI 5734 are U16 so I am wirering the right data type to the FIFOs. I also don't have any coercion dots within my FPGA VI. And so far it has only occured after the VI has been compiled onto the FPGA. Could some of the FIFOs/block memory be corrupted because we have written stuff onto the FPGA too often?

  • The synth pad sound Warm Pad has changed after upgrading from Logic Express 7 to Logic Studio

    Hello!
    I have composed a lot of songs over the years using Logic Express 7, and my favourite synth pad sound there was a sound called Warm Pad (from the EXS24 Sampler).
    A half a year ago I upgraded to Logic Studio, mainly because I needed WaveBurner. Happily, all my songs sounded exactly the same after the upgrade, except from 1 sound: The synth pad sound Warm Pad. It still got the same name and location, but the sound was replaced with a very sharp and much more distinct sound (not warm at all, in my ears at least).
    I have tried to replace it with different synth pad sounds from the EXS24 Sampler, and the one I find to come most close to the old Warm Pad from Logic Express, is a synth pad sound called Pad 1. Still, I don’t think it sound exactly the same.
    So, in order to finish all my songs and make an album, I ask you for help:
    1. Do you know how I can get EXACTLY the same sound as the old Warm Pad Logic Express, with my new Logic Studio?
    2. Have you experienced the same with sounds, after upgrading from one Logic version to a newer one? And what have you done to find back to the old sounds?
    I will be VERY thankful for help, because I am not a genius in the mysterious (but yet exiting) world of synthesizer synthesis.
    Best regards,
    Asle
    Composer, guitarist and entrepreneur
    Norway

    I have the boxed version of logic studio.
    When you install, if you pick the "ad hoc" installation you can add the logic7 patches to your existing patches.
    I think running installation again you should be able to install just that.

  • Sub screen: Layout changed after applying the Patches

    Hi,
    I created a sub screen and used the same in a standard screen. The issue is that when I compare the screens i.e. the layout of the sub screen and where it is actually used(standard screen), they differ.
    The sub screen was being displayed properly before the Patches were applied.
    Does applying the Patches has anything to do with this? If so, how to resolve this?
    Regards
    s@k

    ennahk wrote:
    Thanks Hussein for the quick reply...
    Here are the list of patches applied in that order 1) 7427746 2) 8349148 3) 12992649All those patches are related to Assets module and should not have any impact on the concurrent requests in general (from the README files and the MOS docs).
    If no other changes have been done recently, then I would suggest you log a SR.
    Thanks,
    Hussein

  • Video changes after applying text track

    Has anyone here seen this problem.
    I work for education, so by federal law we must caption all video used by students. The problem I'm encountering is that when I apply a text track to a QT file, so that it is captioned, it changes the video track, so that the color doubles and the contrast of the image darkens.
    If I turn off the text track this problem persists. If I extract the video from this file, (using the extract track option) into a new movie, (no text track brought over from the old movie) the video is fine again, till I add a new text track, then the whole problem presents itself again.
    Has anyone seen this problem and if so, is there a soultion?
    This also happens, if you apply a chapter text track as well.

    Thanks for the resonse
    The files are generated from an uncompressed 10bit video file, (exported out of FCP) and encoded, using Cleaner 6.5.
    Chapter, (added in FCP) and captioning, (via Mac Caption Pro software) is added to the file, via text tracks, to the origianl video. These tracks are turned off prior to encoding the QT streaming files. But the data is transfered to the final QT streaming file during the creation of the steraming file.
    All settings are set at default, the videos transparency is set to "None (allow dithering)" Layer 0. I've never change any of the settings of the tracks from there default settings.
    To see this issue on your end, just extract the video from one of your current QT files, which will open it into a new window an compare the two videos at the same frame. More than likely, you will see what I'm seeing. Once a text track has been turned on, unchecking it will not return the video to normal, only extraction of the video to a new movie will reveal the original state of the the QT video.
    Let me know what you find, thanks!

  • Concurrent Programs Requestor name changed after applying patches

    Hi All,
    Would appreciate your help in fixing this issue, was not able to pin point the issue/find specific related documents on web and metalink.
    We applied few patches (in NON Prod environments, this issue happened in 2 of our Non Prod env's) related to FA on 11.5.10 CU2 single node on IBM AIX machines. Here are the steps followed
    1) Stopped Apps Services
    2) Enabled Maintenance mode
    3) applied Patches
    4) Disable Maintenance Mode
    5) Started Apps Services
    Once the patches were applied and all services are UP. I found that all the concurrent programs that have been Completed, and that are in Pending Scheduled have the Requestor as <My Apps ID>. I believe it was "Sysadmin" for all these Concurrent Programs before taking the services down and applying the patches. Please suggest in fixing this issue.
    Thanks much,
    Hari

    ennahk wrote:
    Thanks Hussein for the quick reply...
    Here are the list of patches applied in that order 1) 7427746 2) 8349148 3) 12992649All those patches are related to Assets module and should not have any impact on the concurrent requests in general (from the README files and the MOS docs).
    If no other changes have been done recently, then I would suggest you log a SR.
    Thanks,
    Hussein

  • Product release Didn't Change After Applying Service Packs

    I have applied Service Pack 2,3,4 Crystal XI. My product Version 11.0.0.1883 stayed the same even after applying t service packs. Would anyone have any ideas why it still shows the old release, nd thanks for helping with my issue.
    Jim Dyer

    Hi Jim,
    Make sure you are the local PC admin and that DEP is disabled. I've seen this happen also and there were no warnings or errors, it just didn't update.
    Try re-installing the patches from a local drive and be sure to turn DEP off. Search Forums for more info on how to.
    Also, what OS are you installing on?
    Thank you
    Don

  • Em does not start after servername has changed

    Is there a possibility to get the datanbase running in an ordinary way after the servername has changed after the installation of the database?
    System:
    Windows Server 2003R2
    Oracle 10g R2
    I have changed tnsnames.ora and listener.ora, so the client connection runs well.
    But enterprise manager does not start:
    If I want to start "Database control" there is the old servername in the http-Link:
    http://oldservername:1158/em
    If I replace the old name with "localhost" or the new name I get also an errormessage that the site cant be found.
    In services the OracleDBConsole cant be started.
    with ">emctl start dbconsole" I get the error message ORACLE_SID is not defined.
    Defining it does not change the behaviour.
    Do I have to reinstall the database?
    Thanks
    Roswitha

    Subject: How To Drop, Create And Recreate DB Control In A 10g Database
    Doc ID: Note:278100.1 Type: BULLETIN
    Last Revision Date: 05-JUN-2007 Status: PUBLISHED
    In this Document
    Purpose
    Scope and Application
    How To Drop, Create And Recreate DB Control In A 10g Database
    DB Control options:
    A. Delete DB Control Objects:
    B. Create DB Control Objects
    C. Recreate/ReConfig DB Control
    Applies to:
    Enterprise Manager Grid Control - Version: 10.1 to 10.2
    Information in this document applies to any platform.
    DBConsole
    Purpose
    This article provides detailed instructions on how to 1) create, 2) drop and 3)recreate the repository and configuration files for the DB Control application used to manage a single 10g Database.
    Scope and Application
    The steps in this article are written for a DBA or System Administrator who needs to create, drop or reconfigure the DB Control Application.
    The format of the document will include steps for both 10.1 and 10.2 EMCA because the commands changed between the two releases.
    How To Drop, Create And Recreate DB Control In A 10g Database
    DB Control options:
    A. Delete DB Control Objects:
    Option 1. Delete DB Control Configuration Files using EMCA scripts
    Option 2. Delete DB Control Configuration Files Manually:
    Option 3. Delete DB Control Repository Objects using RepManager
    Option 4. Delete DB Control Repository Objects Manually
    Option 5. Delete DB Control Configuration Files and Repository Objects using EMCA
    Option 1. Delete DB Control Configuration Files using EMCA scripts:
    For DB Control 10.1.x, run the command: <ORACLE_HOME>/bin/emca -x <sid>For DB Control 10.2.x, run the command: <ORACLE_HOME>bin/emca -deconfig dbcontrol db
    Option 2. Delete DB Control Configuration Files Manually:
    Remove the following directories from your filesystem:
    <ORACLE_HOME>/<hostname_sid>
    <ORACLE_HOME>/oc4j/j2ee/OC4J_DBConsole_<hostname>_<sid>
    NOTE:
    On Windows you also need to delete the DB Console service:
    - run regedit
    - navigate to HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services
    - locate the OracleDBConsole<sid> entry and delete it
    Alternatively on Windows XP and Windows Server 2003 you can run the following from the command line:
    'sc delete <service_name>'
    - where <service_name> is the DB Control service name (typically: OracleDBConsole<sid>)
    Also available from Microsoft is the delsrv.exe command. (Free download from Microsoft)
    Option 3. Delete DB Control Repository using RepManager:
    This option is not as complete as the other options. You may find that dropping the repository using the commandline options is a better solution. Also note, RepManager is not used to create a DB Control Repository.
    In both 10g R1 and R2 run: <ORACLE_HOME>/sysman/admin/emdrep/bin/RepManager <hostname> <listener_port> <sid> -action drop
    Option 4. Delete DB Control Repository Objects Manually
    Logon SQLPLUS as user SYS or SYSTEM, and drop the sysman account and management objects:SQL> SHUTDOWN
    IMMEDIATE;SQL> STARTUP RESTRICT;SQL> EXEC sysman.emd_maintenance.remove_em_dbms_jobs;SQL> EXEC sysman.setEMUserContext('',5);SQL>
    REVOKE dba FROM sysman;SQL> DECLARECURSOR c1 ISSELECT owner, synonym_name nameFROM dba_synonymsWHERE table_owner
    = 'SYSMAN';BEGINFOR r1 IN c1 LOOPIF r1.owner = 'PUBLIC' THENEXECUTE IMMEDIATE 'DROP PUBLIC SYNONYM '||r1.name;ELSEEXECUTE
    IMMEDIATE 'DROP SYNONYM '||r1.owner||'.'||r1.name;END IF;END LOOP;END;/SQL> DROP USER mgmt_view CASCADE;SQL> DROP ROLE mgmt_user;SQL> DROP USER sysman CASCADE;SQL> ALTER SYSTEM DISABLE RESTRICTED SESSION;
    Note: The above will completely delete the DB Control repository from the database; under certain circumstances (e.g. you want to recreate the repository later on) the following statements may be sufficient to remove the repository:
    Logon SQLPLUS as user SYS or SYSTEM, and drop the sysman account and management objects:SQL> drop user
    sysman cascade;SQL> drop role MGMT_USER;SQL> drop user MGMT_VIEW cascade;SQL> drop public synonym MGMT_TARGET_BLACKOUTS;SQL> drop public synonym SETEMVIEWUSERCONTEXT;
    Option 5. Delete DB Control Configuration Files and Repository Objects using EMCA
    For DB Control 10.1.x, dropping both the configuration files and the repository objects is a two step process. Run the following two commands:
    <ORACLE_HOME>/bin/emca -x <sid><ORACLE_HOME>/sysman/admin/emdrep/bin/RepManager <hostname> <listener_port> <sid> -action drop
    For DB Control 10.2.x, both configuration files and repository objects can be deleted with a single command. Run the command:
    <ORACLE_HOME>/bin/emca -deconfig dbcontrol db -repos drop
    B. Create DB Control Objects
    Option 1. Create the DB Control Configuration Files
    Option 2. Create the DB Control Repository Objects and Configuration Files
    Option 1. Create the DB Control Configuration Files
    To create only the DB Control configuration files, skipping the repository creation (this would be done for instance if you dropped only the files and left the repository in place):
    For DB Control 10.1.x, run the command: <ORACLE_HOME>/bin/emca -rFor DB Control 10.2.x, run the command: <ORACLE_HOME>/bin/emca -config dbcontrol db
    Option 2. Create the DB Control Repository Objects and Configuration Files
    For DB Control 10.1.x, run the command: <ORACLE_HOME>/bin/emcaFor DB Control 10.2.x, run the command: <ORACLE_HOME>bin/emca -config dbcontrol db -repos create
    C. Recreate/ReConfig DB Control
    Option 1. Recreate the DB Control Configuration Files only (leave Repository intact)
    Option 2. Recreate the DB Control Configuration Files and Repository
    In 10.2, the EMCA commands can be used to reconfigure the existing installs without removing them first.
    Option 1. Recreate the DB Control Configuration Files only (leave Repository intact):
    For DB Control 10.2.x, run the command:
    <ORACLE_HOME>/bin/emca -config dbcontrol db
    Option 2. Recreate the DB Control Configuration Files and Repository
    For DB Control 10.2.x, run the command:
    <ORACLE_HOME>/bin/emca -config dbcontrol db -repos recreate
    For additional information on EMCA commandline options, please see the Oracle Enterprise Manager 10g Advanced Configuration Guide or see Note 330130.1 Overview Of The EMCA Commands Available for DB Control 10.2

  • Viewing/fonts of documents changed after 9.1 download

    I have many pdf documents that look totally different now, almost unreadable. The font or something has changed after I downloaded the newest version. What do I do to get back to normal?? I am writing my PhD dissertation, and cannot even read my saved documents!
    Thanks for any help.

    I actually figured it out, thanks.
    I messed around in Properties, I think I unclicked something about smoothing.
    Anyway, all documents now look the way they did when viewed online when I first saved them.
    I don't know what changed the settings, that has never happened before with an upgrading.
    Thanks for replying..

  • Ever since upgrading to 10.8.4, iMac has problems after waking up from sleep

    Finder windows are blank and non responsive, with spinning beachball...try to restart Finder, endless beachball...I didn't have this problem at all with 10.8.3...Help!!

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • New I tunes software has changed everything without my permission!

    I don 't like this new version of I Tunes.  It has changed the appearance of my files to Icons.  Can't get it to go to List view.  Font is too big. I can't find my songs and albums.   How do I go back to old version?

    SONGS is the list view for ALL your music. You can manage all your music from there without ever having to go to any of the other views.
    If you use playlists, then there is PLAYLIST. All playlists can be configured to show as lists without any icons.

  • Just updated to 8 & now I can't open any web pages & firefox is still running in the background after browser was closed. I uninstalled and reinstalled as well as disabled add-ons and plugins nothing has changed, can I downgrade back to on older version?

    Just updated to 8 & now I can not open any web pages as well as firefox will not close out, it still running in the background after browser was closed. I uninstalled and reinstalled as well as disabled add-ons and plugins nothing has changed, can I downgrade back to on older version?

    See "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    See "Firefox hangs when you quit it":
    *https://support.mozilla.com/kb/Firefox+hangs
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.com/kb/Server+not+found
    *https://support.mozilla.com/kb/Firewalls

  • HT5622 Trying to load an app from the itunes store and asked to review the "Terms and Conditions and Apple Privacy Policy" as it has changed.  There is no "Agree" selection available.  Any suggestions?  This appears to be associated with the iOS7 upgrade.

    Trying to load an app from the itunes store and asked to review the "Terms and Conditions and Apple Privacy Policy" as it has changed.  There is no "Agree" selection available.  Any suggestions?  This appears to be associated with the iOS7 upgrade. Thanks

    I have the same problem with my iphone 4 . I solve it with giving permission to the cookies on safari from the settings.

Maybe you are looking for

  • How to create adf component dynamically from backing bean

    Hi i,am using dev 11g ver2.. my requirement is to create a popup like an lov , i need to create adf controls at the run time based on datatype of the table field Edited by: [email protected] on Jul 9, 2009 3:56 AM

  • Bookmark links for OBI in an iFrame

    Hi, We have OBI within an iFrame within an ADF portal with a SSO solution. The URL to access portal is a different one than the standalone analytics instance. When we create bookmarks in OBI it generates a link with the portal URL and on trying to us

  • SG300-10mp Fibre Link aggregation

      Hi, I have 2 SG300-10mp switches which i am trying to create a link redundancy for over the two fibre ports. On the web interface when i go into the LAG settings ports g9 and g10 which are the fibre ones don't show up. How do i create the link aggr

  • Tune Linked Server

    Dear Experts, Could you please list out possible things for performance tuning of SQL server linked server. Thanks in advance

  • Do I really need to reinstall Windows partition when upgrading to Leopard?

    I've installed Leopard and installed the Leopard drivers in Windows. Now Startup Disk control panel does not show the Windows boot option. I can use it by holding down the Option key at boot time or by running BootChamp. Windows works fine. I ran the