Creating Admin username in ISE using CLI

Hi All,
Can we able to create an admin username and password with role admin in the cli.
I have access to the cli using a user account and I was trying to create an admin username and password.
I have created one but i cannot access using those credentials.
I read in a doc, admin can reset only via booting from iso image.
Kindly advice, on this.
Thanks
rYs

Hi riyasrasheed,
You can create an admin user from CLI.
Once you logged into ISE CLI with admin credentials you have to follow below syntax to create another admin user.
isevm225-pod2/naresh# configure
Enter configuration commands, one per line.  End with CNTL/Z.
isevm225-pod2/naresh(config)# username demouser password plain default1A role ?
  admin  Specifies user with administrative role privileges
  user   Specifies user with read-only role privileges
isevm225-pod2/naresh(config)# username demouser password plain default1A role admin
isevm225-pod2/naresh(config)#
Exit and try to login with newly created user and password.
Thanks,
Naresh

Similar Messages

  • I recieved an Adobe Master Collection License number from my school (Stevens Institute of Technology) and I can't figure out how to use it in order to get the product. I've created a username and that's as far as I've gotten.

    I recieved an Adobe Master Collection License number from my school (Stevens Institute of Technology) and I can't figure out how to use it in order to get the product. I've created a username and that's as far as I've gotten. I need to download the product and I can't figure out where to begin.

    Ask someone at your school... Do you have a Cloud redemption code, or a CS6 serial number?
    If Cloud, Redemption Code http://helpx.adobe.com/x-productkb/global/redemption-code-help.html and
    http://www.adobe.com/products/creativecloud/faq.html
    http://helpx.adobe.com/creative-cloud/help/install-apps.html to install or uninstall
    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    What it is http://helpx.adobe.com/creative-cloud/help/creative-cloud-desktop.html
    Cloud Getting Started https://helpx.adobe.com/creative-cloud.html
    If CS6, download at Other downloads and enter your serial number when prompted
    Again... your 1st resource is your school

  • Creating san-port-channel on 6248 using CLI

    I can create the san port channel using UCS manager. But I would like to know the syntax using CLI. So far I was able to figure out the following. One thing missing was moving the port channel from the default VSAN(1) to a different VSAN i.e VSAN 10 in my case. I have looked at the CLI guide, but have not found the commands syntax. Appreciate if anyone can post the syntax
    ### Create Port Channel ###
    scope fc-uplink
    scope fabric a
    create port-channel 1
    enable
    set name port-channel-1
    set adminspeed auto
    commit-buffer
    end
    ### Add interfaces to Port Channel ###
    scope fc-uplink
    scope fabric a
    scope port-channel 1
    create member-port 1 29
    exit
    create member-port 1 30
    commit-buffer
    end

    Thanx Wdey. That's exactly what I was looking for. Here is the syntax which works for me.
    scope fc-uplink
        scope fabric a
            create port-channel 1
            enable
            set name port-channel-1
            set adminspeed auto
        commit-buffer
    end
    scope fc-uplink
        scope fabric a
            enter port-channel 1
                enable
                enter member-port 1 29
                enable
                exit
                enter member-port 1 30
                enable
                exit
                set adminspeed auto
            exit
            enter vsan VSAN10 10 10
                set fc-zoning disabled
                set fcoe-vlan 10
                set id 10
                enter member-port-channel a 1
                exit
                localize
             exit
         end
    commit-buffer

  • Reset Admin UserName and Password?

    Is there a way to reset you Admin username and password? Do I have to re-install?

    Following information is from Installation Guide, Troubleshooting section. It seems to indicate that you have to re-install.
    If you do not remember the administrative user name that was supplied during installation, try the user name admin. This is the default user name specified in the server configuration dialog during installation.
    If you still cannot determine the user name, look in the following file:
    domain_config_dir/domain1/admin-server/config/admpw
    This file contains the administrator's user name followed by the encrypted form of the administrative user's password.
    If you do not remember the administrator's password, then you will need to uninstall and reinstall the application server.
    If you do not remember the administrator's password, then you can delete the administrative domain using the delete-domain subcommand of asadmin and create a new domain with a new administrative password.

  • Sjsws7 log rotation policy using CLI

    Is it possible to set the log rotation policy using CLI.
    We want to script the process of log rotation using CLI instead of configuring it from the console.

    Thanks for you interest in Web Server 7.
    Yes, Web Server 7 has a rich CLI and
    Log rotation like most administration tasks is configurable using the CLI.
    To schedule log rotation you need a create an "event" . The event as can be seen from the usage could be restart/reconfig/rotate-log/rotate-access-log etc.
    wadm> create-event
    Usage: create-event [--echo] [--no-prompt] [--verbose] [--no-enabled] config=name command=restart|reconfig|rotate-log|rotate-access-log|update-crl|commandline ( (--time=hh:mm [--month=1-12] [--day-of-week=sun/mon/tue/wed/thu/fri/sat] [--day-of-month=1-31]) | --interval=60-86400(seconds) )
    CLI014 config is a required option.
    I will walk thru the steps in the CLI starting from scratch..
    1. Create a config.
    2. Create an event
    3. Create an instance of the config
    4. Start the instance
    5. Deploy the config ( This is a workaround. You should not have to to do this in the upcoming Technology Preview Release 3).
    That's it.. The log should be rotated as per the parameters specified when you create the event.
    I am pasting below the actual result of following the above steps.
    In the example below the event scheduled is a rotate-log event. rotate-log rotates the error log. If you need to rotate the access logs use rotate-access-log instead.
    bash-3.00# ./wadm user admin port 18911
    Please enter admin-user-password>
    Sun Java System Web Server 7.0-Technology-Preview-2 B06/19/2006 17:16
    wadm> date
    Sat Sep 16 09:52:27 IST 2006
    wadm> create-config -- server-name servername http-port 18923 test
    CLI201 Command 'create-config' ran successfully
    wadm> create-event config=test command=rotate-log --time=09:55
    CLI201 Command 'create-event' ran successfully
    wadm> list-events config=test verbose --all
    command time interval
    rotate-log {09:55}
    wadm> create-instance --config=test wspqes032
    CLI201 Command 'create-instance' ran successfully
    wadm> start-instance --config=test
    CLI204 Successfully started the server instance.
    wadm> deploy-config test
    CLI201 Command 'deploy-config' ran successfully
    wadm> date
    Sat Sep 16 09:53:22 IST 2006
    wadm> pwd
    /space/hari/ws7/tpv2/bin
    wadm> cd ../https-test/logs
    wadm> date
    Sat Sep 16 09:53:37 IST 2006
    wadm> ls -al
    total 8
    drwxr-xr-x 2 root root 512 Sep 16 09:53 .
    drwxr-xr-x 10 root root 512 Sep 16 09:53 ..
    -rw-r--r-- 1 root root 143 Sep 16 09:53 access
    -rw-r--r-- 1 root root 683 Sep 16 09:53 errors
    wadm> date
    Sat Sep 16 09:55:18 IST 2006
    wadm> ls -al
    total 8
    drwxr-xr-x 2 root root 512 Sep 16 09:55 .
    drwxr-xr-x 10 root root 512 Sep 16 09:53 ..
    -rw-r--r-- 1 root root 143 Sep 16 09:53 access
    -rw-r--r-- 1 root root 0 Sep 16 09:55 errors
    -rw-r--r-- 1 root root 869 Sep 16 09:55 errors.200609160955
    wadm>
    In this example we have configures the log to be rotated at 09:55 am and as can be seen this has been done.
    We appreciate your valuable feedback. Please do mail us at [email protected]
    Hope that helps,
    Hari.
    Message was edited by:
    hari19

  • Create a custom web template using VS 2012 with web features,site features sections applied

    hi,
     Want to create a  custom web template using VS 2012  in my SP 2013 environment.  i know "Vesku" has posted a great artice on this [  based on prev. version of SP].
    here -
    http://blogs.msdn.com/b/vesku/archive/2010/10/14/sharepoint-2010-and-web-templates.aspx
    i am  looking for a code based article  which has step by step process which provides how to add the site features, web features and attach the eventreceivers etc etc on sitecollection creation when i apply this template from central admin. 
    can anyone provide me any links / any source how to create a custom web template with one / two  custom features -  site features element and web features element , / master page etc ....
    I am stuck with this. as part of my reqmnt, i need to create a webtemplate with all the customlistinstances, custompagelayouts, custom masterpages, custom appln pages, custom web parts.
    help is appreciated !
    Das

    The problem is that Web Templates are deployed to a gallery in a site collection and aren't available in Central Admin when creating a new site collection.  YOu have to create the site collection without choosing a template and then choose your web
    template when you first access the root site in the site collection.  Here's an article that discusses that process here:
    http://sharepointchick.com/archive/2011/02/10/using-web-templates-to-create-site-collections.aspx
    Other than that Vesa's article is still the best one and works essentially the same in 2013 as it does in 2010.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Using CLI to enter Mac local list on 1200 Series

    I have a number of 1200 series Ap's that are set up for MAC Authentication based on a local list only. From the GUI these addresses are entered from the Advanced Security Screen.
    I wnt to find a method for entering them from the CLI but am running into a problem with the level 7 passwords that seem to be automaticly applied when the MAC addresses are added from the GUI.
    If I enter MAC 0011.22aa.33ff from the GUI and then look at the config from the CLI it looks like this:
    username xxx password xxxx
    username xxxx autocommand exit
    how do I do this from the CLI?

    Hi,
    I think if you need to enter lots of MAC Addresses into AP, the fastest way is to use CLI.
    Refer to the following doc on how to configure MAC from CLI. Look under "Local Authenticator Access Point - Step 11"
    http://www.cisco.com/en/US/partner/products/hw/wireless/ps4570/products_configuration_guide_chapter09186a0080341e72.html#wp1039558
    If authentication is purely done via MAC, then you can do like the following example:
    AP#config t
    AP(config-radsrv)# user xxx password xxx group clerks mac-auth-only
    Probably you need to use notepad to list all MAC (as username & password), then copy &paste to your AP's CLI.
    Hope this helps.
    Rgds,
    AK

  • How do I save a 2 page pdf (created in Illustrator) to be used in a web site?

    How do I save a 2 page pdf (created in Illustrator) to be used in a web site?
    When I save my Illustrator file as a pdf, it is about 2600 kb, my web site admin will only allow storage of 5000 kb. I tried to "save for the web", but that only saves the first page of my document. Any suggestions other than paying for more storage???

    What pdf preset are you using? Try smallest file size rather than illustrator default.
    Save for web does not do PDF, so no multipage.

  • Problems in creating and storing new documents using BAPI_DOCUMENT_CREATE2

    Hi experts,
    I'm getting problems in creating and storing new documents using BAPI_DOCUMENT_CREATE2.
    I have a scenario where is defined the document type ZC1, document part 200, authorization group 0002 and for all of these  documents the storage category "Cofre DMS1". And the status which demands the storage category is 'FR'.
    I've been fullfiling the BAPI_DOCUMENT_CREATE2 in this way:
    "Tables
    data: it_doc like bapi_doc_draw2,
          it_return like bapiret2,
          it_files like bapi_doc_files2 occurs 0 with header line,
          it_objs like bapi_doc_drad occurs 0 with header line.
    "Variables
    data: wl_doctype like bapi_doc_draw2-documenttype,
          wl_docnumber like bapi_doc_draw2-documentnumber,
          wl_docpart like bapi_doc_draw2-documentpart,
          wl_docversion like bapi_doc_draw2-documentversion.
    it_doc-documenttype = 'ZC1'.
    it_doc-documentpart = '200'.
    it_doc-documentversion = '00'.
    it_doc-description = 'Test of documents creation via BAPI'.
    it_doc-username = sy-uname.
    it_doc-statusextern = 'FR'.
    it_doc-authoritygroup = '0002'.
    refresh it_files[].
    clear it_files.
    it_files-originaltype = '1'.
    it_files-storagecategory = 'Cofre DMS1'.
    it_files-wsapplication = 'PDF'.
    it_files-docfile = 'c:\110307.pdf'.
    it_files-description = 'Test file'.
    append it_files.
    refresh it_objs[].
    clear it_objs.
    it_objs-objecttype = 'EKPO'.
    it_objs-objectkey = '47000497600010'.
    append it_objs.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
      EXPORTING
        documentdata = it_doc
      IMPORTING
        documenttype = wl_doctype
        documentnumber = wl_docnumber
        documentpart = wl_docpart
        documentversion = wl_docversion
        return = it_return
      TABLES
        objectlinks = it_objs
        documentfiles = it_files.
    After execute the BAPI process I got the following error:
    E26 087 - Data carrier COFRE DMS1 not defined
    Does anybody have a sugestion to help me, please?
    Thks
    David
    Edited by: David Tsutsui on Mar 18, 2010 10:52 AM

    Please refer to this thread, it tells why you need a data carrier you can also configure the same in DC20.
    Data Carriers for Storage the Originals of DMS

  • Oracle 10g - Creating a new Application Server using standalone OC4J 10g

    I have some issues in creating a new app. server using standalone oc4j 10g 10.1.3 instance. After I created the app. server instance, I tested the connection and it says connection refused. I used the userid as oc4jadmin and the password as welcome. I am getting a message connection refused. For connection, I used the default hostname "localhost" and I didn't mention anything in the URL path.

    Thanks Steve..
    Here is what I am trying to do.. I want to create a new app server instance (i.e.) stand alone oc4j server, where I can deploy my web service and run a test.
    Oracle JDeveloper 10g:
    Under Connection Navigator, Application Server --
    1) Right click to 'Create New Application Server Connection'
    2) Connection type as 'Standalone OC4J 10 g 10.1.3',
    3) Username ==> oc4jadmin, Password ==>welcome, checked the Deploy password.
    4) Hostname: localhost RMI Port: 23791
    URL path: <<blank>>
    5) Test Connection ==> getting a error message...
    Error while getting remote MBeanServer for url: ormi://localhost:23791/default:
    Error reading application-client descriptor: Error communicating with server: Connection refused: connect; nested exception is:
         javax.naming.CommunicationException: Connection refused: connect [Root exception is java.net.ConnectException: Connection refused: connect]
    Any input you can provide would be of great help.

  • How do I create a Username Validator for a web service.

    I'm trying to figure out how to create a Username validator. I've followed the WSIT documentation and created their calculator service. The service works when I leave security turned off, so I know I'm good up to this point. I right click on the Web Service in Netbeans, and select Edit Web Services Attributes which pops up the Quality of Service window. I click Secure Service to enable security and select Message Authentication over SSL. I then deselect Use Development Defaults. The Validators button never enables; it stays disabled and greyed out. I've trying picking all different kinds of Security Mechanisms and changing their configuration but I can never get the Validators button to enable. I've also noticed a problem where I select Message Authentication over SSL and deselect Use Development Defaults and then click OK to close the Quality Of Service window. If I then go back to the Quality Of Service window Use Development Defaults is turned back on. The only way I have found around this is to keep turning it off, closing the window and then opening the window again. I sometimes have to screw around with the configuration on the Security Mechanism to be able to keep the Use Development Defaults checkbox unchecked.
    My question is if anyone else has had this problem? How do you go about creating a Username Validator on a Web Service? I know WSIT is pretty new and the IDE wizards seem very buggy. I wouldn't mind creating the Validator by hand and mapping it in, I just can not figure out how to do it.

    I read the examples you referred to. I currently use this method in my non WSIT code, I was trying to figure out how you do the same thing with WSIT (or the equivalent). I've continued playing around with the code, and I found a few settings changes to get my JAX-WS 2.1 SOAP Server to talk with my .Net 3.5 SOAP client. I'm going to stick with the client I have now until I feel it's necessary to switch to WSIT.

  • How can I create a recovery partition to use Find my Mac?

    I want to activate Find my Mac on my MBP.  The iCloud system preference says I don't have a recovery partition that's required for it.  It apparently didn't install when I upgraded to Mountain Lion.
    How can I retroactively create a recovery partition?  There are no other partitions on the drive (other than the Macintosh HD, of course).
    Thanks.
    Rob

    FIRST, assuming you do not have another Mac of the same model with a working restore, I would suggest using your Lion, mountaint lion or Maverick install to create a bootable system on a flash drive.  You will need a DMG image created with Disk Utility from that stick to recreate the restore partition on your mac.
    Once you create the bootable USB stick, Use it to log in and follow the below process to back up the restore partition.  Then, save the DMG back up anywhere and finish the walk through on your normal operating partition.
    Close Disk Utility if it is open.
    Open Terminal
    Enter the command below
    defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool true
    Now open Disk Utility and pull down the Debug menu
    Click Show Every Partition
    Now, select the Recovery Partition and create a new image.
    NOTE: The Recovery Partition will need to be made in Read Only format if you wish to restore the image normally with disk utility or by software such as Deploy Studio.  If you take an image with Deploy Studio and want it to restore the Recovery Drive normally, you will need to adjust the Work Flow for Image Capture to use the Read Only format.  It will slow things down.  If you dont use the read only format, the .dmg will not scan properly. This is most likely because the recovery drive already hosts compressed files. That said, this guide WILL restore from even a compressed .dmg image.  HERE IS THE WALK THROUGH FOR RESTORING A SCANNED READ ONLY FORMATTED .DMG.
    Copy the Recover HD.DMG image to a flash drive
    The following must be on an Administrator account
    Next, Log on to the admin account of the computer you wish to restore the MLTI Recovery Partition.
    Copy the Recovery HD.DMG from your Flash drive to the HD
    Enter the following command in terminal
    diskutil list
    If there is no partition for the restore drive listed, then use Disk Utility to create a GUID Partition keeping in mind the size of the original restore partition. (19 gigs for the MLTI Version of the restore drive)
    Open Terminal and enter the following command
    sudo asr -noverify -source (PATH FOR DMG IMAGE HERE) -target (PATH FOR RECOVERY HD PARTITION HERE) -erase -noprompt
    NOTES: You must replace the () and everything in between with the respective path. You can simple drag and drop the source (your .dmg) and your target (the drive to be restored) while you are typing in terminal.
    Enter admin password
    In terminal Type the following command
    diskutil list
    note which disk and slice is the restore partition. It should be /dev/disk0s3, but it could vary a bit.
    Now, run the following in terminal
    sudo asr adjust --target /dev/disk0s3 --settype "Apple_Boot"
    REMEMBER: you may need to replace /dev/disk0s3 with your new restore partition's designation.
    Enter Admin Password when prompted
    Restart.
    Don't forget to enter the following terminal command into the machine you took the Recovery HD image from.
    defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool false

  • Prompting for password and username only when using dynamic parameters

    Post Author: Co3023
    CA Forum: Crystal Reports
    How do I stop CR XI prompting for password and username only when using dynamic parameters. When no dynamic parameters are used CR XI isn't prompting for the DB user name and password. The report is run from an application which passes the user name and password. I am using Oracle and the problem is both with the native oracle driver and the ODBC RDO driver.

    Post Author: jehanzeb
    CA Forum: Crystal Reports
    I didnt ask you to change it to static I said I took the parameters totally out of the report. Saved it. Then re-enter the dynamic parameters into the report and it worked for me. That might have worked for you, not sure why you changed it to static.
    Ok I have just created a quick report using dynamic parameters, it didnt ask me for the username password.
    Can you create a sample report - just to test the db? and see if it works? add only 1 or 2 fields in the report, create parameters (dynamic) and see if it works
    why don't you embed the username and password in your application, it won't ask for username password then.

  • Admin username and password not recognized for upgrade

    I'm trying to upgrade a user account on my computer to Yosemite. This is that not the admin account.  My admin username and password are rejected.  It is also rejected when I try to do something such as change the power settings.  If I'm doing this within my admin account the same username and password work just fine.  I have no idea how to fix this.

    One more follow up question. I logged back into my admin account to upgrade to Yosemite.  The software was already downloaded in the user account using the apple ID and PW associated with that account, which is different than the apple ID associated with the admin account. 
    Within my admin account, on the first page of the app store app it shows OSX Yosemite as 'downloaded' and nothing happens when I click that button. 
    The only other option is to click 'learn more' under the OSX Yosemite image. From that page it asks me to sign in to the App store to download Yosemite. The Apple ID box already contains the other Apple ID (not the one I want to use), and there is no option to change that.  All I can do is enter that password.
    I'd like to complete this with my Apple ID but I don't know how to change it.

  • Multiple Network Device Groups when importing to ISE using template

    I have a question about importing a group of network devices into ISE using the template provided. The template only has a single column for Network Device Groups - is there a way to import devices and include more than one NDG? For instance, the NDG's we use are "Device Type" and "Location". I'd like to include both when doing my import and I've tried multiple ways to seperate the two strings within the column (comma's colons, semi-colons, spaces, pipes, tabs, etc), but i always get an error message that "NDG group does not exist". I also tried adding a new column into the template, but that just plain failed to import.
    If there is any way to do this, I would appreciate any advice on how - I have to add about 40 devices per week to our ISE deployment and I'd rather not have to go in and add any parameters manually if it can be helped. Thanks very much!
    Ross
    BTW, we are running ISE ver 1.1.2 in case it is relevant.             

    Yes, you can do it. You have to use the pipe "|" to separate the groups. But please notice you must create the network device groups in advance.
    For example, I have the following groups in my csv file to import a lot of network devices
    Device Type#All Device Types#SWITCHES#375O-X|Location#All Locations#PERU#LIMA
    But as a pre-requisite I have to create the network device groups.
    If you have lots of network device groups, you can mass import them instead of creating them one by one.
    Please rate if it helps

