Questions tagged [pcf]

Programmable Command Formats (PCFs) is an IBM technology used for communicating with IBM MQ queue managers.

264 questions
0
votes
1 answer

cf login - credentials were rejected in Windows GIT runner as shell

Unable to login to cf with cf login in GIT runner as shell $ cf login -a api.sys.xxx.pcf.xxx.com -u xxxxx -p xxxxx -o xxx -s xx --skip-ssl-validation API endpoint: api.sys.xxx.pcf.xxx.com Authenticating... Credentials were rejected, please try…
0
votes
0 answers

PCF on Azure: 404 error when cf login -a api.system-domain

Installed PCF small footprint on Azure, but the post-deploy errand of 'push-apps-manager' failed on: Setting api endpoint to https://api.SYSTEM_DOMAIN_NAME. API endpoint not found at 'https://api.SYSTEM_DOMAIN_NAME' If I run: cf login -a…
Cuie Wu
  • 1
  • 2
0
votes
2 answers

How do I install node-oracledb behind a corporate firewall that blocks any public traffic?

Context I am trying to install node-oracledb module by running npm install oracledb for my project (behind corporate firewall). I have the proper proxies set! (y) But its keeps throwing the following error: Yarn λ yarn add oracledb yarn add…
pk10
  • 433
  • 3
  • 9
  • 20
0
votes
0 answers

PCF DB2 User Provided Service

I created a User Provided Service for db2 in PCF using below command cf cups db2-service -p "jdbcUrl,user,password" and bound the service to application and can see the environment variables in VCAP Services "VCAP_SERVICES": { "user-provided": [ …
0
votes
3 answers

New Relic alert when application stop

I have an application deployed on PCF and have a new relic service binded to it. In new relic I want to get an alert when my application is stopped . I don't know whether it is possible or not. If it is possible can someone tell me how? Edit: I…
shasha
  • 19
  • 4
0
votes
1 answer

How to return a null value from config server in PCF?

I am trying to receive a null value from the Config Server in a microservice. I have tried "null" (without quotes) as well as "${null}" (also without quotes) in the application.yml the config server is referencing. Both served an empty string. Is…
0
votes
1 answer

How docker container can communicate in PCF

I have multiple docker containers. In local they talk to each other using network and compose.yml. I have pushed my containers to PCF only i don't know how to make them talk to each other. Can anyone help me out??
Rishabh
  • 43
  • 10
0
votes
1 answer

PCF - App not allowed to create tables in MySQL

I have deployed successfully limesurvey.org application (LAMP) to Pivotal Cloud. The application mostly works as expected except MySQL database does not allows the application to create tables. When a given survey is activated the app needs to…
Perugini
  • 11
  • 3
0
votes
3 answers

PCF Update Service Error

I'm using CF CLI (6.32.0) to connect with my PCF. I'm trying to update my existing service with the JSON Object. But I'm getting the below error. Invalid configuration provided for -c flag. Please provide a valid JSON object or path to a file…
S.Siva
  • 1,901
  • 4
  • 17
  • 22
0
votes
2 answers

Using Kubernetes as docker containers orchestration in PCF

I have a requirement to use Docker containers in PCF deployed in Azure. And now we want to use kubernetes as container orchestration. Does kubernetes can be used here ? Or PCF will take care of the container orchasteration ? Which one would be…
Aditya Khajuria
  • 351
  • 1
  • 7
  • 19
0
votes
2 answers

Start individual instances during cloud foundry push synchronously

Not entirely sure if this is possible but is there a way to start the specified cloud foundry instances in sequence rather than having them start concurrently? Right now using the default cf push command with build-pack, 2 instances to be spun up.…
aspiringCoder
  • 415
  • 1
  • 9
  • 24
0
votes
1 answer

Java Spring Boot WEB API To PCF

I am trying to Push a Spring Boot third Party Vendor App to a PCF Environment. PCF is something new to me I tried to fix other issue this one is kind of recurring the whole time. Kindly advice on the below error. This is my folder…
Venk
  • 11
  • 6
0
votes
1 answer

Facing issue while loading app to PCF

Bean method 'configServicePropertySource' in 'ConfigServiceBootstrapConfiguration' not loaded because @ConditionalOnProperty (spring.cloud.config.enabled) found different value in property 'spring.cloud.config.enabled' 2017-12-17T14:40:46.20+0530…
0
votes
1 answer

application level service bindings in cloud foundry for a spring boot app

I have a requirement of binding my spring boot app (which is running on PCF) with mysql service instance of a different microservice. I believe application level service bindings can help me but I get only a spring cloud stream example here…
0
votes
1 answer

What does this option do HTTPD_MODULES_STRIP for HTTPD?

Im using PHP buildpack https://github.com/cloudfoundry/php-buildpack for CloudFoundry. The app bring up a dummy HTTPD webserver directing traffic to defined endpoint. In .bp-config/options.json, i could see HTTPD_MODULES_STRIP. What does this…