0403-006 Execute permission denied.


 
Thread Tools Search this Thread
Operating Systems AIX 0403-006 Execute permission denied.
# 1  
Old 11-04-2008
0403-006 Execute permission denied.

Hi

i am running the below script in vio server,

i changed to aix mode..then
#./script1

</code>
##Set today Date as file name.
vardate= date +"%m%d%y%H%M%S"
varhost= hostname
filename= "$varhost_$vardate"
echo $filename
</code>

the output is .......
</code>
# ./mount_test
110408141603
tstvio1
./mount_test[4]: : 0403-006 Execute permission denied.
</code>

can anyone explain why i am getting the error on line4 of the script.

thanks
# 2  
Old 11-04-2008
The values are not assigned properly to the variables. Replace these lines:

Code:
vardate= date +"%m%d%y%H%M%S"
varhost= hostname
filename= "$varhost_$vardate"

with:

Code:
vardate=$(date +"%m%d%y%H%M%S")
varhost=$(hostname)
filename="$varhost_$vardate"

You can also use backticks to assign the output of a command to a variable:

Code:
vardate=`date +"%m%d%y%H%M%S"`
varhost=`hostname`

Regards
# 3  
Old 11-04-2008
thanks franklin,
i used backticks, but not worked. see below..

script:
#print "$filename"
vardate= `date +"%m%d%y%H%M%S"`
varhost= `hostname`
filename="$varhost_$vardate"
print $filename


output:
root@web1:> ./test
./test[6]: 110408144257: not found
./test[7]: tstweb1: not found

thanks
# 4  
Old 11-04-2008
Quote:
Originally Posted by honeym210
root@web1:> ./test
./test[6]: 110408144257: not found
./test[7]: tstweb1: not found
[...]]
Don't ever use "test" as name for a Unix script. Smilie It is a command that evaluates conditional expressions.

PS And try this:
Code:
filename=$varhost"_"$vardate


Last edited by shockneck; 11-04-2008 at 04:08 PM.. Reason: added PS
# 5  
Old 11-04-2008
thnak you shock neck

here is the output,

root@tstweb1:/home/mmuppane> ./test1
./test1[6]: 110408151456: not found
./test1[7]: tstweb1: not found
_

not worked,...

thanks
# 6  
Old 11-04-2008
Quote:
Originally Posted by honeym210
[...]
not worked,...[...]
Huh?
Code:
##Set today Date as file name.
vardate=$(date +"%m%d%y%H%M%S")
varhost=`hostname`
filename=$varhost"_"$vardate
print $filename

Code:
(0)aserver:/home/shockneck > ksh -x t.sh
+ :
+ + date +%m%d%y%H%M%S
vardate=110408212104
+ + hostname
varhost=aserver
+ filename=aserver_110408212104
+ print aserver_110408212104
aserver_110408212104
(0)aserver:/home/shockneck >

# 7  
Old 11-04-2008
thanks shockneck,,

the main problem is ,,
i gave a single spaces between varxxx and date/host.

that was wired me from morning.

thanks a lot.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

Swinstall and rsync - execute permission denied

Hello, I have managed to install rsync using swinstall and also as far as I can tell the dependancies we didn't have. However when trying to execute the binary I get the following error :- />rsync sh: rsync: Execute permission denied. />which rsync /usr/local/bin/rsync... (10 Replies)
Discussion started by: YogaBija
10 Replies

2. UNIX for Dummies Questions & Answers

Permission denied

when i run echo "User” > /dev/tty5 why do i get permission denied? :confused: (2 Replies)
Discussion started by: chinababy
2 Replies

3. Linux

Permission denied

I am using korn shell When I type in Telnet on cmd line, I get message "cannot execute" How can I get permission to execute command ? In which dir is telnet located ? I looked in /usr/bin dir. but its not there Thanks (1 Reply)
Discussion started by: paramshamnani
1 Replies

4. UNIX for Dummies Questions & Answers

Getting Error 0403-006 Execute permission denied.

Hi All, Need your help.. I am writing one script in which I am assigning value to one variable but when i am executing it is showing error "0403-006 Execute permission denied" below is the line of that script : INPUT_COUNT=wc $GIF_DIR/input/VID_RIMS.DAT | awk '{print $1}' and access... (2 Replies)
Discussion started by: NirajThakar
2 Replies

5. Shell Programming and Scripting

Change: xecho: execute permission denied error

Hello, I am have an issues with one of my scripts. I get the following error when I get to the point in the script where I am making the change. The change does take however. the error is "change: xecho: execute permission denied" Everything was working properly until I start cleaning... (3 Replies)
Discussion started by: simpsonjr
3 Replies

6. AIX

slibclean: 0403-006 Execute permission

Friends , I am going to update the oracle version from '10.2.0.1.0' to '10.2.0.4.0' in AIX 6.1 . During upgradation it needs to run the following script as root user : sh /usr/sbin/slibclean But when this script is run then it shows the following error : # sh /usr/sbin/slibclean sh:... (7 Replies)
Discussion started by: shipon_97
7 Replies

7. AIX

rm: execute permission denied in AIX

Hello All, We have an existing ssh set-up between 2 Unix servers ( Server A and Server B). Recently, we've had a problem where we cannot delete files (via app engine and even manually, after connecting thru ssh) on Server B. We manage Server A but Server B is handled by a different group, as a... (1 Reply)
Discussion started by: chipahoys
1 Replies

8. UNIX for Dummies Questions & Answers

Why do I keep getting .:Permission denied?

I'll start off by saying that I know very little about Unix - however, I do know that I have a .profile file in my home directory, and that I should be able to invoke it by typing . profile. However, when I do this for ANY .filename, I get ".: Permission denied". I'm pretty sure that there is... (12 Replies)
Discussion started by: bbersani
12 Replies

9. UNIX for Advanced & Expert Users

wat is execute permission denied???

hi, i have a problem and is needed by next week. when i need to run a program at the specified time using the crontab, after that the program which will send a messege to the screen using the say command, which will show "Hello" but there is an error when i run it, in the mail it show that ... (5 Replies)
Discussion started by: ckng
5 Replies

10. UNIX for Dummies Questions & Answers

Permission Denied

I just started computer science at UW Milwaukee. When I access the university Solaris system from PuTTY, I get permission denied when I try to access the file I wrote. Now I really have no idea what I'm doing, I just don't understand why I get permission denied in my won directory. Thank You ... (0 Replies)
Discussion started by: howeezy
0 Replies
Login or Register to Ask a Question