Maybe you are looking for

  • Just outside of my warranty and my Macbook Air is faulty! Help!

    Hi all, Just wanted to know if anyone is or was in the same boat and if there was any options open to me here without forking out for expensive repair costs. Macbook Air purchased November 2010. 11 inch 4 Gig model. Mac OS X 10.6.8. My Problem... (LC

  • Install Failed, many times....

    Well I have tried over 7 times with no luck! So here is the story. 1. Purchased the Family pack of Leopard on Saturday 2. Upgraded my G5 iMac on Sunday it would appear that the install went ok. 3. Tried to upgrade my G4 1.5 GHz with 1.25Gig of ram. A

  • Receiving Mail Sent From Inside A Word Document

    I have a work colleague who is using a Windows environment and sending me MS Word documents by emailing from inside the Word document. When the email arrives in Mail the Word document shows as an attachment with the name winmail.dat. I have not been

  • RFC not getting data from XI

    hi, in my scenario, XI is passing the data back to RFC, but in my program where i call the RFC, the data is not received. what could be the issue. CALL FUNCTION 'ZFFF' DESTINATION 'XI' TABLES        INP   = aaa        OUT1 = bbb        OUT2  = ccc. C

  • Support of JSP in Oracle 8i

    Dear all friends, now I am using Sun Java Web server for serving my JSP's but I have heared that Oracle 8i support JSP .Could you please inform me that whether Oracle 8.1.5. has webserver itself and if it does ,does it support JSP. any suggestion wou