One of the reasons organizations trust IBM i is its stability. An IBM i system can run for months—or even years—without a restart. Still, certain maintenance tasks, configuration changes, or recovery situations require you to stop and start the system correctly.
In this post, I’ll explain how IBM i starts, how users sign on, and how to shut down the system safely—without risking data corruption or system instability. These are core operational skills every IBM i administrator must master.
IBM i rarely needs a restart, but when it does, mistakes can be costly. An improper shutdown can:
IBM i gives you structured, controlled methods to start and stop the system. Your job as an operator is to use the right method at the right time.
Important note
The procedures in this post apply to non-partitioned systems. If you run IBM i in logical partitions (LPARs), especially with an HMC, the steps differ.
When IBM i starts, it performs an Initial Program Load (IPL).
During an IPL, the system:
An IPL does more than “boot” the system. It resets internal structures and prepares IBM i for reliable processing.
If you’re curious about what actually occurs during an IBM i IPL (Restart), I recommend reading my blog post titled “What Really Happens During IBM i IPL (Restart).”
IBM i supports different IPL methods depending on how much control you need.
This is the most common startup method.
You use it when:
An unattended IPL:
For day-to-day operations, this is usually the correct choice.
You perform an attended IPL when you need direct control during startup.
Use this method to:

An attended IPL pauses at specific points and asks for operator input. You typically access it through the control panel.
During an IPL, you’ll typically see:
The control panel lets you:
You normally use this approach when:

Modern systems use virtual control panels, but the operational concepts remain the same.


The startup program defines what IBM i starts automatically after an IPL.
This program typically:

You can change the startup program using system values. A well-designed startup program ensures:
IBM i allows you to automate power operations.
You can:
This feature helps organizations that operate on fixed schedules or require predictable downtime windows.

An abnormal IPL usually indicates a problem, not a planned action.
Common causes include:
After an abnormal IPL, always:
Before anyone can use IBM i, they must sign on.
The sign-on process:
This process enforces security and accountability across the system.
Navigator for i allows users to:

This method suits administrators who prefer a graphical interface.
The 5250 interface remains the most common and powerful sign-on method.
It provides:

Most operational tasks still start here.
During installation or certain IPLs, IBM i may require password entry to continue.
Password management ties directly to:
Operators should enforce strong password practices at all times.
Stopping IBM i requires planning and discipline. Never power off the system casually.
Before shutting down, always follow a structured process.
The Process Overview:
PWRDWNSYS command.First, notify all users and ask them to sign off.
Steps:
GO MANAGESYSWRKUSRJOB USER(ALL) STATUS(ACTIVE) JOBTYPE(*INTERACT)
SNDBRKMSG MSG('The system is going down for maintenance in 30 minutes. Please save your work and sign off.') TOMSGQ(*ALLWS)
If needed, you can force a sign-off using Option 4 (END)
If your system uses multiple interactive subsystems:
Commands:
WRKSBS and Option 4 individual subsystemsENDSBS for all subsystems or individual subsystemsEnd Non-Essential Subsystems (Optional but Recommended)
If you have specific applications running in their own subsystems (e.g., for ERP, warehouse management), it’s good practice to end them cleanly first. This prevents abrupt termination of those processes.
ENDSBS SBS(YourSubsystemName) OPTION(*CNTRLD) DELAY(60)
OPTION(*CNTRLD): Gives jobs a chance to end gracefully.DELAY(60): Specifies a 60-second delay for jobs to end. Adjust as needed.Before shutdown:
Steps:
GO MANAGESYSThis step protects data consistency.
Before powering down:
Leaving media mounted during shutdown can cause errors.
IBM i provides multiple safe shutdown methods.
This is the preferred method.
PWRDWNSYS
You can choose:

Always use this command when possible.
You can also use:
GO POWER
The Power On and Off Tasks menu provides guided options for:

This menu helps operators avoid mistakes.
Use the power button only as a last resort.
Emergency shutdown:
Only use this option when no software-based method works.
Mastering these procedures keeps your IBM i environment stable, secure, and predictable.