Questions tagged [jelastic]

Platform-as-a-Service for developers with support of Java, PHP, Ruby, Node.js, Python and Docker-based applications

Jelastic is a robust solution with the benefits of PaaS and CaaS in a single turnkey package. Its rich interface simplifies complex cloud deployments by automating the creation, scaling, clustering and security updates of microservices or monolithic applications. Jelastic has a unique pay-for usage-only pricing model and is available as public, private, hybrid and multi-cloud in more than 55 data centers worldwide. The platform provides support of Java, PHP, Ruby, Node.js, Python, .NET environments and custom Docker containers.

More info is at https://jelastic.com

402 questions
0
votes
1 answer

Why I can't launch the container with the image nginxphp in local

I try to create an image from the image jelastic/nginxphp:1.18.0-php-7.4.10 to set up my existing Laravel project (to then put on Jelastic cloud). However, when I try to access localhost I get a ERR_EMPTY_RESPONSE error. I also tried to create a…
diego
  • 408
  • 8
  • 21
0
votes
1 answer

Reached max children process limit: 2, extra: 0, current: 2, busy: 2, please increase LSAPI_CHILDREN

We are using 2 lb + 2 api's + 3 mysql for running our burger website. During peak order time website get slow and some time not available. We have checked the logs in detail and we could see the below in API litespeed error logs [STDERR]…
nisamudeen97
  • 519
  • 4
  • 22
0
votes
1 answer

ResCarta in Jelastic?

I'm trying to get the Tomcat app ResCarta into my Reclaim Cloud account (Jelastic). I can get the ResCarta website to work on my computer via a local port, but I can't get it to deploy onto Jelastic. I've tried deploying the download package .zip…
0
votes
1 answer

How to configure the netty-SocketIO server so that it is accessible from all remote java clients in jelastic

I am developing a Spring-Boot project which also includes a socketIO server based on netty-socket Io. And therefore two clients: a web client and an android client! all of them work wonderfully locally! But when I deploy online server in Jelastic…
AUGUSTIN
  • 1
  • 1
0
votes
0 answers

Jelastic cloud Java Web Application

I have developed a Java web application in NetBeans IDE 8.2. I also have tried free trial of Jelastic account and upload my WAR project file to Kilat Iron cloud. However, there are some errors occurred after deployed it. What I should do? Type…
0
votes
1 answer

Jelastic custom run command

I'm trying to install OSRM on Jelastic docker container. This is the guide for running it on a local docker: https://github.com/Project-OSRM/osrm-backend, it works to perfection. Now I want to run it on a Jelastic container, but I dont know how to…
Federico Alvarez
  • 1,459
  • 1
  • 19
  • 30
0
votes
0 answers

HA proxy ft_http/2: SSL handshake failure

I have a Jelastic environment to build a scalable backend api. It used to run on a single vps but when the API has lots of requests the vps can't handle it. So My environment A HAProxy loadbalancer. Default scale 2 cloudless and can scale to 40…
0
votes
1 answer

How do I manipulate a json file from a script run on a jelastic jps manifest?

I have a JSON file available at some URL. In my Jelastic manifest, I want to read it, modify its content, and output that modified content to a json on the environment I am installing / updating: jpsVersion: 1.3 jpsType: update application: id:…
Laurent Michel
  • 1,069
  • 3
  • 14
  • 29
0
votes
1 answer

How to mount a data volume onto an added node on a Jelastic environment

I want to create a Jelastic environment with a load balancer and a cp node. I want to add the cp node with the addNodes api method, because it needs specific data to start. My manifest looks like this: jpsVersion: 1.3 jpsType: install application: …
Laurent Michel
  • 1,069
  • 3
  • 14
  • 29
0
votes
2 answers

How can I act on the last created node in my jelastic installation manifest?

I have the following jps manifest: jpsVersion: 1.3 jpsType: update application: id: test name: Test version: 0.0 onInstall: - addNodes: - nodeType: docker count: 1 fixedCloudlets: 1 cloudlets: 16 dockerName:…
Laurent Michel
  • 1,069
  • 3
  • 14
  • 29
0
votes
1 answer

Is there a way to get information about created environment in a separate action in my jelastic manifest?

Assume I have the following actions in my jps manifest: actions: installDatabase: install: jps: ${baseUrl}/jelastic/postgres/manifest.jps envName: ${settings.pgEnvName} displayName: Database cluster myOtherAction: - cmd…
Laurent Michel
  • 1,069
  • 3
  • 14
  • 29
0
votes
2 answers

How to alias my domain's subdomain with my jelastic environment subdomain?

I have a kubernetes cluster hosted on a Jelastic environment env.jelastic-provider.com. In that k8s cluster, I am exposing a frontend app on app.env.jelastic-provider.com. I would like to use a CNAME record to alias my custom domain www.example.com…
Laurent Michel
  • 1,069
  • 3
  • 14
  • 29
0
votes
1 answer

How to import publicly available jelastic manifests from gitlab repositories in the jelastic dashboard?

I am currently transitioning from github to gitlab. Today, my code is present at both those locations. I have a jps manifest on github: https://github.com/shopozor/services/blob/master/manifest.jps and the very same manifest on…
Laurent Michel
  • 1,069
  • 3
  • 14
  • 29
0
votes
1 answer

How do I add an nginx load balancer to a kubernetes cluster on Jelastic?

I have the following jps manifest: jpsVersion: 1.3 jpsType: install application: id: my-app name: My App version: 0.0 settings: fields: - name: envName caption: Env Name type: string required: true - name:…
Laurent Michel
  • 1,069
  • 3
  • 14
  • 29
0
votes
1 answer

Why can't I attach an external IP through my jelastic installation manifest?

I have a very simple jelastic installation manifest which installs a kubernetes cluster: jpsVersion: 1.3 jpsType: install application: id: shopozor-k8s-cluster name: Shopozor k8s cluster version: 0.0 settings: fields: - name:…
Laurent Michel
  • 1,069
  • 3
  • 14
  • 29