Set maxHttpHeaderSize in tomcat server as a parameter
sajjadgholami2006@...
Hi there,
We have a service that gets http requests with big header size, so I was wondering if we can just expose a parameter to set the maximum http header size in tomcat/conf/server.xml to be set by a new option in tomcat.yml file (e.g. "maxHttpHeaderSize" under "tomcat"). I can create a pull-request for this. I'll appreciate your input ;) Best, Sajjad
|
|||||
|
|||||
Re: REMINDER: CAB call for September is Wednesday 09/19 @ 8a PST or 11a EST
Michael Maximilien
Thank you Ashish. Adding your talk. Zoom next week. Best, Max
On Wed, Sep 12, 2018 at 11:55 PM Jain, Ashish <ashish.jain09@...> wrote:
--
dr.max
Sent from my iPhone
http://maximilien.org
|
|||||
|
|||||
Re: REMINDER: CAB call for September is Wednesday 09/19 @ 8a PST or 11a EST
Jain, Ashish <ashish.jain09@...>
Hi Dr. Max, We would like to present “Service Fabrik 2.0 – Architecture, Design followed by a demo”. Presenter would be @Chattopadhyay, Subhankar. We would need a slot of 20-30 minutes. Best regards, Ashish
From: <cf-dev@...> on behalf of Michael Maximilien <maxim@...>
Hi, all,
Quick reminder for the CAB call next Wednesday and announcing one talk:
1. “Updates on CF Container Runtime (aka Kubo)” by Urvashi Reddy of Pivotal 2. TBD - if you have a talk please email me ASAP
Full agenda and Zoom details in [0]. Zoom soon. Best,
------ dr.max ibm ☁ silicon valley, ca
|
|||||
|
|||||
REMINDER: CAB call for September is Wednesday 09/19 @ 8a PST or 11a EST
Michael Maximilien
Hi, all, Quick reminder for the CAB call next Wednesday and announcing one talk:
1. “Updates on CF Container Runtime (aka Kubo)” by Urvashi Reddy of Pivotal 2. TBD - if you have a talk please email me ASAP
Full agenda and Zoom details in [0]. Zoom soon. Best,
------ dr.max ibm ☁ silicon valley, ca
[1] https://github.com/cloudfoundry-incubator/kubo-release
|
|||||
|
|||||
CF CLI v6.39.0 Released Today
Abby Chau
Hey everyone, Highlights include: Refactors (rewrites):
Buildpacks association with stacks feature
Services-related features
Enhancements and bug fixes
Contributors: An Yu, Sebastian Vidrio, Anande Gaitonde, Thomas Viehman, Alex Zhao, Abby Chau, Spencer Hawley, Renee Chu, Nick Guerette, Ryan Tang, William Murphy Special Guests: Buildpacks team (for help with the buildpack-stack association feature), SAPI London team (for pull requests and the async operation work), SAP and UAA Team (for help with the `cf auth` `--origin` work) Feedback Please contact us on the #cli channel on Cloud Foundry Slack. Alternatively, respond directly to this email. Best, Abby and the CLI team
|
|||||
|
|||||
Re: Help required
Liming Liu <andliu@...>
Sorry, minor change, it’s v6.38.0 not v6.28.0.
From: Andy Liu <andliu@...>
Hi Umesh, I did a test the cfdev plugin on the windows 10 pro on windows azure with Standard D4s v3, it works.
Details steps:
the app start up correctly.
BTW, I also tested the windows server 2016, it does not work for now, that’s due to the hyper-v detection logic does not cover the windows server 2016. @Scott Sisil PR to add the support for the windows server 2016 sent : https://github.com/cloudfoundry-incubator/cfdev/pull/44
Thanks, Andy
From: Andy Liu <andliu@...>
Hi Umesh,
And also I have another way to do the cf development, deploy the cloud foundry on one box: https://github.com/virtualcloudfoundry/cf-azure-deployment/tree/master/cf-lite here’s the sample scripts to do the deployment: terraform apply -var prefix="cf-blabla" -var subscription_id="<your subsciption id>" -var client_id="<your client id>" -var client_secret="<your client secret>" -var tenant_id="<your tenant id>" -var ssh_user_username="cfcf" -var ssh_public_key_filename="./ssh_key.pub" -var auto_deploy_bosh="enabled" -var auto_deploy_cf="enabled" -var location="eastasia"
after run this, you would get one dev box, and one box, and one cf box. You can login into the dev box to do the cf push and so on. (using cfcf and the ssh_key.priv to connect to it)
it’s not an official release, but normally I use it for cf feature development. Feel free to shoot me one email if you have problem using it.
Thanks, Andy
From: Andy Liu <andliu@...>
Hi Umesh, Just got message from cf dev team, the cfdev plugin only available on windows 10 and macos for now. And here’s the tracking issue for the support on Linux box: https://github.com/cloudfoundry-incubator/cfdev/issues/18
So maybe you should use a windows 10 or windows server 2016 vm to use the cfdev 😊 I also will try it later. Will post the result on this thread.
Thanks Andy
From: <cf-dev@...> on behalf of Umesh Moudgil <umoudgil08@...>
Dear Scott,
Thanks a lot for prompt reply !!! I tried running the commands however I didn't get the plugin from CF community.
[root@GBAZUKSL025 ~]# cf uninstall-plugin pcfdev
I have below Azure VM with 16GB RAM.
I believe, it will not work till you make some tweaking in PFC Dev as per specific platform. Please let me know if you have any other troubleshooting steps to follow. Umesh Kumar
On Thu, Sep 6, 2018 at 3:09 PM Scott Sisil <ssisil@...> wrote:
|
|||||
|
|||||
Re: Help required
Liming Liu <andliu@...>
Hi Umesh, I did a test the cfdev plugin on the windows 10 pro on windows azure with Standard D4s v3, it works.
Details steps:
the app start up correctly.
BTW, I also tested the windows server 2016, it does not work for now, that’s due to the hyper-v detection logic does not cover the windows server 2016. @Scott Sisil PR to add the support for the windows server 2016 sent : https://github.com/cloudfoundry-incubator/cfdev/pull/44
Thanks, Andy
From: Andy Liu <andliu@...>
Hi Umesh,
And also I have another way to do the cf development, deploy the cloud foundry on one box: https://github.com/virtualcloudfoundry/cf-azure-deployment/tree/master/cf-lite here’s the sample scripts to do the deployment: terraform apply -var prefix="cf-blabla" -var subscription_id="<your subsciption id>" -var client_id="<your client id>" -var client_secret="<your client secret>" -var tenant_id="<your tenant id>" -var ssh_user_username="cfcf" -var ssh_public_key_filename="./ssh_key.pub" -var auto_deploy_bosh="enabled" -var auto_deploy_cf="enabled" -var location="eastasia"
after run this, you would get one dev box, and one box, and one cf box. You can login into the dev box to do the cf push and so on. (using cfcf and the ssh_key.priv to connect to it)
it’s not an official release, but normally I use it for cf feature development. Feel free to shoot me one email if you have problem using it.
Thanks, Andy
From: Andy Liu <andliu@...>
Hi Umesh, Just got message from cf dev team, the cfdev plugin only available on windows 10 and macos for now. And here’s the tracking issue for the support on Linux box: https://github.com/cloudfoundry-incubator/cfdev/issues/18
So maybe you should use a windows 10 or windows server 2016 vm to use the cfdev 😊 I also will try it later. Will post the result on this thread.
Thanks Andy
From: <cf-dev@...> on behalf of Umesh Moudgil <umoudgil08@...>
Dear Scott,
Thanks a lot for prompt reply !!! I tried running the commands however I didn't get the plugin from CF community.
[root@GBAZUKSL025 ~]# cf uninstall-plugin pcfdev
I have below Azure VM with 16GB RAM.
I believe, it will not work till you make some tweaking in PFC Dev as per specific platform. Please let me know if you have any other troubleshooting steps to follow. Umesh Kumar
On Thu, Sep 6, 2018 at 3:09 PM Scott Sisil <ssisil@...> wrote:
|
|||||
|
|||||
Re: Help required
Liming Liu <andliu@...>
Hi Umesh,
And also I have another way to do the cf development, deploy the cloud foundry on one box: https://github.com/virtualcloudfoundry/cf-azure-deployment/tree/master/cf-lite here’s the sample scripts to do the deployment: terraform apply -var prefix="cf-blabla" -var subscription_id="<your subsciption id>" -var client_id="<your client id>" -var client_secret="<your client secret>" -var tenant_id="<your tenant id>" -var ssh_user_username="cfcf" -var ssh_public_key_filename="./ssh_key.pub" -var auto_deploy_bosh="enabled" -var auto_deploy_cf="enabled" -var location="eastasia"
after run this, you would get one dev box, and one box, and one cf box. You can login into the dev box to do the cf push and so on. (using cfcf and the ssh_key.priv to connect to it)
it’s not an official release, but normally I use it for cf feature development. Feel free to shoot me one email if you have problem using it.
Thanks, Andy
From: Andy Liu <andliu@...>
Hi Umesh, Just got message from cf dev team, the cfdev plugin only available on windows 10 and macos for now. And here’s the tracking issue for the support on Linux box: https://github.com/cloudfoundry-incubator/cfdev/issues/18
So maybe you should use a windows 10 or windows server 2016 vm to use the cfdev 😊 I also will try it later. Will post the result on this thread.
Thanks Andy
From: <cf-dev@...> on behalf of Umesh Moudgil <umoudgil08@...>
Dear Scott,
Thanks a lot for prompt reply !!! I tried running the commands however I didn't get the plugin from CF community.
[root@GBAZUKSL025 ~]# cf uninstall-plugin pcfdev
I have below Azure VM with 16GB RAM.
I believe, it will not work till you make some tweaking in PFC Dev as per specific platform. Please let me know if you have any other troubleshooting steps to follow. Umesh Kumar
On Thu, Sep 6, 2018 at 3:09 PM Scott Sisil <ssisil@...> wrote:
|
|||||
|
|||||
Re: Help required
Liming Liu <andliu@...>
Hi Umesh, Just got message from cf dev team, the cfdev plugin only available on windows 10 and macos for now. And here’s the tracking issue for the support on Linux box: https://github.com/cloudfoundry-incubator/cfdev/issues/18
So maybe you should use a windows 10 or windows server 2016 vm to use the cfdev 😊 I also will try it later. Will post the result on this thread.
Thanks Andy
From: <cf-dev@...> on behalf of Umesh Moudgil <umoudgil08@...>
Dear Scott,
Thanks a lot for prompt reply !!! I tried running the commands however I didn't get the plugin from CF community.
[root@GBAZUKSL025 ~]# cf uninstall-plugin pcfdev
I have below Azure VM with 16GB RAM.
I believe, it will not work till you make some tweaking in PFC Dev as per specific platform. Please let me know if you have any other troubleshooting steps to follow. Umesh Kumar
On Thu, Sep 6, 2018 at 3:09 PM Scott Sisil <ssisil@...> wrote:
|
|||||
|
|||||
Re: Help required
Mike Lloyd <klloyd@...>
Umesh, There was an interesting task I helped someone at Microsoft with regarding this same use case. I sent them your thread since they're not on the mailing list and I'll update you if/when he gets back to me on his testing and validation. Thanks, Mike.
On Fri, Sep 7, 2018 at 2:47 AM Umesh Moudgil <umoudgil08@...> wrote:
--
Thanks, Mike. (on mobile, apologies for typos!)
|
|||||
|
|||||
Re: Help required
Umesh Moudgil <umoudgil08@...>
Dear Scott, Thanks a lot for prompt reply !!! I tried running the commands however I didn't get the plugin from CF community. [root@GBAZUKSL025 ~]# cf uninstall-plugin pcfdev Uninstalling plugin pcfdev... OK Plugin pcfdev 0.30.0 successfully uninstalled. [root@GBAZUKSL025 ~]# cf install-plugin cfdev Searching CF-Community for plugin cfdev... Plugin requested has no binary available for your platform. FAILED I have below Azure VM with 16GB RAM. [root@GBAZUKSL025 ~]# uname -a Linux GBAZUKSL025 3.10.0-862.9.1.el7.x86_64 #1 SMP Wed Jun 27 04:30:39 EDT 2018 x86_64 x86_64 x86_64 GNU/Linux I believe, it will not work till you make some tweaking in PFC Dev as per specific platform. Please let me know if you have any other troubleshooting steps to follow. Regards, Umesh Kumar
On Thu, Sep 6, 2018 at 3:09 PM Scott Sisil <ssisil@...> wrote:
|
|||||
|
|||||
REQUEST for REVIEW - Proposed Scope for CF-Deployment 5.0
Josh Collins
Hello Fellow Cloud-Foundrians, I'd like to share and gather feedback on proposed scope of the next major release of cf-deployment. I've created a Google Doc which describes the high-level changes under proposal. Anyone with the link above can review and comment. Please feel free to review and provide feedback in the document as soon as you're able. We'll be locking the scope the middle of next week (Monday September 17th). For those interested in following, here's the v5.0 epic in our backlog. Lastly, if you've got breaking changes that you'd like Release Integration to consider in the future please bring them to my and the team's attention: Thanks very much for reading to the end and Happy Thursday! -- Josh Collins PM - CF R&D Release Integration Josh Collins PM - CF R&D Release Integration
|
|||||
|
|||||
Re: Help required
Scott Sisil
Hi Umesh, Im the PM for CF Dev - you are using the legacy PCF Dev plugin - please use the latest version the new CF Dev that uses native hypervisors instead of virtual box for virtualization You can get this version if you uninstall the legacy pcf dev plugin `cf uninstall-plugin pcfdev` and then install the latest version of cf dev `cf install-plugin cfdev` As Frederic mentioned earlier in the chain - this tool is intended to run on a local machine, not an Azure VM. However, in theory it should work on an Azure VM if you configure the VM with 4 cores and a generous amount of RAM (64 GB +) and also configure it to use nested VMs (https://docs.microsoft.com/en-us/azure/virtual-machines/windows/nested-virtualization) so it can use native hypervisors. We have not seen this setup work on our team - but you may be able to get it to work. Let us know. -Scott
On Thu, Sep 6, 2018 at 8:59 AM Corneil du Plessis <corneil.duplessis@...> wrote:
|
|||||
|
|||||
Re: Help required
On Thu, 6 Sep 2018 at 15:47, Umesh Moudgil <umoudgil08@...> wrote:
|
|||||
|
|||||
Re: Help required
Hi Umesh. This will not work. CF Dev is designed to run on your laptop, not on public Cloud. Right now, it supports MacOS only. Best, Frédéric Desbiens Product Manager | Cloud Foundry BOSH
|
|||||
|
|||||
Re: Help required
Liu Liming
Hi Umesh, From the error message:
VBoxManage: error: VMDK: cannot write allocated data block in '/root/.pcfdev/vms/pcfdev-v0.549.0/pcfdev-v0.549.0-disk1.vmdk' (VERR_DISK_FULL)
I think that’s due to the disk is full.
Thanks, Andy
From: <cf-dev@...> on behalf of Umesh Moudgil <umoudgil08@...>
Dear All,
I am trying to setup PCF Dev on my Azure VM. However when I run "pcf dev start" command, I will below error:
[root@GBAZUKSL025 softwares]# cf dev start
Please let me know if you require any further details.
|
|||||
|
|||||
Help required
umoudgil08@...
Dear All, I am trying to setup PCF Dev on my Azure VM. However when I run "pcf dev start" command, I will below error: [root@GBAZUKSL025 softwares]# cf dev start Using existing image. Allocating 4096 MB out of 16030 MB total system memory (12709 MB free). Importing VM... FAILED Error: failed to import VM: failed to execute 'VBoxManage clonemedium disk /root/.pcfdev/vms/pcfdev-v0.549.0-disk1.vmdk.compressed /root/.pcfdev/vms/pcfdev-v0.549.0/pcfdev-v0.549.0-disk1.vmdk': exit status 1: 0%!.(MISSING).10%!.(MISSING).20%!.(MISSING).30%!.(MISSING).40%!.(MISSING).50%!.(MISSING).60%!.(MISSING).70%!.(MISSING).80%!.(MISSING). Progress state: VBOX_E_FILE_ERROR VBoxManage: error: Failed to clone medium VBoxManage: error: Could not create the clone medium '/root/.pcfdev/vms/pcfdev-v0.549.0/pcfdev-v0.549.0-disk1.vmdk'. VBoxManage: error: VMDK: cannot write allocated data block in '/root/.pcfdev/vms/pcfdev-v0.549.0/pcfdev-v0.549.0-disk1.vmdk' (VERR_DISK_FULL) VBoxManage: error: Details: code VBOX_E_FILE_ERROR (0x80bb0004), component MediumWrap, interface IMedium VBoxManage: error: Context: "RTEXITCODE handleCloneMedium(HandlerArg*)" at line 990 of file VBoxManageDisk.cpp Please let me know if you require any further details. .
|
|||||
|
|||||
Cloud Foundry Community Awards
Dear Cloud Foundry Community,
We are bringing the Community Awards to Cloud Foundry Summit EU (Basel, Switzerland)! We need your help; please take a minute to nominate your peer(s) today! Nominations close on September 15, 2018. More info at: https://www.cloudfoundry.org/blog/nominate-the-cloud-foundry-community-for-awards-deadline-915/ Nomination form: https://docs.google.com/forms/d/e/1FAIpQLSfVNtvu43XQJF43vH-BbeYw1EjI3re5OOsgCC3guIojNN4DpA/viewform?usp=sf_link Thank you, Swarna.
|
|||||
|
|||||
Re: Entity Relationship Diagram
#cf
Daniel Jones
Hi, I don't think there is, but a quick web search shows that there are tools that you can connect to the Cloud Controller database that will generate an ERD. Regards, Daniel 'Deejay' Jones - CTO +44 (0)79 8000 9153
On Tue, 28 Aug 2018 at 20:26, <yegor.ius@...> wrote: Is there an Entity Relationship Diagram for the database schema?
|
|||||
|
|||||
Entity Relationship Diagram
#cf
yegor.ius@...
Is there an Entity Relationship Diagram for the database schema?
|
|||||
|