InkScope V1.3.1相关配置文件

/opt/inkscope/etc/inkscope.conf

{

    "ceph_conf": "/etc/ceph/ceph.conf",

    "ceph_rest_api": "192.168.250.58:5000",

    "ceph_rest_api_subfolder": "",

    "mongodb_host" : "192.168.250.58",

    "mongodb_set" : "mongodb0:27017,mongodb1:27017,mongodb2:27017",

    "mongodb_replicaSet" : "replmongo0",

    "mongodb_read_preference" : "ReadPreference.SECONDARY_PREFERRED",

    "mongodb_port" : 27017,

    "mongodb_user":"ceph",

    "mongodb_passwd":"monpassword",

    "is_mongo_authenticate" : 0,

    "is_mongo_replicat" : 0,

    "cluster": "ceph",

    "platform": "Neunn",

    "status_refresh": 3,

    "osd_dump_refresh": 3,

    "pg_dump_refresh": 60,

    "crushmap_refresh": 60,

    "df_refresh": 60,

    "cluster_window": 1200,

    "osd_window": 1200,

    "pool_window": 1200,

    "mem_refresh": 60,

    "swap_refresh": 600,

    "disk_refresh": 60,

    "partition_refresh": 60,

    "cpu_refresh": 30,

    "net_refresh": 30,

    "mem_window": 1200,

    "swap_window": 3600,

    "disk_window": 1200,

    "partition_window": 1200,

    "cpu_window": 1200,

    "net_window": 1200,

    "radosgw_url": "http://192.168.250.93:80",

    "radosgw_admin": "admin",

    "radosgw_key": "3B3WEK434ZPZHAYDBD4W",

    "radosgw_secret": "OKcOMj88hqzgU9O5R4qFp0eB4jMZJDHmUJd66Bx4"

}

/etc/apache2/site-available/inkScope.conf

<VirtualHost *:8080>

    ServerName  localhost

    ServerAdmin webmaster@localhost


    DocumentRoot /var/www/inkscope

    <Directory "/var/www/inkscope">

        Options All

        AllowOverride All

    </Directory>


    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/

    <Directory "/usr/lib/cgi-bin">

        AllowOverride None

        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch

        Order allow,deny

        Allow from all

    </Directory>


    WSGIScriptAlias /inkscopeCtrl /var/www/inkscope/inkscopeCtrl/inkscopeCtrl.wsgi

    <Directory "/var/www/inkscope/inkScopeCtrl">

        Order allow,deny

        Allow from all

    </Directory>


    WSGIScriptAlias /ceph_rest_api /var/www/inkscope/inkscopeCtrl/ceph-rest-api.wsgi

    <Directory "/var/www/inkscope/inkScopeCtrl">

         Require all granted

    </Directory>


    # Possible values include: debug, info, notice, warn, error, crit,

    # alert, emerg.

    LogLevel debug

    ErrorLog /var/log/inkscope/webserver_error.log

    CustomLog /var/log/inkscope/webserver_access.log common


    ProxyRequests Off

    ProxyPass /ceph-rest-api/ http://192.168.250.58:5000/api/v0.1/



</VirtualHost>

/etc/mongodb.conf

bind_ip = 0.0.0.0

port = 27017


你可能感兴趣的:(mongodb,ceph,inkscope)