Questions tagged [openshift-cartridge]

OpenShift cartridges provide the necessary command and control for the functionality of software that is running users' applications.

OpenShift cartridges provide the necessary command and control for the functionality of software that is running users' applications. OpenShift currently has many language cartridges (JBoss EAP, JBoss EWS, PHP, Ruby, Rails, etc.) as well as many DB cartridges (Postgres, Mysql, Mongo, etc.).

117 questions
0
votes
1 answer

can't restart openshift application

I can't restart openshift application nodejs + postgres. I use free plan. Error in openshift online: Could not stop Postgres Failed to execute: 'control restart' for /var/lib/openshift/{my_id}/postgresql I found some advices to need to wait sometime…
alexsodev
  • 489
  • 5
  • 12
0
votes
1 answer

Openshift DIY cartridge : java.net.SocketException: Permission denied on Spring:boot project

I am trying to deploy following open source project on my openshift v2 web console: https://github.com/jivesoftware/jive-sdk-java-springboot .action_hook start file #!/bin/bash # The logic to start up your application should be put in this #…
atom217
  • 971
  • 1
  • 14
  • 26
0
votes
0 answers

Difficulty compiling a file on openshift: /usr/bin/ld/: cannot find -lpython2.7

I recently put a simple web app on Openshift. Everything functions well on my local machine but when I run the application on Openshift I receive the error: /usr/bin/ld: cannot find -lpython2.7 The app uses Nuitka and gnu++ to convert a python file…
Logic9
  • 79
  • 1
  • 8
0
votes
1 answer

Using only Two gear but openshift show Three gear in use

I had two application both with 1 small gear (total 2 small gear). Recently I tried to add another application with one small gear. As a free user I am allowed to use only 3 great in total. When creating this new application I faced some issues and…
Saif
  • 6,804
  • 8
  • 40
  • 61
0
votes
1 answer

Web App works fine on locat tomcat server but giving 404 after pushing on shift

I have been working on a web app with spring mvc and jersey and almost complete the functionality. I was testing it on local tomcat server but today when i pushed it to openshift server its not working and giving me 404 not found. I have no idea…
0
votes
1 answer

Openshift application stopped and restarted automaticlally with catridge of type DIY

Opens shift application stopped and restarted automatically with cartridge of type DIY,so continues downtime for my application,as i running spring boot application with PostgreSQL database and the server starts and can see application running but…
Yogesh Doke
  • 1,706
  • 2
  • 12
  • 20
0
votes
1 answer

Openshift: databases environment variables are not set in PHP

I've created a php application on Openshift. Then I added a MySQL database to my app. Afterward I can see database related variables in SSH shell with env command. However when I tried to use environment varibles to setup db connection, it does not…
VSB
  • 9,825
  • 16
  • 72
  • 145
0
votes
1 answer

Openshift - get domain name for MySQL database

In my env variable there is host for MySQL database. But it is ip in local network (starts with 127...). How can I make MySQL available for external world via domain name for db?
Vladyslav K
  • 2,178
  • 3
  • 19
  • 25
0
votes
2 answers

https in Openshift diy

I'm using Openshift DIY cartridge. I want to be able to use https on my application. In fact my security configuration requires secure connection. I can't get it to work as explained in this page. Is there a way to get https working on DIY…
aug70co
  • 3,965
  • 5
  • 30
  • 44
0
votes
0 answers

Jenkins on Openshift unable to service request due to maintenance downtime

I have a jenkins server on Openshift, The server goes down during the build even after upgrading my plan to the bronze plan and using a large gear. Each time I run a jenkins build on Openshift I get this message in the middle of the build: The…
josephino
  • 360
  • 4
  • 21
0
votes
1 answer

Not have permission to writable directory in plugins

In information of redmine not have permission to writable directory in plugins, below image, thereby generating problems using the system. REDMINE IN OPENSHIFT how to solve this problem , since I reported the same in githuib but up to now no answer…
0
votes
1 answer

What is the initial size of MongoDB OpenShift cartridge?

On my OpenShift server console I executed: du -hs * | sort -h and got: 60K cron 128K nodejs 11M redis 12M git 176M app-deployments 180M app-root 481M mongodb I don't use mongo in the web app. Does it mean that 481M is the initial…
Matko
  • 3,386
  • 4
  • 21
  • 35
0
votes
1 answer

Enable scalability in existing OpenShift application. It's possible?

I created a non-scalable OpenShift application with a Diy cartridge, Mysql 5.5 and phpMyAdmin. Now I could set everything I need, saw that I can use the port-forwarding to access my database through my Mysql Workbenck. So I do not take more…
sThiago
  • 215
  • 1
  • 10
0
votes
1 answer

Openshift DIY cartridige with Tomcat 8 and JDK 8. JAVAHOME subscribe

It is the first time I use OpenShift and am creating an application DIY cartridge with Tomcat Java 8 and 8. I am using export JAVA_HOME="${OPENSHIFT_DATA_DIR}jdk1.8.0_51" export PATH=$JAVA_HOME/bin:$PATH cd…
sThiago
  • 215
  • 1
  • 10
0
votes
1 answer

I want to send data from many clients to one stable client using Node.js

Here is my code: var express = require('express'); var net = require('net'); var app = express(); //first of all connect to a stable client var server = net.createServer(function(socket) { // do nothing here . what i want is to use this socket in…