aix

Find files in created between a date range

我们两清 提交于 2019-12-03 01:10:43
问题 I use AIX via telnet here at work, and I'd like to know how to find files in a specific folder between a date range. For example: I want to find all files in folder X that were created between 01-Aug-13 and 31-Aug-13. Observations: The touch trick (where you create two empty files to use the -newer option) does not work for me, once the user roles that I have on the server does not allow me to create files. I need to find between specific dates, not days (like: files that were created more

AIX 系统CPU消耗过高诊断过程

匿名 (未验证) 提交于 2019-12-03 00:33:02
通过系统的topas 查询消耗过高的进程: CPU User% Kern% Wait% Idle% Reads 4221 Rawin 0 ALL 73.3 4.0 0.0 22.7 Writes 1286 Ttyout 1693 Forks 5 Igets 0 Network KBPS I -Pack O -Pack KB- In KB- Out Execs 5 Namei 593 Total 26.2 K 15.0 K 14.1 K 13.3 K 12.9 K Runqueue 41.5 Dirblk 0 Waitqueue 0.0 Disk Busy% KBPS TPS KB- Read KB-Writ MEMORY Total 0.3 15.1 K 1640.0 2744.7 12.4 K PAGING Real ,MB 163840 Faults 756 % Comp 32 FileSystem KBPS TPS KB- Read KB-Writ Steals 0 % Noncomp 4 Total 1.4 K 2.8 K 1.3 K 0.7 PgspIn 0 % Client 4 PgspOut 0 Name PID CPU% PgSp Owner PageIn 0 PAGING SPACE oracle 11534438 54.2 11.3 opcore PageOut

PowerVM的AIX的安装 (1) nim服务器的安装和镜像创建(备份创建)

匿名 (未验证) 提交于 2019-12-03 00:22:01
AIX可以通过CD安装,但比较麻烦,需要手动的步骤比较多。也可以通过nim安装,可以做到自动化安装。 云管为PowerVM的管理可以使用nim作为镜像的服务器,先生成mksysb和spot作为powervm的镜像。通过镜像可以做powervm的安装。 先安装nim服务器 先手动创建一个powervm有aix系统,mount CD(aix系统安装盘) 1. nim 安装 installp -acXYd /dev/cd0 bos.sysmgt.nim.master bos.sysmgt.nim.spot ssh 安装(ssh容易访问) installp -acXYd /dev/cd0 openssl.base openssh.base startsrc -s sshd mklv -y nim-spot -t jfs2 rootvg 400 crfs -v jfs2 -d nim-spot -m /nim/spot mount /nim/spot mklv -y nim-mksysb -t jfs2 rootvg 200 crfs -v jfs2 -d nim-mksysb -m /nim/mksysb mount /nim/mksysb mklv -y nim-resource -t jfs2 rootvg 40 crfs -v jfs2 -d nim-resource -m /nim

AIX扩容文件系统

匿名 (未验证) 提交于 2019-12-03 00:22:01
若vg剩余容量不足: 2) 扫盘 3) vg扩容,将新加的pv添加到vg(如果lspv后看到配置了VeritasVolumes则直接联系数据库老师扩容) 5) 检验结果 ==================== 故障解决 VG容量不足(已向VG添加PV) chfs增加的容量减少一点 逻辑卷大小超出限制 0516-787 extendlv: Maximum allocation for logical volume lvgpsdb is 32768. 物理卷大小超出限制 物理卷未找到(存储上的磁盘已被拔出) 0516-304 lquerypv: Unable to find device id 00f7dab956cc7d160000000000000000 in the Device Configuration Database. 0516-788 extendlv: Unable to extend logical volume. 1.删除拔出的PV 2.重新在存储端加盘 3.将新加pv添加到vg 文章来源: AIX扩容文件系统

AIX创建文件系统

