sudo service: command not found 报错的解决方法
程序员文章站
2022-06-07 18:11:03
sudo: service: command not found 报错的解决方法,有需要的朋友可以参考下... 13-01-28...
问题:
配置成功sudo后,执行sudo /etc/init.d/httpd restart 正常。
但执行sudo service httpd restart出现一下错误:
sudo: service: command not found
解决方法:
1.将service的路径写入path.
$vi .bash_profile
export path=$path:/sbin
$source source
注意:不建议这样设置,这样加大了安全隐患。
2.修改 sudo 配置文件 /etc/sudoers
# visudo
defaults env_keep = "colors display hostname histsize inputrc kdedir \
ls_colors mail ps1 ps2 qtdir username \
lang lc_address lc_ctype lc_collate lc_identification \
lc_measurement lc_messages lc_monetary lc_name lc_numeric \
lc_paper lc_telephone lc_time lc_all language linguas \
_xkb_charset xauthority path"
;在env_keep中加入path.
#vi /etc/profile
# path manipulation
#if [ "$euid" = "0" ]; then ;
修改为
gid=`/usr/bin/id -g`
if [ $gid -eq 10 ];then
配置成功sudo后,执行sudo /etc/init.d/httpd restart 正常。
但执行sudo service httpd restart出现一下错误:
sudo: service: command not found
解决方法:
1.将service的路径写入path.
$vi .bash_profile
复制代码
代码如下:export path=$path:/sbin
$source source
注意:不建议这样设置,这样加大了安全隐患。
2.修改 sudo 配置文件 /etc/sudoers
复制代码
代码如下:# visudo
defaults env_keep = "colors display hostname histsize inputrc kdedir \
ls_colors mail ps1 ps2 qtdir username \
lang lc_address lc_ctype lc_collate lc_identification \
lc_measurement lc_messages lc_monetary lc_name lc_numeric \
lc_paper lc_telephone lc_time lc_all language linguas \
_xkb_charset xauthority path"
;在env_keep中加入path.
#vi /etc/profile
复制代码
代码如下:# path manipulation
#if [ "$euid" = "0" ]; then ;
修改为
gid=`/usr/bin/id -g`
if [ $gid -eq 10 ];then
推荐阅读
-
bash scp command not found的解决方法
-
sudo service: command not found 报错的解决方法
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
mysql报错:Deadlock found when trying to get lock; try restarting transaction的解决方法
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
覆盖原先的PATH导致命令失效提示command not found的解决方法
-
svn 没有killall命令的解决方法 -bash: killall: command not found
-
arcgis 10 版本连接SDE数据库报错:No ArcSDE server license found 最有效的解决方法
-
编译U-Boot时command not found的解决方法
-
bash scp command not found的解决方法