libavdevice.so.57:无法映射来自共享对象的段:权限被拒绝“

时间:2016-09-10 09:35:24

标签: php ffmpeg

我已经成功安装了ffmpeg ver。 4.4.7 on centos,同时启用共享:

[root@localhost ~]# ffmpeg
ffmpeg version N-81555-g496d97f Copyright (c) 2000-2016 the FFmpeg developers
  built with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-17)
  configuration: --prefix=/usr/local/ffmpeg_build --extra-cflags=-I/usr/local/ffmpeg_build/include --extra-ldflags=-L/usr/local/ffmpeg_build/lib --bindir=/usr/local/bin --pkg-config-flags=--static --enable-gpl --enable-nonfree --enable-libfdk-aac --enable-libx264 --enable-libx265 --enable-shared
  libavutil      55. 29.100 / 55. 29.100
  libavcodec     57. 54.102 / 57. 54.102
  libavformat    57. 48.102 / 57. 48.102
  libavdevice    57.  0.102 / 57.  0.102
  libavfilter     6. 60.100 /  6. 60.100
  libswscale      4.  1.100 /  4.  1.100
  libswresample   2.  1.100 /  2.  1.100
  libpostproc    54.  0.100 / 54.  0.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

然而,当我在php中运行时,通过exec我得到了

  

“/ usr / local / bin / ffmpeg:加载共享库时出错:   libavdevice.so.57:无法从共享对象映射段:   许可被拒绝“

我知道Web服务器以用户'apache'而不是root身份执行命令,但出于特定原因我在/ usr / local / ffmpeg_build中安装了ffmpeg,以便普通用户可以使用ffmpeg。

我错过了什么?这个错误意味着什么?

1 个答案:

答案 0 :(得分:1)

好的,我在这个链接上找到了答案 http://www.idmworks.com/fix-failed-map-segment-shared-object-permission-denied/

原则上在Enforcing模式下是SElinux而不是Permissive,它一旦我将其设置为许可模式就开始工作。

$ getenforce
Enforcing
$ sudo setenforce 0
$ getenforce
Permissive

使其永久

 vi /etc/selinux/config

并将强制执行更改为许可

SELINUX=enforcing