Removing page space


 
Thread Tools Search this Thread
Operating Systems AIX Removing page space
# 1  
Old 12-23-2005
Question Removing page space

I having problem removing a page space....

1. When I list the page spaces available in the system, I am getting the following messages


0516-310 : Unable to find attribute state in the Device
Configuration Database. Execute synclvodm to attempt to
correct the database.
0516-010 : Volume group must be varied on; use varyonvg command.
Page Space Physical Volume Volume Group Size %Used Active Auto Type
paging01 vpath0 vgSAN-fclab48 1024MB 4 yes yes lv
hd6 hdisk0 rootvg 512MB 18 yes yes lv

2. Top two errors are corresponds to page space "pagelv00". When I tried to remove this pagelv00, I get the following message:


0516-306 getlvodm: Unable to find volume group old_rootvg in the Device
Configuration Database.
0516-912 rmlv: Unable to remove logical volume pagelv00.
rmps: Cannot remove paging space pagelv00.

3. Per above message, this logical volume (page space) is associated with "old_rootvg" volume group. But this volume group does not exist. Also I was not able to create one with this volume group name "old_rootvg" in order to remove the page space "pagelv00".

4. Even I ran varyonvg command on old_rootvg got an unknown error.

My objective is to remove "pagelv00" logical volume. Please suggest me on how I can achive this.

Appreciate your help.

Thanks
Nagesh Rachakonda.
# 2  
Old 12-26-2005
MySQL Hi

i think u have not properly removed the volume group ...
1.check whether the pagaging space entry in /etc/swapspaces.........

2.run the topas command and see is there any pagaging activity is going on ...
3.check whether odm contain any logical volume(paging space) information ...

4.how did u remove the harddisk?
if u r not properly followed the steps then you have to updated the ODM after removing the hdisk?


dare AIX
# 3  
Old 01-02-2006
aixteam is correct in his assumption you "didn't properly remove the volume group": "old_rootvg" looks like a leftover from an alternate disk migration, where a mirrored rootvg is split and one of the mirrors is migrated to the new OS version while keeping the other mirror as a fallback.

This "old_rootvg" (as the system renames it) can (and should!) only be removed by "alt_disk_install -X", as stated in the README accompanying the bos.rte.alt_disk_install fileset.

bakunin
# 4  
Old 01-03-2006
if u are unable to remove the old_rootvg usind alt_disk_install -X command, then you have to manually remove the entries from the odm only... but be careful not to tamper with the odm....

also once you are sure all entries from the odm about the page space is removed then, remove its corresp fle in /dev directory....

all the steps r manual, so be cautious
# 5  
Old 01-05-2006
pgspace

if you use alt_disk_install option and not use export or import rootvg command boot from correctly hdisk (not from alternative installation) and check /etc/filesystems and /etc/swapspaces. If you use exportvg or importvg rootvg - you must boot from not alternative installation (check bootlist and use bootinfo), restore file: /etc/filesystems, /etc/swapspaces and folder witch subfolders /etc/objrepos from backup's. If you don't have any backup ... hmmm ;( - Mass of fun waits you konfiguration ODM, synchronization ODM <-> disk descriptors and VG definitions.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Removing pipe and space in a file

Hi , I have a file which is like below. The file record is separated by | as delimiter. I want to remove the first and last | in the file and also I want to remove the spaces in the columns. Original File |3464114 |10 | REPORT|CA| 1|0|4825400|0|213167| 939396524| Expected:... (3 Replies)
Discussion started by: arunkumar_mca
3 Replies

2. Shell Programming and Scripting

Removing blank space using VI

Hi, How to remove blank spaces using vi (I am using AIX)? #cat siva.txt AAA BBB CCC DDD EEE FFF Need to remove space between 2 columns. Regards, Siva (7 Replies)
Discussion started by: ksgnathan
7 Replies

3. Shell Programming and Scripting

Removing white space in awk

Hi How to remove white space from this input:|blue | 1| |green| 4| |black| 2| I like to search for green and get 4not 4 How to modify this to work correct:awk -F"|" '/green/ {print $3} (7 Replies)
Discussion started by: Jotne
7 Replies

4. Shell Programming and Scripting

Removing blank space in file

TT0000013101257 | JCJMMUJMMUB018 ... (0 Replies)
Discussion started by: sususa
0 Replies

5. AIX

AIX 6.1: Releasing Memory and Page Space

Hi everyone, i have a question about the Memory Management in AIX 6.1. I have - 128 GB RAM and - 70 GB Page Space. The application i am running on this machine is doing some operations in perl. These are done only once a day and uses both memory and paging space. My problem... (1 Reply)
Discussion started by: Haichao
1 Replies

6. AIX

Increase for the Page space

Guy's This is our page space , i want some information about page space and I want the good way to how to increase the page space and what's the recommended page space that need to be configured Page Space Physical Volume Volume Group Size %Used Active Auto Type Chksum hd6 hdisk0... (8 Replies)
Discussion started by: Mr.AIX
8 Replies

7. Shell Programming and Scripting

removing a space

Hi I want to remove a space for column 6. basically column 6 in my file looks like this: tig 2 tig 9 tig 39 tig 300 I want the output to look like this: tig2 tig9 tig39 tig300 How do I remove that space just for column 6. thanks (5 Replies)
Discussion started by: phil_heath
5 Replies

8. Shell Programming and Scripting

removing space

US76132M1027|NASDAQ Capital Market|NASDAQ Capital Hi I want to remove the leading space ,i have a file full of lines with this space pls help me (6 Replies)
Discussion started by: surenz298
6 Replies

9. Shell Programming and Scripting

Removing Space at the end of file

Hi.... I have a situation...I have a data file...that has space(an extra row with no data) at the end of file. I am trying to remove that spaces only if the file has a space at the end of file and if there is no space I don't want to do anything. Can you please help me in this regards. ... (4 Replies)
Discussion started by: rkumar28
4 Replies

10. Shell Programming and Scripting

re: removing trailing space from lines

Not sure why this thread was closed without any explanation, but you can do what you're asking with sed 's/]*$//g' < sourceFile > destFile (1 Reply)
Discussion started by: oombera
1 Replies
Login or Register to Ask a Question