zoukankan      html  css  js  c++  java
  • Netscaler重置密码的方法

    Netscaler重置密码的方法

    参考 https://support.citrix.com/article/CTX109006

    来源 http://blog.51cto.com/caojin/1898401

      有时候我们会碰到忘记Netscaler的密码,或接手别人的设备而不知道密码的情况。在这种情况下能看到但进不去,那感觉真是酸爽!如何初始化Netscaler的密码,及时启用手上的设备就很重要了。

    用console线连接到Netscaler,按启动按钮后会看到以下内容,按照如下提示操作即可

    1.       Attach a console cable to the Serial Console (9600 baud, 8 bits, 1 stop bit, No parity) of the NetScaler appliance.

    2.       Restart the NetScaler appliance.

    3.       Press any of the following keys, as prompted:

    Press Spacebar when the following message is displayed:

    Hit [Enter] to boot immediately, or any other key for command prompt Booting [kernel] in 10 seconds

    Press Ctrl and C keys simultaneously when the following message is displayed:

    Press [Ctrl-C] for command prompt, or any other key to boot immediately.

    Booting [kernel] in 2 seconds...

    4.       To start the appliance kernel on a single user mode, enter the following command:

    boot –s

    Note: If boot -s does not work, then try reboot -- -s and appliance will reboot in single user mode.

    5.       Press Enter when the following message is displayed:

    Enter full pathname of shell or RETURN for /bin/sh:

    Note: Notice that the prompt of the appliance changes to u@h$.

    6.       Run the following command to check the disk consistency:

    u@h$ /sbin/fsck /dev/ad0s1a(此命令一定要先执行,否则不能挂载/flash)

    Note: Refer to the Knowledge Center article CTX121853 – Device Names Assigned to Hard Disk in Various Models of the Citrix NetScaler Appliance to verify the device name assigned to the hard disk of the appliance model and replace ad0s1a in the preceding command with the appropriate device name.

    7.       Run the following command to display the mounted partitions:

    df

    8.       Run the following command to mount the flash drive:

    u@h$ /sbin/mount /dev/ad0s1a /flash( 一定要把flash挂上,否则看不到ns.conf)

    If the preceding command fails to mount the flash drive, then run the following command to create the flash directory and then run the preceding command again to mount the drive:

    u@h$ mkdir /flash(如果有/flash可以不执行这步)

    9.       Run the following command to change to the nsconfig directory:

    u@h$ cd /flash/nsconfig

    10.     Run the following set of commands to rewrite the ns.conf file and remove the set of system commands defaulting to the nsroot user:

    a. Run the following command to create a new configuration file that does not have commands defaulting to the nsroot user:

    u@h$ grep –v “set system user nsroot” ns.conf > new.conf(提取除nsroot用户以外的其他配置到新文件)

    b. Run a command similar to the following command to make a backup of the existing configuration file:

    u@h$ mv ns.conf old.ns.conf(备份原来的配置)

    c. Run the following command to rename the new.conf file to ns.conf:

    u@h$ mv new.conf ns.conf(用没有nsroot的配置启动)

    11.     Run the following command to restart the appliance:

    reboot

    12.     Log in to the appliance by using the default nsroot user credentials.

    此时nsroot的密码为初始化的密码,直接输入nsroot登陆即可

    13.     Run the following command to reset the nsroot user password of your choice:

    set system user nsroot <New_Password>重新输入密码

    ================= End

  • 相关阅读:
    macbook如何清理磁盘中的“容器中的其他宗卷”
    Maven本地仓库与远程仓库配置
    查看MySQL库、表所占磁盘空间大小
    数据库操作
    Mac Mysql初始密码重置
    Vue 性能优化经验总结
    【读书笔记】对象创建摘录
    【读书笔记】 函数柯里化
    js实现仿windows文件按名称排序
    本来想偷懒的今天,想了想,还是写一篇吧,前端登录界面,用的BOOTSTRAP
  • 原文地址:https://www.cnblogs.com/lsgxeva/p/8011784.html
Copyright © 2011-2022 走看看