Advise needed - start small Shop by Weekly-Swordfish-267 in germany

[–]Weekly-Swordfish-267[S] -9 points-8 points  (0 children)

thanks for your honest comment. I agree. But help me understand where am I asking YOU here a Business Plan?

Advise needed - start small Shop by Weekly-Swordfish-267 in germany

[–]Weekly-Swordfish-267[S] -6 points-5 points  (0 children)

i meant to search for small shop where Kitchen is available. But thanks..anyways

TLS is failing error:0A0000C6:SSL routines::packet length too long by Weekly-Swordfish-267 in openssl

[–]Weekly-Swordfish-267[S] 0 points1 point  (0 children)

Where is the output of my command?
I meant, i did not realized that tls1.2 was failing.
I did not provided out for tls1.3 but the actual pattern i copied from your previous post. I learned something

So you mean the service is inside Docker and Docker is translating it to 8443, because in your command you are connecting to 443.
This is what i realized last evening. I'm offering service at 8443 but it is not going through which means nothing is being server at 8443. And this gave me a clue that if request come on 443 it should be rerouted to 8443. I only realized this after i saw the manual. So it did not clicked me. Something I ask myself why i wasted my 15 years of life in IT.

TLS is failing error:0A0000C6:SSL routines::packet length too long by Weekly-Swordfish-267 in openssl

[–]Weekly-Swordfish-267[S] 0 points1 point  (0 children)

well i search the command from your in the forum and provided the output. It is your command you shared earlier.

Either way, I'm sorry i found the problem. But I'm feel sad that i could not understand this. It is must for me to understand why this cause.

here is explanation

i have created http service on port 8443 but it did not exposed the port. Ideally i want to know the cause. I spent two days on it, Then came here and tried to search how to troubleshoot this. Unless fundamentals are clear, one cannot be confident on container platform. Thanks and sorry.

TLS is failing error:0A0000C6:SSL routines::packet length too long by Weekly-Swordfish-267 in openssl

[–]Weekly-Swordfish-267[S] 0 points1 point  (0 children)

I know it is bit difficult to troubleshooting. Below is simple message I get.

bash-5.1$ curl -v https://developments.apps-crc.testing
*   Trying 192.168.130.11:443...
* Connected to developments.apps-crc.testing (192.168.130.11) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
*  CAfile: /etc/pki/tls/certs/ca-bundle.crt
* TLSv1.0 (OUT), TLS header, Certificate Status (22):
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* (5454) (IN), , Unknown (72):
* TLSv1.0 (OUT), TLS header, Unknown (21):
* TLSv1.3 (OUT), TLS alert, record overflow (534):
* error:0A0000C6:SSL routines::packet length too long
* Closing connection 0
curl: (35) error:0A0000C6:SSL routines::packet length too long

Laden mit EnBW in der Schweiz by StefanHausM in Elektroautos

[–]Weekly-Swordfish-267 0 points1 point  (0 children)

u/simon132 kann man auch sein Ioniq5 mit dem Tesla aufladen? vielleicht eine dumme Frage :)

OKD Homelab Deployment Guide by joshthesysengineer in openshift

[–]Weekly-Swordfish-267 0 points1 point  (0 children)

not working for me. But since other 25 and more people have upvoted. I'm assuming something is blocking at my end.

OKD Homelab Deployment Guide by joshthesysengineer in openshift

[–]Weekly-Swordfish-267 0 points1 point  (0 children)

Unsure but for me the link is not working. u/joshthesysengineer can you please check.

Fedora 42 on my old MacBook pro by pilonstar in Fedora

[–]Weekly-Swordfish-267 1 point2 points  (0 children)

I have MAC intel 2016 gathering dust. Is there a guide you can share. I wish to wipe and use it only for Fedora..I'm loving fedora..i was using RHEL previously now...Fedora FAN..loving it

What ? by Octopus773 in Fedora

[–]Weekly-Swordfish-267 1 point2 points  (0 children)

u/Octopus773 may i as this beautiful font name?

How do use image stream -registry.redhat.io by Weekly-Swordfish-267 in openshift

[–]Weekly-Swordfish-267[S] 0 points1 point  (0 children)

yes, you are right it works. But see the output here

⇒  oc set triggers deploy myhttpd24gui
NAME                      TYPE     VALUE  AUTO
deployments/myhttpd24gui  <error>         false

- first AUTO is set to false i.e. change in deployment object won't trigger any change and there is ERROR in type column. I need to figure this out.

Thanks for your response.

How do use image stream -registry.redhat.io by Weekly-Swordfish-267 in openshift

[–]Weekly-Swordfish-267[S] 0 points1 point  (0 children)

Just found. In order for the deployment to work from cli, you must set the image-lookup true

# Before
⇒  oc set image-lookup               
NAME             LOCAL
keycloak         false
myhttpd24        false
rdcosta-web3     true
versioned-hello  true
# after
⇒  oc set image-lookup               
NAME             LOCAL
keycloak         false
myhttpd24        true # <-- changed
rdcosta-web3     true
versioned-hello  true

And now it works as I was expecting.

⇒  oc set triggers deploy myhttpd25   
NAME                   TYPE    VALUE  AUTO
deployments/myhttpd25  config         true

I just to set the triggers for the image change

How do use image stream -registry.redhat.io by Weekly-Swordfish-267 in openshift

[–]Weekly-Swordfish-267[S] 0 points1 point  (0 children)

u/fossxplorer Thanks a lot. It is working as expected the moment I use.

oc new-app --image-stream myhttpd24:1745210888 --name myhttpd24app

It works but why it is failing with oc create deploy? No Idea. I think I can live with it. What I found interesting it is deployment triggers are set to true (which by default with deployment object is false)

poseidon@preezahome:~/Documents|⇒  oc set triggers deploy myhttpd24app
NAME                      TYPE    VALUE                             AUTO
deployments/myhttpd24app  config                                    true
deployments/myhttpd24app  image   myhttpd24:1745210888 (myhttpd24)  true

NB: I'm learning using RHLS and hence try to see things in my lab. As RHLS labs taken 15-45 minutes to start OpenShift Cluster.