Sponsored Content
Operating Systems AIX Migrating LUNs to new storage array Post 303036073 by RecoveryOne on Thursday 13th of June 2019 03:09:38 PM
Old 06-13-2019
Take a peek at this:
IBM Knowledge Center


Sorry, I don't have much time to go into depth on this one right now, but yes you can export the vg and import the vg on a new system.
example:
NodeA

  1. unmount all FS
  2. varyoffvg <vgname>
  3. exportvg <vgname>
  4. rmdev -dl hdiskX <where the vg resided>
NodeB
  1. Assuming everything is zoned for the lun.
  2. cfgmgr
  3. lspv to find your new hdisk
  4. importvg -y <vgname> hdiskX
  5. mount the filesystems
  6. change characteristics as needed for the VG and FS
Should be noted that importvg creates file mount points and entries in the /etc/filesystems
 

6 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Storage array question

We just purchased a MOD30 disk array strage system. We have 15 drives and 2 hot spares. We're running a database app with 8 data sets. I'm trying to get the best i/o speed out of my disk configuration. Right now I have 3 raid5 arrays setup. This seems to offer the same performance as having the... (1 Reply)
Discussion started by: ncmurf00
1 Replies

2. Filesystems, Disks and Memory

how can I monitoring the LUNs in HP storage

Hi, How can i monitoring the LUN in HP Storage with korn shells? I would like to have a shell can monitoring the LUN, VGs, lvols and raw devices. Jesus (3 Replies)
Discussion started by: jgutierrez29
3 Replies

3. Solaris

storage array simulator

hi i haven't much experience in solaris. I would like to know about storage. how to configure,how it is working etc....can i get any simulator for doing these work? plaese send me the link . please help me advance thanks to all (2 Replies)
Discussion started by: sijocg
2 Replies

4. HP-UX

HP Storage Array

hi I need to check status and configure HP Storage Array device. HP Storageworks P2000 Please suggest (0 Replies)
Discussion started by: anand87
0 Replies

5. UNIX for Advanced & Expert Users

VxVM breaking mirror for migrating storage

We are in the process of migrating storage from one array to another. I know the commands I would use in LVM but I am not very familiar with VxVM. The goal is to attach the new LUNs from the new array and add them to the disk group. Then mirror the data online to these new LUNs using VxVM... (4 Replies)
Discussion started by: keelba
4 Replies

6. Red Hat

Migrating an Oracle database storage - REDHAT4

e have a RHEL4 server with an Oracle 10 ( RAC ) are migrating storage bank records. The copy is made by the storage they make a copy of the level of disk all blocks are copied and the file permissions. Problems we had Initially the Cluster service was not rising due to absence of OCR disks... (0 Replies)
Discussion started by: fausto.ncc1701
0 Replies
MYSQLND_QC_SET_STORAGE_HANDLER(3)					 1					 MYSQLND_QC_SET_STORAGE_HANDLER(3)

mysqlnd_qc_set_storage_handler - Change current storage handler

SYNOPSIS
bool mysqlnd_qc_set_storage_handler (string $handler) DESCRIPTION
Sets the storage handler used by the query cache. A list of available storage handler can be obtained from mysqlnd_qc_get_available_han- dlers(3). Which storage are available depends on the compile time configuration of the query cache plugin. The default storage handler is always available. All other storage handler must be enabled explicitly when building the extension. PARAMETERS
o $handler - Handler can be of type string representing the name of a built-in storage handler or an object of type mysqlnd_qc_han- dler_default. The names of the built-in storage handler are default, APC, MEMCACHE, sqlite. RETURN VALUES
Returns TRUE on success or FALSE on failure. If changing the storage handler fails a catchable fatal error will be thrown. The query cache cannot operate if the previous storage han- dler has been shutdown but no new storage handler has been installed. EXAMPLES
Example #1 mysqlnd_qc_set_storage_handler(3) example The example shows the output from the built-in default storage handler. Other storage handler may report different data. <?php var_dump(mysqlnd_qc_set_storage_handler("memcache")); if (true === mysqlnd_qc_set_storage_handler("default")) printf("Default storage handler activated"); /* Catchable fatal error */ var_dump(mysqlnd_qc_set_storage_handler("unknown")); ?> The above examples will output: bool(true) Default storage handler activated Catchable fatal error: mysqlnd_qc_set_storage_handler(): Unknown handler 'unknown' in (file) on line (line) SEE ALSO
Installation, mysqlnd_qc_get_available_handlers(3). PHP Documentation Group MYSQLND_QC_SET_STORAGE_HANDLER(3)
All times are GMT -4. The time now is 02:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy