AIX常見問題整理(二)

anycall2010發表於2008-06-26

1、如果想要立刻斷掉一個已經login的使用者?

可使用命令 fuser -k <使用者的主目錄>;

如:fuser -k /home/guest

 

2、什麼版本的Oracle資料庫支援AIX 5.1

8.1.7 32-bit  Yes Yes

  now (Production) now (Production)

 

8.1.7 64-bit Yes  

  now (Production)  

     

9.0.1 64-bit Yes Yes

  now (Production) now (Developer's Release)

     

9.2 64-bit  Yes Yes

  now (Production) now (Production)

     

3、如何監控裸裝置I/O?

sar命令中的“-b”選項可以用於監控裸裝置I/O。裸裝置一般用於存放資料庫資料。

# sar -b 1 3

18:16:30 bread/s  lread/s  %rcache  bwrit/s  lwrit/s  %wcache  pread/s  pwrit/s

18:16:31  0 0 0 0 0 0 0 0

18:16:32  0 0 0 0 0 0 0 0

18:16:33  0 0 0 0 0 0 0 0

                

Average  0 0 0 0 0 0 0 0

其中bread/s bwrit/s顯示了塊裸裝置(block raw device)I/O操作的數目。pread/s pwrit/s顯示了字元裸裝置(character raw device)I/O操作的數目

 

4、在AIX上安裝RPM格式軟體包

1.Linux Application Toolbox CD安裝Redhat Package Manager - rpm.rte

2.安裝RPM格式軟體

#rpm -ivh fileset_name

3.檢查按裝結果

#rpm -q fileset_name

 

5、如何拒絕某些使用者的ftp訪問?

編輯 /etc/ftpusers

新增需要拒絕的使用者,每使用者一行 For example:

#more /etc/ftpusers

當嘗試 ftp 登入時,系統報錯:

Name (localhost:root): ql

530 User ql access denied.

Login failed

 

6、如何檢視某使用者共啟動了多少程式?

#ps -ef|grep username|wc -l

 

7/tmp檔案系統已滿,如何找到哪些檔案過大,並釋放空間

例如:哪些檔案大於5M位元組.

#cd /tmp

#find . -size +10000 -exec ls -l {} \;

備註:

刪除這些過大檔案時,請確認其無用

 

8、如何在圖形登入和命令列登入方式間切換?

#/usr/dt/bin/dtconfig -e 啟用圖形登入方式

#/usr/dt/bin/dtconfig -d 啟用命令列登入方式

 

9、在移植安裝(Migration installation)中都有那些檔案和資料保留下來?

 

作業系統使用移植安裝(Migration installation)的方式升級AIX版本,例如: AIX 3.2, AIX 4.1, AIX 4.2, 或者 AIX 4.3 AIX 5L 5.1 。 除了/tmp目錄將被覆蓋外,此方式將保留所有檔案系統,包括根(root)卷組的資料, 邏輯卷資料和系統配置檔案。移值安裝(Migration installation)的方式在AIX 3.2,AIX 4.1 AIX 4.2 的機器上是預設的安裝方式。

 

10、如何阻止某些使用者遠端登入,telnet,rlogin?

/etc/security/user

更改需要限制的使用者屬性 rlogin = false

當嘗試遠端登入時,系統報錯:Remote logins are not allowed for this account

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8334342/viewspace-366051/,如需轉載,請註明出處,否則將追究法律責任。

相關文章