Complete the code to create the first admin user in Jenkins using the CLI.
java -jar jenkins-cli.jar -s http://localhost:8080 create-user --username [1] --password admin123 --full-name "Admin User" --email admin@example.com
The first admin user is usually named admin in Jenkins for easy identification and default access.
Complete the command to create the first admin user with the Jenkins CLI specifying the server URL.
java -jar jenkins-cli.jar -s [1] create-user --username admin --password admin123 --full-name "Admin User" --email admin@example.com
The Jenkins CLI requires the HTTP URL of the Jenkins server, usually on port 8080.
Fix the error in the command to create the first admin user by choosing the correct option for the password flag.
java -jar jenkins-cli.jar -s http://localhost:8080 create-user --username admin [1] admin123 --full-name "Admin User" --email admin@example.com
The correct flag to specify the password in Jenkins CLI is --password.
Fill both blanks to complete the Jenkins CLI command that creates the first admin user with username and password.
java -jar jenkins-cli.jar -s http://localhost:8080 create-user --username [1] [2] admin123 --full-name "Admin User" --email admin@example.com
The username is admin and the correct password flag is --password.
Fill all three blanks to complete the Jenkins CLI command creating the first admin user with username, password flag, and email.
java -jar jenkins-cli.jar -s http://localhost:8080 create-user --username [1] [2] admin123 --full-name "Admin User" --email [3]
The username is admin, the password flag is --password, and the email is admin@example.com.