web-dev-qa-db-ja.com

Newrelic nginxプラグインのインストール(Pythonの問題)

このプラグイン インストールできません。nginxから助けを得るために書き込みを試みました。(良い経験ではありません)。プラグインは、Python用のデーモンをインストールしていないと言っていますが、実際にはインストールしています(私は信じています)。私はサポートのために書き込みを試みましたが、nginxの人々は非常に失礼で、塩をたたくように言いました。これを修正する方法についての洞察は大歓迎です!私はcentos6を使用していますが、残りの情報は以下のとおりです:)

私のエラーを修正するために助けが必要です:

エラー:パッケージ:nginx-nr-agent-2.0.0-12.el6.ngx.noarch(nginx)必要なもの:python-daemon

実際の出力を参照してください。

[root@pod12 httpdocs]# python -V
Python 2.6.6
[root@pod12 httpdocs]# python2.7 -V
Python 2.7.14
[root@pod12 httpdocs]# which pip
/usr/local/bin/pip
[root@pod12 httpdocs]# cd /usr/local/bin
[root@pod12 bin]# python2.7 pip install python-daemon
Requirement already satisfied: python-daemon in /usr/local/lib/python2.7/site-packages
Requirement already satisfied: docutils in /usr/local/lib/python2.7/site-packages (from python-daemon)
Requirement already satisfied: lockfile>=0.10 in /usr/local/lib/python2.7/site-packages (from python-daemon)
Requirement already satisfied: setuptools in /usr/local/lib/python2.7/site-packages (from python-daemon)
[root@pod12 bin]# yum install nginx-nr-agent
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: ftp.linux.ncsu.edu
 * extras: mirror.cs.pitt.edu
 * updates: mirror.vtti.vt.edu
Resolving Dependencies
--> Running transaction check
---> Package nginx-nr-agent.noarch 0:2.0.0-12.el6.ngx will be installed
--> Processing Dependency: python-daemon for package: nginx-nr-agent-2.0.0-12.el6.ngx.noarch
--> Finished Dependency Resolution
Error: Package: nginx-nr-agent-2.0.0-12.el6.ngx.noarch (nginx)
           Requires: python-daemon
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest
[root@pod12 bin]# 

更新(ありがとうマイケル)-今私は以下を持っています:

[root@pod12 ~]# service nginx-nr-agent start
Traceback (most recent call last):
  File "/usr/bin/nginx-nr-agent.py", line 13, in <module>
    from daemon import runner
  File "/usr/lib/python2.6/site-packages/daemon/runner.py", line 25, in <module>
    import pidlockfile
  File "/usr/lib/python2.6/site-packages/daemon/pidlockfile.py", line 33, in <module>
    class PIDLockFile(LinkFileLock, object):
TypeError: Error when calling the metaclass bases
    function() argument 1 must be code, not str
1

python-daemonはEPELリポジトリにあります。このリポジトリをインストールして有効にし、再試行してください。

1
Michael Hampton