匿名 (未验证) 提交于 2019-12-02 23:43:01
2019独角兽企业重金招聘Python工程师标准>>> 1. 扫描硬件 cfgmgr -v 2. 查看磁盘 可以看出hdisk3就是新增磁盘 lsdev -Cc disk hdisk0 Available Virtual SCSI Disk Drive hdisk1 Available Virtual SCSI Disk Drive hdisk2 Available Virtual SCSI Disk Drive hdisk3 Available C5-T1-01 Huawei S5600T FC Disk Drive 3. 查看物理卷 lspv hdisk0 000f3c5bda5d50d4 rootvg active hdisk1 000f3c5bd4136a2d dbvg active hdisk2 000f3c5b5f3b98ce datavg active hdisk3 none none none 4. 创建VG smitty mkvg 选择 Add an Original Volume Group ,填写内容如下然后回车 Add an Original Volume Group Type or select values in entity fields. Press Enter AFTER making all desired changes. [Entry

AIX 与Linux 中crontab 介绍

匿名 (未验证) 提交于 2019-12-02 21:59:42
AIX 与Linux 中crontab 用法相似,先介绍Linux 中的Crontab 用法,再后介绍AIX 与Linux 的不同之处。 一、Crontab 介绍 crontab命令的功能是在一定的时间间隔调度一些命令的执行。 1.1 /etc/crontab 文件 在/etc目录下有一个crontab文件,这里存放有系统运行的一些调度程序。每个用户可以建立自己的调度crontab。 如: [ root@dave ~]# cat /etc/crontab SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root HOME=/ # run-parts 01 * * * * root run-parts /etc/cron.hourly 02 4 * * * root run-parts /etc/cron.daily 22 4 * * 0 root run-parts /etc/cron.weekly 42 4 1 * * root run-parts /etc/cron.monthly 1.2 /etc/cron.deny 和 /etc/cron.allow 文件 /etc/cron.deny 表示不能使用crontab 命令的用户 /etc/cron.allow 表示能使用crontab的用户。

Can google web toolkit(GWT ) used on AIX?

回眸只為那壹抹淺笑 提交于 2019-12-02 21:40:42
问题 Is AIX support GWT app. If no then do we have any other app like GWT which can run on AIX? 回答1: The programs generated by GWT are web applications (GWT makes it possible to develop the frontend, i.e. the user interface for a web application, in Java), so you can use a GWT app anywhere. The developer tools for creating a GWT app are Eclipse, an Eclipse plugin, a Java SDK, and some browser add-ons for testing. I don't know if the add-ons for testing work on AIX, but everything else should. The

ORA-00060: deadlock detected while waiting for resource

流过昼夜 提交于 2019-12-02 19:05:17
I have a series of scripts running in parallel as a nohup on an AIX server hosting oracle 10g. These scripts are written by somebody else and are meant to be executed concurrently. All the scripts are performing updates on a table. I am getting the error, ORA-00060: deadlock detected while waiting for resource As I googled for this, I found, http://www.dba-oracle.com/t_deadly_perpetual_embrace_locks.htm Even though the scripts are performing updation on the same table concurrently, they are performing updates on different records of the table determined by the WHERE clause with no overlaps of

IBM-AIX System time

本秂侑毒 提交于 2019-12-02 15:52:42
问题 I heard that after JDK 1.3.1(HP-UX), JVM use its own time after first start. Is IBM the same? Does IBM use JVM internal time like HP or use OS time? Please help me thank you 来源: https://stackoverflow.com/questions/54319003/ibm-aix-system-time

Find files in created between a date range

喜你入骨 提交于 2019-12-02 14:31:15
I use AIX via telnet here at work, and I'd like to know how to find files in a specific folder between a date range. For example: I want to find all files in folder X that were created between 01-Aug-13 and 31-Aug-13. Observations: The touch trick (where you create two empty files to use the -newer option) does not work for me, once the user roles that I have on the server does not allow me to create files. I need to find between specific dates, not days (like: files that were created more than 30 days ago, etc...) You can use the below to find what you need. Find files older than a specific