Linux执行.sh文件Permission denied

执行sh文件报没有权限:

看下该文件的权限:

缺少执行的权限,直接加上吧:

chmod 777 test.sh

权限加上去了,可以执行sh文件了

若用 chmod 4755 filename 可使此程序具有root的权限

原文地址:https://www.cnblogs.com/lyc94620/p/10008873.html

时间: 2024-10-08 21:21:12

Linux执行.sh文件Permission denied的相关文章

Linux执行.sh文件,提示No such file or directory的问题的解决方法

Linux执行.sh文件,提示No such file or directory的问题在window平台下,写好shell脚本文件,迁移到linux平台,赋过可执行权限,执行该sh文件,却提示No such file or directory.ls 了下,确实有该文件,怎么会事呢,难道是文件格式兼容性问题?用vim打开该sh文件,输入:[plain]:set ff 回车,显示fileformat=dos,重新设置下文件格式:[plain]:set ff=unix 保存退出:[plain]:wq 

Linux下执行.sh文件

Linux下执行.sh文件有两种情况: 一.直接./加上文件名.sh,如运行hello.sh为./hello.sh[hello.sh必须有x权限] 二.直接sh 加上文件名.sh,如运行hello.sh为sh hello.sh[hello.sh可以没有x权限] 举例说明: 1.执行当前目录下的sh文件: chmod u+x hello.sh ./hello.sh 或者sh hello.sh 2.执行绝对路径目录下的sh文件: ./home/test/shell/hello.sh /home/te

解决linux的-bash: ./xx: Permission denied

转载 2018-02-16 15:08:42 用于学习 在linux下执行sh文件时提示下面信息: -bash: ./xx.sh: Permission denied 解决方案 chmod 777 xx.sh Linux chmod +755和chmod +777 各是什么意思呢? 755 代表用户对该文件拥有读,写,执行的权限,同组其他人员拥有执行和读的权限,没有写的权限,其他用户的权限和同组人员权限一样. 777代表,user,group ,others ,都有读写和可执行权限. 在linu

Linux scp 报错Permission denied, please try again

我帮助chenzhonghua在FTP上建了用户 但是他想用scp从Linux上往FTP服务器(192.168.62.2)传文件遇到了故障: [[email protected] tmp]# scp -P 25552 mysql.sock [email protected]:/tmp[email protected]'s password: Permission denied, please try again. 故障原因: SSH限制了用户的登录.scp命令走SSH登录.chenzhonghu

Linux下sh文件运行及桌面环境双击运行sh文件

sh文件运行: 1.修改为可执行权限: chmod u+x hello.sh 2.运行 ./hello.sh 3.不使用可执行权限修改,用sh直接运行 sh ./hello.sh 桌面环境双击运行sh文件: Mac: 1.修改后缀sh变成command:hello.sh->hello.command 2.修改可执行权限:chmod u+x hello.command Ubuntu: 1.修改可执行权限:chmod u+x hello.sh 2.任意打开一个文件夹,选择左上角的[编辑]->[首选

执行sh文件 进行MongoDB的业务逻辑导入

将从HDFS中的数据转化为Json格式写入文件后,十个文件的文件名为 文件名_01 ...._02 ....03格式. 编写个简单的sh文件 通过for do循环让i+1 文件名对应上就可以的- -执行时要传入文件名称以及需要导入的数据文件的路径,之所以要传进去 也是为了方便项目后续更改目录嘛~ .sh文件: 然而并没有什么乱用! 发现 ./mongo -h 10.1.235.62 -port 27017 --eval "db."${name}".drop()" 不

自动化部署脚本--linux执行sh脚本

自动化部署脚本文件目录: 运行主程序:./install.sh #!/bin/bash SCRIPTPATH=$(cd "$(dirname "$0")"; pwd) Install_log=$SCRIPTPATH/install_log.txt echo "***start install***" > $Install_logecho " workspace is $SCRIPTPATH" | tee -a "

nginx 读取文件 permission denied

nginx 是在root用户下安装的,静态网页的目录/var/www/html/ 目录下的内容所有者也是root 用户,按照 nginx配置文件中location说明 配置静态文件访问地址. 使用网址访问后出现错误日志显示如下 [email protected]:/etc/nginx# more /var/log/nginx/error.log 2018/07/24 11:06:05 [error] 17823#17823: *21 open() "/var/www/html/show/proj

linux执行sh报错:$’\r’: 未找到命令的解决

背景 执行.sh脚本时出现$'\r': 未找到命令, 原因 是因为命令直接从windows 复制过来导致的 解决 yum install dos2unix dos2unix **.sh 进行转换 再次执行即可