2017-12-07 51 views
0

すべてのデバイスからすべての情報を正常に取得しているが、グラフを表示していないobserviumをインストールしました。 enter image description hereグラフがObserviumに表示されない

私は手動で実行したときに、私はすべてのエラーが表示されないの/ opt/observium/RRD

内のファイルを見ることができます:

cd /opt/observium && ./discovery.php -h all && ./poller.php -h all 

私はChromeとFirefoxでテストしました。

私はこれが私に教えてください解決することができ、他の情報を提供することができればこれは私のconfig.php

<?php 

## Check http://www.observium.org/docs/config_options/ for documentation of possible settings 

// Database config --- This MUST be configured 
$config['db_extension'] = 'mysqli'; 
$config['db_host']  = '192.168.1.10'; 
$config['db_user']  = 'observium'; 
$config['db_pass']  = 'somepass'; 
$config['db_name']  = 'observium'; 

// Base directory 
#$config['install_dir'] = "/opt/observium"; 

// Default community list to use when adding/discovering 
$config['snmp']['community'] = array("public"); 

// Authentication Model 
$config['auth_mechanism'] = "mysql"; // default, other options: ldap, http-auth, please see documentation for config help 

// Enable alerter 
// $config['poller-wrapper']['alerter'] = TRUE; 

//$config['web_show_disabled'] = FALSE; // Show or not disabled devices on major pages. 

// Set up a default alerter (email to a single address) 
$config['email']['default']  = "[email protected]"; 
$config['email']['from']   = "Observium <[email protected]>"; 
$config['email']['default_only'] = TRUE; 

$config['enable_syslog']    = 1; // Enable Syslog 

// End config.php 

です。

Seetings: enter image description here

デバイスのグラフの設定: enter image description here

nginxのconfに:

server { 
    listen 80; 
    server_name observium.mydomain.com; 

    root /opt/observium/html; 
    client_max_body_size 10m; 
    client_body_buffer_size 8K; 
    client_header_buffer_size 1k; 
    large_client_header_buffers 4 8k; 

    location/{ 
    index index.php index.html index.htm; 
    autoindex on; 
    try_files $uri $uri/ /index.php; 

    location ~ \.php$ { 
     fastcgi_split_path_info ^(.+\.php)(/.+)$; 
     fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; 
     fastcgi_index index.php; 
     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
     include fastcgi_params; 
    } 
    } 
} 

はあなたに

+0

ブラウザのコンソールには何がありますか? –

+0

DevToolsがSourceMapを解析できませんでした:http://observium.mydomain.com/css/bootstrap-select.css.map DevToolsがSourceMapを解析できませんでした:http://observium.mydomain.com/js/bootstrap-select.js .map – CroiOS

+0

@LawrenceCherone - これは問題ではありません。私はグラフ CroiOS

答えて

0

見つかり問題をありがとうございました。 config.phpファイルの先頭に空白行がありました<?php

関連する問題