0
0
JenkinsHow-ToBeginner · 3 min read

How to View System Info in Jenkins Quickly

To view system info in Jenkins, go to Manage Jenkins and click on System Information. This page shows details like environment variables, Java version, and Jenkins configuration.
📐

Syntax

Jenkins provides a built-in web interface to view system information without needing commands.

  • Manage Jenkins: The main admin page.
  • System Information: A link inside Manage Jenkins showing system details.
jenkins
Navigate in Jenkins UI: Manage Jenkins > System Information
💻

Example

This example shows how to access system info in Jenkins through the web UI.

1. Open Jenkins in your browser.

2. Click Manage Jenkins on the left menu.

3. Click System Information.

You will see a page listing environment variables, Java version, OS details, and Jenkins settings.

jenkins
No code needed; use Jenkins web interface navigation.
Output
System Information page displays:<br> - Environment variables<br> - Java version<br> - OS details<br> - Jenkins version<br> - Plugin list and versions
⚠️

Common Pitfalls

Common mistakes when trying to view system info in Jenkins:

  • Not having admin rights: Only users with admin access can see System Information.
  • Looking for system info in the wrong place: It is under Manage Jenkins, not in job configurations.
  • Trying to run shell commands on Jenkins server instead of using the UI, which is simpler and safer.
bash
Wrong approach:
# Trying to run shell command on Jenkins server
uname -a

Right approach:
# Use Jenkins UI
Manage Jenkins > System Information
📊

Quick Reference

StepAction
1Open Jenkins web UI
2Click Manage Jenkins
3Click System Information
4Review environment variables, Java version, OS info, and plugins

Key Takeaways

Access system info via Manage Jenkins > System Information in Jenkins UI.
Only admin users can view system information in Jenkins.
System Information page shows environment variables, Java version, OS details, and plugins.
Avoid running shell commands on Jenkins server; use the UI for safer access.
Remember system info is not found in job settings but in the main Jenkins admin area.