Importing failed. java.net.ConnectException: Connection refused

When i import a csv with no data, only the schema. I am getting this error in log:

“Importing failed. java.net.ConnectException: Connection refused”

I am using Backendless Pro in AWS.

PS.: The coderunner is working…

Are the components up and running? You can check the status of each component using the built-in utility:
https://backendless.com/documentation/backendlesspro/st_process_management.htm

Could you attach the log file to this topic?

So, I restart all services and try to import again.
In the console I could see this log:

/opt/bitnami/apache2/scripts/ctl.sh : httpd started at port 80

bitnami@ip-172-31-47-75:/opt/bitnami$ 13:04:02.908 - [32670] Unable to connect to Messages Broker
13:04:02.914 - [32670] Redis connection to ec2-52-67-205-42.sa-east-1.compute.amazonaws.com:6379 failed - connect ETIMEDOUT 52.67.205.42:6379
13:06:10.396 - [445] Unable to connect to Messages Broker
13:06:10.402 - [445] Redis connection to ec2-52-67-205-42.sa-east-1.compute.amazonaws.com:6379 failed - connect ETIMEDOUT 52.67.205.42:6379

The error says that Redis is not available. Can you check its status via ctlscript?

In a typical Pro installation Redis is addressed through “localhost”. I am not sure how you ended up having it, but in your installation Redis is addressed through “ec2-52-67-205-42.sa-east-1.compute.amazonaws.com:6379”. What this means is the traffic to/from Redis is going over the internet. This also means that your AWS security policy must allow traffic through port 6379.

Hi, I change the t2.small to m3.medium and now its working. Maybe its a memory issues.

Tks all