8000 Cube - unable to connect · Issue #21 · wa0x6e/ResqueBoard · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
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.
Cube - unable to connect #21
Open
Open
@dennisoderwald

Description

@dennisoderwald

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0