无法连接到MongoDB:无法连接到:333.33.333.333:27017:连接被拒绝

Hello am trying to connect mongodb on live server using codeigniter an getting following error .

Unable to connect to MongoDB: Failed to connect to: Connection refused

Everything working fine on my local machine.

here is my connection setting in mongo_db.php file in config folder

$config['mongo_db']['default']['no_auth'] = FALSE;
$config['mongo_db']['default']['hostname'] = '333.33.333.333';
$config['mongo_db']['default']['port'] = '27017';
$config['mongo_db']['default']['username'] = 'abcd';
$config['mongo_db']['default']['password'] = 'abcdef';
$config['mongo_db']['default']['database'] = 'db_seeker';
$config['mongo_db']['default']['db_debug'] = TRUE;
$config['mongo_db']['default']['return_as'] = 'array';
$config['mongo_db']['default']['write_concerns'] = (int)1;
$config['mongo_db']['default']['journal'] = TRUE;
$config['mongo_db']['default']['read_preference'] = NULL;
$config['mongo_db']['default']['read_preference_tags'] = NULL;

333.33.333.333 is not a valid ip, so I doubt your server is binded to that ip