Skip to main content
Solved

Authorization problem after upgrade vom Apps10 to Cloud

  • December 18, 2023
  • 2 replies
  • 229 views

Heins
Do Gooder (Customer)
Forum|alt.badge.img+2
  • Do Gooder (Customer)

Hi,

we ‘ve upgrade our Apps 10 to Ifs Cloud for test.

We can connect the Middle Tier Server and open the landing-page. After clicking “Open IFS Cloud” we becomes an “401 -  Authorization  Required”

What is the problem?

Regards 

Thomas

Best answer by Ben Monroe

Hi Thomas,

A common cause for this is that the IAM pod is not running or ready. Please check the status:

kubectl get pods -n <your ifs namespace>

It should show as 2/2 and Running. Also verify that the other pods are also up and running too.

If not running you should check the pod description and logs:

kubectl describe pod <pod name> -n <your ifs namespace>
kubectl logs <pod name> -n <your ifs namespace>

You may need to append a “-c <container name>” to the logs command as well to distinguish between each container. See the describe output to identify the container names. 

Best regards,

Ben

2 replies

Forum|alt.badge.img+15
  • Superhero (Employee)
  • Answer
  • December 19, 2023

Hi Thomas,

A common cause for this is that the IAM pod is not running or ready. Please check the status:

kubectl get pods -n <your ifs namespace>

It should show as 2/2 and Running. Also verify that the other pods are also up and running too.

If not running you should check the pod description and logs:

kubectl describe pod <pod name> -n <your ifs namespace>
kubectl logs <pod name> -n <your ifs namespace>

You may need to append a “-c <container name>” to the logs command as well to distinguish between each container. See the describe output to identify the container names. 

Best regards,

Ben


Heins
Do Gooder (Customer)
Forum|alt.badge.img+2
  • Author
  • Do Gooder (Customer)
  • December 19, 2023

Hi Ben,

your answer was very helpfull.

Thanks.

Best regards

Thomas