Skip to content

Commit 7ba8e6c

Browse files
committed
[post] HOWTO: Obtain new Openshift token from Xterm
1 parent b981afb commit 7ba8e6c

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
layout: post
3+
title: HOWTO Obtain new Openshift token from Xterm
4+
date: 2025-02-14 9:15:16
5+
description: Suppose your OpenShift login token has expired, as tokens are, by default, valid for a limited time (e.g., 24 hours). Follow these steps to obtain a new token and continue working with the cluster.
6+
tags: OpenShift token xterm text-web-browser lynx
7+
categories: OpenShift
8+
---
9+
10+
# How to Obtain a New Token for OpenShift from xterm
11+
12+
Suppose your OpenShift login token has expired, as tokens are, by default, valid for a limited time (e.g., 24 hours). Follow these steps to obtain a new token and continue working with the cluster.
13+
14+
## Steps to Obtain a New Token
15+
16+
1. **Install a Text-Based Browser**\
17+
Install `lynx`, a command-line browser, to access the token request page:
18+
19+
```bash
20+
sudo yum install lynx -y
21+
```
22+
23+
2. **Access the Token Request Page**\
24+
Use `lynx` to navigate to the token request page:
25+
26+
```bash
27+
lynx https://oauth-openshift.apps.ocp.openstack.lab/oauth/token/request
28+
```
29+
30+
3. **Retrieve the ******\`\`****** Password**\
31+
If you are using the default `kubeadmin` user, retrieve the password from the installation directory:
32+
33+
```bash
34+
cat ~/.kube/kubeadmin-password
35+
```
36+
37+
Use this password to log in as `kubeadmin` in the browser interface.
38+
39+
4. **Generate a New Token**\
40+
Once logged in, obtain a new token. The login command will look like this:
41+
42+
```bash
43+
oc login --token=sha256~<...> --server=https://api.ocp.openstack.lab:6443
44+
```
45+
46+
5. **Retry Your Command**\
47+
With the new token, re-run the desired command. For example:
48+
49+
```bash
50+
oc -n openstack wait openstackcontrolplane controlplane --for condition=Ready --timeout=60m
51+
```
52+

0 commit comments

Comments
 (0)