http://www.dbaleet.org/how_to_modify_the_password_of_exadata
Exadata上的密码可谓是纷繁复杂,名目繁多。总的来说可以分为两类,一类是数据库的密码,另外一类则是操作系统用户的密码。通常在安装完Exadata以后,客户会收到一份初始的密码表,上面列出了所有以后可能用到的各类密码。例如:
DB节点: The root password for all database servers is welcome1 The oracle password has been set to welcome All oracle database passwords are welcome The ASMSNMP password is welcome1 The ILOM username and password is root/welcome1 Cell节点: The root password for all storage servers is welcome1 The celladmin password for all storage servers is welcome The ILOM username and password is root/welcome1 PDU: The PDUs username/password of admin/admin KVM: The KVM username/password of Admin/welcome1 infiniband交换机: The infiniband switch username/password of root/welcome1 思科以太网交换机: The Cisco Ethernet Switch username/password of root/welcome1
要知道默认密码很多人都是知道的, 万一被心怀不轨的人利用则后果可能很严重。如果不对其进行修改,则很会加大系统的安全风险。当然相信很少有客户不对其默认的密码进行修改。以下简要介绍如何修改Exadata操作系统的密码。
DB节点:
OS用户名: root, grid, oracle
修改方式:使用root登录到主机:然后在命令提示符下输入:
passwd 用户名, 然后按照提示输入新的密码;
例如修改默认root的密码:
#passwd root
如果所有的DB节点使用相同的密码则可以使用如下命令完成:
#PASSWORD=your_new_password #dcli -l root -g ~/dbs_group "echo ${PASSWORD} | passwd --stdin root"
Cell节点:
OS用户名: root, celladmin, cellmonitor
修改方式与DB节点一致。如果所有的Cell节点使用相同的密码, 则同样可以使用如下命令完成:
#PASSWORD=your_new_password #dcli -l root -g ~/cell_group "echo ${PASSWORD} | passwd --stdin root"
ILOM:
使用ILOM登录
# ssh -l ilom-admin <node-name> -> set /SP/users/root password
KVM:
登录KVM,在User Accounts选择Local;
在 “Users” 点击 “Admin” 然后输入密码;点击“Save”保存。
infiniband交换机:
用户名: root, ilom-admin, ilom-user, ilom-operator, and nm2user
使用ssh登录,使用version查看当前的版本,如果是1.3.*, 则需要使用
ILOM来修改密码,规避bug 13494021
# ssh -l ilom-admin <switch-name> # set /SP/users/<username> password
在此以后的版本可以使用操作系统命令直接修改:
#passwd <username>
思科以太网交换机:
使用telnet登录到思科交换机:
- Switch>enable Password: Switch#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#enable password <new password> Switch(config)#enable secret <new password> The enable secret you have chosen is the same as your enable password. This is not recommended. Re-enter the enable secret. Switch(config)#end Switch#write memory
PDU:
用户名:admin
在浏览器中输入pdu的ip地址:
点击Net Configuration并使用admin用户登录;
在页面底部找到Admin/User模块;
在Admin/User输入用户名和密码以及是否为管理员用户;
点击提交,保存。
以上
Comment