HP UNIX 系统管理 入门.doc
《HP UNIX 系统管理 入门.doc》由会员分享,可在线阅读,更多相关《HP UNIX 系统管理 入门.doc(7页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、HP UNIX系统管理笔记Important WebsiteHPs product website 进入后选择大型企业服务器按系统分类或按处理器分类找技术资料HPs IT Resource Center 可进入在线问答,英语(HP-UX);下载补丁HPs documentation website HPs software download website HP Education Services Unix系统基础Unix系统原理概述、SAM和SMH的介绍和使用1、 Launching the SAM GUI登录进入图形化界面(use SAM/SMH)只有系统管理员可以登录,用户名root#
2、echo SDISPLAN 开启虚拟终端#sam &打开SAM(5134课程3章CDE环境)并将进程切换至后台(14章)如直接输入SAM在字符界面用键盘选择操作2、V3版本中图形化系统管理Step1: #smhstartconfig a on b off 修改配置,-a on表示开启atuostart urls mode现用现调;-b off表示关闭start on boot modeStep2: #firefox :2301/ 调用浏览器或 #smhstartconfig a off b on#firefox https:/sername:23812381为加密端口,而2301为不加密端口3
3、、SMH可以自定义起始菜单,从tools里选取添加或卸载(在setting里add或remove)System Log Viewer: 查看过去登录的用户名last 查看过去登录但没成功的用户名last b用户组管理(RBAC):存在Administrator, Operator, User等不同的用户对象,分别拥有不同权限。4、SMH and SIM Integration Possibilities 集成化管理软件,SIM用WEB方式进行管理。User and Group Contet:每个用户至少要属于一个组,每个用户有且只有一个主要的组(主组);可以有多个属组及附属组。5、创建和管理用
4、户账户、文件系统高级原理1、用户账户What defines a user Account (with三个重要文件):1) PSWD:在/etc/passwd中,记录用户信息1 2 3 4 5 6 7Root: qmA8s.,8a3e: 0: 3: : /: /sbin/sh分配给系统自动调用的User1: adok60AazRgXU: 1001: 1001: 111-1111: /home/user1: /usr/bin/shUsername:Password: UID GID Comments Home Director Shell 用户ID组ID注释登录主目录 用户登录后的第一个执行程序
5、ROOT的UID为0(0100都是由系统自动分配的,管理员只能从101开始分配)Use /usr/sbin/wipw to edit /etc /passwdUse /usr/sbin/pwck to check the /etc/passwd file syntax核对语法,但是重复的UID查不出来2) /etc/shadow (optional可选的:strongly recommended to enable)r-只读User1: AdOK60XU: 12269:70: 140: 70: 35: : Encrypted Password Last Changed min days max
6、 day warn day Inactive day unused 最后一次更改时间,距1970-1-1有多少天Install the shadowPassword product (only necessary in 11i.V1)Use /usr/sbin/pwck to verify your current /etc/passwd file syntax核实语法Use /usr/sbin/pwconv to move passwords from /etc/passwd to /etc/shadow 更改至shadowUse /usr/sbin/pwunconv to move pas
7、swords back to /etc/password回改至etc的passwd3) /etc/group 默认只记录附属组Other: : 1: root,daemon,uucp,syncGroup GID MembersUse /usr/bin/vi to edit /etc/groupUse /usr/sbin/grpck to check the /etc/group file syntax2、 添加用户Step1:#useradd -o #allow a duplicate UID(不推荐,允许重复UID)-u 101 #define the UID(不推荐,定义用户ID为101)
8、-g users #define the primary group-G class,training #define secondary groups-c “student user” #define the comment field(添加注释信息)-m d /home/user1 #make a home directory for the user(自动添加登录主目录)-d /home/user1 表示自己指定主目录,可不用User-s /usr/bin/sh #define the default shell(定义)-e 1/2/09 #define an account expir
9、ation date(设置账号的生存日期)-p fnnmD.DGyptLU #specify an encrypted password(写在一个文件中)-t /etc/default/useradd #define the username(把一定的信息写进useradd模板,直接调用)User1;Step2:设置口令#passwd user1 #interactively specify a password or #passwd d user1 #set a null password(不推荐)#passwd f user1 #force a password change at fir
10、st login(强制首次登录改口令)口令设置三原则:用户口令不少于6位,至少包含2个英文字符,至少包含1个非英文字符(注意:password不加用户名是修改系统管理员的口令)实例:添加用户test01、test02Useradd m s /usr/bin/sh test01Passwd test01回车后输入口令Useradd g abc G users m s /usr/bin/sh test02 设置用户的主组与附属组3、 更改用户信息#usermod l user01 user1 #change the users username#usermod o u g G c m d s e
11、p #passwd user1更改用户密码4、阻止用户登录1)#passwd l user deactivate a user account锁定用户口令,用户永远不能再登录#passwd user1 reactivate a user account解锁2)#rm rf /home/user1 删除用户登录主目录3)#find / -user user1 type f exec rm i + 把所有属于user1(-user user1)的普通文件(type f)通篇搜出(find /)执行(exec +)删除(rm i) #find / -user user1 type d exec rm
12、dir + 把目录通篇删除4)#find / -user user1 exec chown user2 +把属于user1的文件全给user25、删除用户#userdel user1 Delete a user account but leave the users file untouched#userdel r user1 Delete a user account and remove the users home directory#find / -user user1 .#find / -nouser exec ll d + Find 无组无用户的文件ll为ls l全部列出list#
13、find / -nogroup exec ll d +6、Configuring Password Aging#passwd n 7 x 70 w 14 user1 #enable passwd aging for a user,数据必须是7的倍数(最小天等)-n最小时间x最大时间w警告时间#passwd s user1#check a users password status核实用户的时间设置#passwd sa #check the status of all users当把用户的min day设置得比max day还大时,为固化口令#vi /etc/default/security 设
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- HP UNIX 系统管理 入门
限制150内