This repository was archived by the owner on Mar 23, 2023. It is now read-only.
This repository was archived by the owner on Mar 23, 2023. It is now read-only.
Open
Description
Hi,
thanks for your nice open source software - i want install ResqueBoard, the Redis & MongoDB Server are running - proper the cube server was running..
bin/evaluator.js:
1 Nov 13:39:06 - starting mongodb client
1 Nov 13:39:07 - starting http server on port 1081
bin/collector.js:
1 Nov 13:39:06 - starting mongodb client
1 Nov 13:39:07 - starting http server on port 1080
1 Nov 13:39:07 - starting udp server on port 1180
no error. But the ResqueBoard says "Unable to connect to the cube server"
ResqueBoard/src/ResqueBoard/Config/Core.php:
<?php
/**
* General settings
*
* Uncomment to override the default settings.
*
* $resquePrefix is the prefix php-resque prepends to all its keys.
*
* @var array
*/
$settings = array(
'cubePublic' => array(
'host' => 'http://localhost:1081/',
'port' => 1081
),
'readOnly' => false,
// 'resqueConfig' => __DIR__ . DIRECTORY_SEPARATOR . './resque.ini',
'timezone' => 'Europe/Berlin'
);
/**
* Service settings
* All database connection settings
*
* @var array
*/
ResqueBoard\Lib\Service\Service::$settings = array(
'Redis' => array(
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0,
'password' => '',
'prefix' => 'queue'
),
'Mongo' => array(
'host' => 'localhost',
'port' => 27017,
'database' => 'cube' // changed - but also changed in bin from Cube
),
'Cube' => array(
'host' => '127.0.0.1',
'port' => 1081
)
);
/**
* Default number of items to display for pagination
*
* @var int
*/
define('PAGINATION_LIMIT', 15);
/**
* Debug mode
*
* @var bool
*/
define('DEBUG', true);
/**
* Path to the cache folder
*
* @var string
*/
define('CACHE', dirname(__DIR__) . DS . 'cache');
/**
* Default application name
*
* @used for the website title
* @var string
*/
define('APPLICATION_NAME', 'ResqueBoard');
/**
* Separator between the website name and other text, in the page title
*
* @var string
*/
define('TITLE_SEP', ' | ');
Any idea? error.log from nginx is clear..
Thanks for your help!
Metadata
Metadata
Assignees
Labels
No labels