Config.sh: line 29: /common/bin/config.sh: permission denied"

i want to Create Weblogic Domain for Identity Management
I start /app/fusion/fmw/wlserver_10.3/common/bin/config.sh, but it shows that "...... config.sh: line 29: /common/bin/config.sh: permission denied"
then I open config.sh, Line 29 as follow
"${WL_HOME}/common/bin/config.sh" "$@"
Edited by: 941252 on Dec 11, 2012 5:21 AM

login using admin user or the user which is used to install OIM.
or provide execute permission to the file like below
chmod 777 /app/fusion/fmw/wlserver_10.3/common/bin/config.sh

Similar Messages

  • %Error opening nvram:/startup-config (Permission denied)

    I'm getting an odd error, permission denied trying to issue "show config" at user level.  We use this throughout the environment with no issues.
    IOS: System image file is "flash0:c2900-universalk9-mz.SPA.152-3.T.bin"
    R1#sh run | i aaa
    aaa new-model
    aaa authentication login default group tacacs+ local
    aaa authorization exec default group tacacs+ if-authenticated
    aaa authorization commands 1 default group tacacs+ if-authenticated
    aaa authorization commands 15 default group tacacs+ if-authenticated
    aaa accounting commands 15 default stop-only group tacacs+
    aaa session-id common
    R1#sh run | i priv
    privilege exec level 1 traceroute
    privilege exec level 1 ping
    privilege exec level 1 show logging
    privilege exec level 1 show configuration
    privilege exec level 1 show privilege
    privilege exec level 1 show
    R1#disable
    R1>show config
    Using 11855 out of 262136 bytes
    %Error opening nvram:/startup-config (Permission denied)

    You are indeed allowed to run the command (as evidenced by the fact that the command did run).
    show config is effectively an alias for the command more nvram:startup-config
    As a result, the issue is the permission on the file, not the command itself.
    Unfortunately, the file systems do not explicitly support permissions.  This used to be implicitly supported through permissions on show config.
    Perhaps this is a bug.  I'd open a case on this if you need really need this feature.

  • Config file access denied while Jheadstart UIX apps migration to 10.1.3.2

    Hi All,
    I am migrating UIX application from 10.1.2.0 to 10.1.3.2.0 .When I am running Jheadstart generator on view components ,It throws me following error,
    Error while loading template bindings property file: java.io.FileNotFoundException: C:\<directoryA>\ViewController\templates\config (Access is denied)
    java.io.FileNotFoundException: C:\<directoryA>\ViewController\templates\config (Access is denied)
    I checked the path and permissions on the directory.All seems to be fine. File is also available in the directory. Recreated the application with access to everyone, even then getting same error.I am using CVS Version control system.
    Would appreciate if somebody can throw light on this issue.
    Here is components version for your reference:
    Jdeveloper Studio Edition Version           10.1.3.2.0.4066
    JHeadstart Shared IDE Components          10.1.3.1.26     
    JHeadstart Application Generator          10.1.3.1.26     
    JHeadstart Designtime Environment          10.1.3.1.26     
    Thanks
    Sekar.

    Sekar,
    Can you try the following:
    - directly edit the application structure XML file and set the templatesBaseDir as follows:
    templatesBaseDir="\templates\"
    - at the very end, just before the closing </service> at the following entry:
    <Templates>
    <TemplateBinding templateBindingsFile="defaultTemplateBindings.jtp"/>
    </Templates>
    </Service>
    Steven Davelaar,
    JHeadstart Team.

  • Off-line clips in Bin in use in Sequence?

    I open a complex project and I'm told that two clips are missing. They appear as off-line in the Bin (red stripe over them).
    I try to find the clips in the sequence, but it'll take me either 2 hours to listen through the movie, or perhaps even longer to enlarge the sequence and try to find any "white clips" in the Sequence.
    So, is there any easy way to tell if a clip could simply be deleted from the bin, thus get rid of the "Missing files" message?
    I might be able to find the original CDDA Tracks, but if they already are on disc and in use, I won't have to...

    Put the offline clips from the Browser in the Viewer, then perform a match frame a few times in them... that should make the the playhead in the Timeline jump to the same frame... the match frame must be done with the Viewer active. You can keep the offline clips too, just tell FCP to ignore them when you open the project file then save... they won't be asked for anymore.
    Jerry

  • Make: execvp: /usr/bin: Permission denied[SOLVED]

    hey, I'm trying to install an app called jconv.
    I get this error:
    make: execvp: /usr/bin: Permission denied
    here is the make file..(don't have the first clue on making a PKGBUILD)
    #  Copyright (C) 2005-2007 Fons Adriaensen <[email protected]>
    #  This program is free software; you can redistribute it and/or modify
    #  it under the terms of the GNU General Public License as published by
    #  the Free Software Foundation; either version 2 of the License, or
    #  (at your option) any later version.
    #  This program is distributed in the hope that it will be useful,
    #  but WITHOUT ANY WARRANTY; without even the implied warranty of
    #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    #  GNU General Public License for more details.
    #  You should have received a copy of the GNU General Public License
    #  along with this program; if not, write to the Free Software
    #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    PREFIX = /usr
    SUFFIX := $(shell uname -m | sed -e 's/^unknown/$//' -e 's/^i.86/$//' -e 's/^x86_64/$/64/')
    LIBDIR = lib$(SUFFIX)
    DISTDIR = jconv-$(VERSION)
    VERSION = 0.2.0
    LDFLAGS += -L$(PREFIX)/$(LIBDIR)
    CPPFLAGS += -O3 -Wall -MMD -MP -DVERSION=\"$(VERSION)\"
    #CPPFLAGS += -march=i686 -mtune=pentium4 -msse -msse2 -m3dnow -O3 -ffast-math
    # Uncomment if you use a libsndfile version without support for setting/getting the Ambisonic flags.
    CPPFLAGS += -DNOAMBIS=1
    all:    jconv fconv mkwavex
    JCONV_O =    jconv.o config.o jconfig.o jclient.o
    jconv:    LDLIBS += -lzita-convolver -lfftw3f -lsndfile -lclthreads -ljack -lpthread -lrt
    jconv:    $(JCONV_O)
        g++ $(LDFLAGS) -o $@ $(JCONV_O) $(LDLIBS)
    $(JCONV_O):
    -include $(JCONV_O:%.o=%.d)
    FCONV_O =    fconv.o config.o fconfig.o
    fconv:    LDLIBS += -lzita-convolver -lfftw3f -lsndfile -lpthread -lrt
    fconv:    $(FCONV_O)
        g++ $(LDFLAGS) -o $@ $(FCONV_O) $(LDLIBS)
    $(FCONV_O):
    -include $(FCONV_O:%.o=%.d)
    MKWAVEX_O =    mkwavex.o impdata.o
    mkwavex : LDLIBS += -lsndfile -lrt
    mkwavex:    $(MKWAVEX_O)
        g++ $(LDFLAGS) -o $@ $(MKWAVEX_O) $(LDLIBS)
    install:    jconv fconv mkwavex
        /usr/bin/install -m 755 jconv $(PREFIX)/bin
        /usr/bin/install -m 755 fconv $(PREFIX)/bin
        /usr/bin/install -m 755 mkwavex $(PREFIX)/bin
    clean:
        /bin/rm -f *~ *.o *.a *.d *.so jconv fconv
    Last edited by funkmuscle (2008-10-23 21:51:15)

    Thanx Chok. I know that. That's why I'm posting this. This app was make for debian so it's something to do with:
    install:    jconv fconv mkwavex
        /usr/bin/install -m 755 jconv $(PREFIX)/bin
        /usr/bin/install -m 755 fconv $(PREFIX)/bin
        /usr/bin/install -m 755 mkwavex $(PREFIX)/bin
    solved...I removed [/usr/bin/install -m 755] and replaced with [install]
    so it looked like this:
    install $(PREFIX)/bin
    Last edited by funkmuscle (2008-10-23 21:50:26)

  • S-nail error no such directory /usr/bin/sendmail / permission denied

    I am trying to get email notifications setup with smartmontools but the test email does not reach my address. s-nail is an optional dependency of smartmontools and is installed. From my understanding it should work out of the box without any configuration but it doesn't.
    I attempted to send an email manually for troubleshooting purposes with this command:
    sudo echo "This is the mail body" | mailx -s "This is the subject" -r sendersemail [email protected]
    The mailx command produced an odd error:
    /usr/bin/sendmail: No such file or directory
    If I create /usr/bin/sendmail directory (and chmod it to 777) I get this error:
    /usr/bin/sendmail: Permission denied
    "/home/dom/dead.letter" 10/251
    ... message not sent.
    I am lost. Does anyone have any idea what is going on here?
    Last edited by dominicm (2015-02-24 22:50:38)

    There is no config, it's all at defaults with only s-nail package installed. Or did you mean other non-snail config? Did you use the command as per my original post exactly and was it  an external email? Did you have s-nail installed/configured before now?
    I also now tried adding a .rcmail config from snail wiki linked before.
    # All the examples require v15-compat!
    set v15-compat
    # ArchLinux-specific locations of certificates.
    # Since these are subject to the ArchLinux update mechanism,
    # use only those, don't try to load OpenSSL builtin ones.
    # And use the TLS specific set: see "man 8 update-ca-trust"
    #set ssl-ca-dir=/etc/ssl/certs
    set ssl-ca-file=/etc/ssl/certs/ca-certificates.crt
    set ssl-no-default-ca
    # Require secure transport via protocol version TLS v1.2, exclusively.
    # (Change this only [best on a per-account base, as below]
    # when the remote server doesn't support this protocol!)
    set ssl-method=tls1.2
    # Request strict transport security checks
    set ssl-verify=strict
    # Essential setting: choose allowed character sets
    # (Have a look at the "CHARACTER SETS" manual section)
    set sendcharsets=utf-8,iso-8859-1
    # When sending messages, wait until the Mail-Transfer-Agent finishs.
    # Only like this you'll be able to see errors reported through the exit
    # status of the MTA (including the builtin SMTP one)!
    set sendwait
    # To save a copy of sent messages somewhere (this will end up in your home directory)
    set record=sentmail.mbox
    # This may be interesting to gain some speedup when sending mail
    set mimetypes-load-control
    # This is optional, but you should get the big picture
    # by reading the manual before you leave that off
    set from="Your Name <youremail@domain>"
    Still the same error. No surprise since this config doesn't add any new info that is not present in the mailx command.
    Last edited by dominicm (2015-02-24 23:59:44)

  • Bash: /mnt/cdrom/runInstaller: /bin/sh: bad interpreter: Permission denied

    hi,
    i m new to oracle on linux
    Oracle 10gR2 on RedHat Enterprise Linux 5
    while running ./runInstaller
    this error displays
    bash: /media/database/runInstaller: /bin/sh: bad interpreter: Permission denied
    can any one help me, please answer here or [email protected]

    It's got nothing to do with who he's running the installer as (though he should indeed run it as the oracle user, of course).
    It's got everything to do with the fact that a lot of distros these days automount their CDs with the noexec switch set. Meaning that no-one apart from root is allowed to execute programs from the mounted media. Centos 5 does it, so RHEL5 would do it too. OpenSuse10.3 doesn't do it; Fedora 8 does; Debian 4 does.
    If your distro uses an old-fashioned fstab (Debian 4 does, for example), you could edit that and stick an explicit 'exec' switch in as one of the mount options (plain old "user", commonly specified, implies "noexec").
    But RHEL5 and Fedora 8, for example, use a new udev-magic way of dynamically mounting removable media, so there's nothing listed in /etc/fstab until after a cd or dvd has been automounted... and by that stage, it's too late to edit what the mount options should be!
    The fix for these sorts of distros is to become root and manually unmount any Oracle CDs or DVDs that have been automounted. You can then simply re-mount them by issuing a command such as
    mount -o loop /dev/cdrom /media...and, because this manual mount doesn't include explicit noexec switches, you'll find that if you now become the oracle user, you'll be allowed to execute the runInstaller program normally.

  • /usr/bin/java Permission denied after installing JDK on linux

    Hi Guys,
    I installed jdk-6u1-linux-i586-rpm.bin and I am getting strange errors like this:
    1 When I simply run "java" in shell I get this:
    /usr/bin/java: line 67: /tmp/javaf10273: Permission denied
    /usr/bin/java: line 67: /tmp/javaf10273: Success
    2. When I try to run an sh file I get this:
    Warning: -ms128m not understood. Ignoring.
    Warning: -mx128m not understood. Ignoring.
    /usr/bin/java: line 67: /tmp/javae10796: Permission denied
    /usr/bin/java: line 67: /tmp/javae10796: Success
    I searched around and as I understand the linux package may have contained some older java version, and the comp is still trying to use that.
    But these notes did not say how to uninstall that older version, orr what to do.
    Can you please maybe point me somewhere?
    Thanks,
    Gyuri

    The RPM installer for the Sun JDK installs Java in /usr/java/jdk1.6.0_01. Just add /usr/java/jdk1.6.0_01/bin to your path before /usr/bin and it should be fine.
    Additionally, there are no -ms and -mx parameters, those should be -Xms and -Xmx.

  • Bash: ./jdev: /bin/sh: bad interpreter: Permission denied

    Unzipped the jdevj2eebase1013.zip
    Set permissions as per install guide.
    Try to run jdev get this error
    bash: ./jdev: /bin/sh: bad interpreter: Permission denied
    Note the install guide says to run $ jdev
    from command line, surely this means
    $ ./jdev
    instead. Tried it verbatim but get
    hj54@devhost:~/downloads/oracle/10g/jdeveloper10.1.3pre/jdev/bin> jdev
    bash: jdev: command not found
    Distro is Novell Linux Desktop ( Suse 9.0 )

    ls -la runInstaller
    Check permission, that user can run.(execute)
    By the way, if you use "oracle" user rune it...
    Please Extract Oracle Source by oracle user.
    Or user root user and change permission source ...
    root$ cd SOURCE
    root $ ls -la runInstaller
    root$ chown -R oracle:oinstall .
    example:
    $ cd Disk1/
    $ ls -la runInstaller
    -rwxr-xr-x 1 oracle oinstall 1756 Mar 12 2008 runInstaller

  • /etc/init.d/oracle-xe status gives /bin/su: /bin/bash: Permission denied

    Hi all,
    This is my first attempt at Oracle so I tried XE on a linux machine (RedHat Enterprise).
    Install and configuration went fine, however trying http://localhost:8080/apex gives me a connection refused message. So i tried '/etc/init.d/oracle-xe status' to check the status. However i got the following message : '/bin/su: /bin/bash: Permission denied'.
    I installed as root. What gives? What did i do wrong?

    Fixed that issue. I had to set the permission to enter the directory also and to execute these two files. I have the following problem now though. See below:
    [root@localhost root]# /etc/init.d/oracle-xe status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 09-AUG-2006 19:57:42
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost.localdomain)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused

  • Hello I am on a macbook pro (retina IOS 9) i have installed xcodes and command line tools but codeblocks does not compile, terminal gives this message /Users/MacPc/Desktop/Untitled1: Permission denied      any one has a solution

    Hello I am on a macbook pro (retina IOS 9) i have installed xcodes and command line tools but codeblocks does not compile, terminal gives this message /Users/MacPc/Desktop/Untitled1: Permission denied      any one has a solution?? please...

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • -bash: ./runInstaller: /bin/sh: bad interpreter: permission denied

    I have done all pre requisite configurations in Enterprise Linux R5 for the installation of Oracle Database 10g R2. When I run this ./runInstaller command from terminal window of Oracle user account. I got following error.
    -bash: ./runInstaller: /bin/sh: bad interpreter: permission denied
    Kindly send me the solution of this problem on urgent basis.
    Thanks.
    Shahzad

    ls -la runInstaller
    Check permission, that user can run.(execute)
    By the way, if you use "oracle" user rune it...
    Please Extract Oracle Source by oracle user.
    Or user root user and change permission source ...
    root$ cd SOURCE
    root $ ls -la runInstaller
    root$ chown -R oracle:oinstall .
    example:
    $ cd Disk1/
    $ ls -la runInstaller
    -rwxr-xr-x 1 oracle oinstall 1756 Mar 12 2008 runInstaller

  • /bin/sh: bad interpreter: Permission denied- Rapidwiz

    hi Gurus,
    I am trying to install apps 11.5.10.2 from an external hard drive onto oracle enterprise linux , installed on vmware workstation 6, and i got error--- /bin/sh: bad interpreter: Permission denied.When trying to run the rapidwiz.
    Can somebody pls help me with full discription of this problem and what the solution might be. Secondly please help with the steps required when installing 11i on oracle enterprise linux as i know nothing about linux configuration.Thanks Guys

    Not Sure if this issue is still open.
    Recently I faced the same issue while executing/running ./rapidwiz (from stage area ) from External usb disk with ext2 file system. Basically I was trying to install R12.0.4 on OEL 5 Platform,
    I was getting the same error PERMISSION DENIED /bin/sh bad interpreter. I started experimenting many different things to start with chmod,chown ...and also having a manual entry in /etc/fstab for the external drive but nothing worked out.
    After hour's(3-4)of googling around I could finally fix it OLAH ...
    Firstly if some one see's the similar issue (assuming the similar senario as well ...stage created on External usb HD)
    1) Check the out put of the "mount" command.
    If it is  /media/usbdisk (rw, noexec,nosuid) * -- this the culprit ** you would never be able to run/execute any program or executable within this disk.
    2) Fix it -- use below command.
    mount -0 remount rw /media/usbdisk .
    3) And upon re-running " mount" cmd, u'll see below output.
    **/media/usbdisk (rw) -- observe we don't c the noexec, nosuid from first run.
    --uh!! Phew !!
    And the installation start ...with no issue's ... I hope this will be usefull for other novie like me ..:-)

  • Command Line to Paste Bin

    I found this thought it was a great little find sometimes it can be tricky getting the output from stdout etc to a pastebin.
    People may have network but not x working just thought perhaps it needed somewhere a little prominent as it would probably help some new users.
    http://sprunge.us/
    Most other ones I've found have needed scripts.

    nopaste, wgetpaste, pypaster, vim-pastie, pastebin, gnopaster, pastebinit, wklejarka, gist. All of them are in extra/community/aur

  • Cannot create directory `/home/a/.config/openbox

    Hi All,
    I'm trying to setup openbox because it is so highly recommended in Arch but I get this:
    [a@Astudio ~]$ mkdir -p ~/.config/openbox/
    mkdir: cannot create directory `/home/a/.config': Permission denied
    [a@Astudio ~]$ su
    Password:
    bash-3.2# chmod -R 755 /home/a/
    bash-3.2# exit
    exit
    [a@Astudio ~]$ mkdir -p ~/.config/openbox/
    mkdir: cannot create directory `/home/a/.config/openbox/': Permission denied
    [a@Astudio ~]$ su
    Password:
    bash-3.2# chmod -R 755 /home/
    bash-3.2# exit
    exit
    [a@Astudio ~]$ mkdir -p ~/.config/openbox/
    mkdir: cannot create directory `/home/a/.config/openbox/': Permission denied
    Does anyone know what I'm doing wrong.
    Thanks,
    Arthur
    sorry about the double post!
    Last edited by Frabato (2008-10-18 02:41:01)

    Have you just installed Arch? Is there a chance that you're not the owner of your home directory? (check "ls -l /home/" to be sure... if not, chown it)
    I don't know what else it could be but someone here will surely have an idea.

Maybe you are looking for