Re: Thoughts From a Newcomer
Hi Bertrand Thanks for this, as someone new to OSS, it’s good to know that others have used their time to outline commonly known questions such that it helps those learning not spending time going down paths unguided. Now if only I could stop reading duplicitous meanings into things as a result of prior learning in other fields then I would be able to do myself a similar favour! :) Also having passively observed the Apache community emails since joining, I have to give credit to the community for their response times in regards to questions asked, as it is a testament to the passion the members have that even someone from the outside can witness. I hope this feedback can be appreciated and can help the community continue to act in such a unified way going forward. Kind regards Matthew Luke O’Brien > On 8 Feb 2023, at 5:53 pm, Bertrand Delacretaz wrote: > > Hi Melissa, > > Melissa Foulks wrote: >> ...I've put together some thoughts about my experience thus far, and >> some suggestions for how to potentially make onboarding easier for the new >> volunteer... > > This is great, thank you! > > I'd say the ASF is a do-ocracy, things happen when people step up to > make them happen. > > Which means that if you are willing and able to improve things, > contributions are very welcome! > > The content of the apache.org is at https://github.com/apache/www-site > ,and for community.a.o it's at https://github.com/apache/comdev-site > > You need some Markdown and Git knowledge to prepare change suggestions > for that content, but it's not rocket science. > > HTH, > -Bertrand > > - > To unsubscribe, e-mail: dev-unsubscr...@community.apache.org > For additional commands, e-mail: dev-h...@community.apache.org > - To unsubscribe, e-mail: dev-unsubscr...@community.apache.org For additional commands, e-mail: dev-h...@community.apache.org
Re: Community-run MVP programs at the ASF
I have yet to contribute on the coding side of things as I am still learning, yet I agree with the above "badge" style system as being something that encourages active engagement and is still egalitarian in nature as it facilitates all contributors to remain equal (as opposed to the dichotomised system that results from the implementation of an "MVP" type option). I have recently returned to forums I have been a member of for close to two decades after getting disillusioned with the algorithmic gaming of mainstream modern social media, whereby a select few are promoted by the algorithm to the detriment of the rest of the userbase. And having seen such a system as the proposed "reward badges" in place to where my forum activity has resulted in attaining such rewards for participating, I can speak from experience that the incentive to contributors is a greater option than "picking favourites" as the MVP system does. The forum I speak of has seperate tiers for posters (committers for the ASF equivalent) and the badges for other noteworthy contributions which I am sure the Dev community here could devise something similar that would work. Hope this gives an insight from an end user perspective of similar systems. Cheers Matthew Luke O’Brien > On 22 Jun 2023, at 4:35 pm, Bertrand Delacretaz > wrote: > > On Thu, Jun 22, 2023 at 12:39 AM Phil Steitz wrote: >> ...I strongly disagree with the idea of designating "MVPs" at any level in >> the >> ASF... > > Same here, I object to having "most valuable" titles in ASF projects, > as it can be understood to mean others are less valuable. > > It's probably a cultural thing, I know "most valuable something" is > common in the US and probably not understood as I do, but we have > multiple cultures here so we need to be careful. The ASF aims to be > *very* egalitarian, sometimes too much maybe, but that has served us > well on multiple occasions. To me, the goal should be to recognize > someone's achievements without implying that they are generally better > than others. Better at a single thing maybe, but nobody's perfect. > > I see MVP has been replaced by "Ambassador" in the Cassandra document, > that's better, but it still takes a single angle on someone's value, > for example requiring that someone "Maintains 1 year of active > experience in public speaking, organising events or publishing content > on the project's channels". > > Some people might not be willing or able to do these things, yet make > tremendous contributions to a project in other ways. > > I'd personally find a "fun badges" system better suited to rewarding > people's varied sets of skills and engagements, from a community point > of view that's orthogonal with ASF roles, ideally in a tongue-in-cheek > style that prevents the badges from being given too much value. > "Traveling Salesman", "Broken Tests Mechanic", "Memory Leaks Plumber" > are the types of badges that come to mind, and can be celebrated to > highlight someone's achievement without making that too serious. > > I'm commenting on this from an ASF-wide perspective, our projects are > of course free to do many of their own things as long as it doesn't > conflict with ASF values - but as the question was about "providing > guidance to ASF projects" I thought that's useful. And yes, IMO > providing such guidance definitely belongs to comdev, reminds me of > https://community.apache.org/committers/funding-disclaimer.html > > -Bertrand > > - > To unsubscribe, e-mail: dev-unsubscr...@community.apache.org > For additional commands, e-mail: dev-h...@community.apache.org > - To unsubscribe, e-mail: dev-unsubscr...@community.apache.org For additional commands, e-mail: dev-h...@community.apache.org
Re: apache with backend tomcat on diff host facing 503 error
Hi Raj Tell Anton James Pate He has proved to live up to His "Evil Celebrity" moniker and that whilst JK may mean "Just kidding" on the internet, it also happens to be the initials of a Lord named Matthew Luke O’Brien who happened to be born from a "K hole" with a Mother named "JanET Kaye". Anyway, I expect a phone call lest "King James" have lost His only real friend in this world He hasn't had to buy with either sex, money or drugs. Peace, love and good happiness stuff Matthew Luke O’Brien > On Oct 5, 2023, at 21:43, Rajasekhar B wrote: > > HI Team, > > Please help me , > > Thanks > Raj > >> On Thu, Oct 5, 2023 at 7:05 PM Rajasekhar B >> wrote: >> >> HI Team, >> >> I'm a newbie to apache/tomcat . >> >> I'm working on a setting up apache webserver Infront of the tomcat server, >> I have apache webserver on one host(10.176.165.21), and tomcat on another >> host (10.176.165.22). Both are on OS RHEL 7.9. >> >> On the Web server host, I have installed the httpd and configured it to >> connect with the tomcat host. Sharing the config below. >> >> Apache version: Server version: Apache/2.4.6 (Red Hat Enterprise Linux) >> >> Tomcat Server version: Apache Tomcat/9.0.80 >> >> /etc/httpd/conf.d/workers.properties: >> worker.list=worker1 >> >> worker.worker1.type=ajp13 >> worker.worker1.host=10.176.165.22 >> worker.worker1.port=8009 >> >> I'm using the modjk connector for establishing the connectivity b/n >> apacehe and tomcat. >> >> modjk config: >> # Load mod_jk module >> LoadModule jk_module modules/mod_jk.so >> >> # Specify the workers for Tomcat instances >> JkWorkersFile /etc/httpd/conf.d/workers.properties >> >> # Configure the mod_jk log file >> JkLogFile /var/log/httpd/mod_jk.log >> >> # Set the log level >> JkLogLevel info >> >> # Mount your web application to Tomcat >> JkMount /* worker1 >> >> Tomcat : >> >> On the tomcat host : the server config below AJP connector config has been >> set. >> >> >>> address="::1" >> port="8009" >> maxParameterCount="1000" >> /> >> >> >> 8009 port is listening on tomcat server and enabled in required firewalls. >> >> [Thu Oct 05 04:37:08.658 2023] [ZR51tP-yAAFF7pqs0XfINAM] >> [26749:140710419421312] [info] jk_open_socket::jk_connect.c (818): connect >> to 10.176.165.22:8009 failed (errno=111) >> [Thu Oct 05 04:37:08.658 2023] [ZR51tP-yAAFF7pqs0XfINAM] >> [26749:140710419421312] [info] ajp_connect_to_endpoint::jk_ajp_common.c >> (1092): (worker1) Failed opening socket to (10.176.165.22:8009) >> (errno=111) >> [Thu Oct 05 04:37:08.658 2023] [ZR51tP-yAAFF7pqs0XfINAM] >> [26749:140710419421312] [error] ajp_send_request::jk_ajp_common.c (1768): >> (worker1) connecting to backend failed. Tomcat is probably not started or >> is listening on the wrong port (errno=111) >> [Thu Oct 05 04:37:08.658 2023] [ZR51tP-yAAFF7pqs0XfINAM] >> [26749:140710419421312] [info] ajp_service::jk_ajp_common.c (2892): >> (worker1) sending request to tomcat failed (recoverable), because of error >> during request sending (attempt=1) >> >> I'm looking for help , >> >> Thanks, >> >> Raj >> - To unsubscribe, e-mail: dev-unsubscr...@community.apache.org For additional commands, e-mail: dev-h...@community.apache.org
Re: Thoughts on alternative communication channels for our communities
I would support this initative. Also is there anyone who would be willing to mail Me some swag in the form of ASF stickers for Me to adorn My vehicles with in appreciation for the ASF and the committers whose priceless contributions would otherwise remain anonymous lest I possess the advertisement and logos to promote conversations that could enable Me to convey to the general populous the value of OSS and specifically the ASF of which I am happy and proud to represent based on My utilisation of the ASF product. Gracias MLOBS Matthew Luke O'Brien On 22 Oct 2024, at 8:12 PM, Rich Bowen wrote: > On Oct 21, 2024, at 4:30 PM, Drew Foulks wrote: > > Greetings! > > I'm looking to put together a forum / planet apache replacement that can > function as an internal message board, would you be interested in supporting > that? > > see -- https://lists.apache.org/thread/4wpo70q6v75kz0xq0zpgy3s8prto3f3o I definitely would. I have some ideas about what requirements we would have, and having someone from Infra in that conversation will save a lot of intermediate steps, probably. Looking forward to seeing some innovation here. — Rich Bowen rbo...@rcbowen.com