When the system disk is damaged, follow this procedure:
Replace the Physical Disk in the Server:
Reboot and Boot from SERVERware Installation Media:
in this step
Clean Up Unused System Pools:
Access the Controller and MySQL:
mysql serverware
.
select * from sw_storage_pools;
to list all storage pools available in the GUI.# select * from sw_storage_pools; +----+--------+---------+-------------+--------------+-------+-------+-----------+--------+-------------------+--------+----------+--------------+-------------+--------------+---------------+ | id | net_id | host_id | name | storage_type | size | used | available | health | status | usedds | usedsnap | write_errors | read_errors | cksum_errors | fragmentation | +----+--------+---------+-------------+--------------+-------+-------+-----------+--------+-------------------+--------+----------+--------------+-------------+--------------+---------------+ | 1 | 1 | 1 | NETSTOR | NETWORK | 333.0 | 5.72 | 316.87 | ONLINE | NON_NATIVE_ASHIFT | 4.69 | 1.02 | 0 | 0 | 0 | 0 | | 2 | 1 | 1 | SYSTEM-3b29 | | 58.5 | 19.05 | 37.62 | ONLINE | FEAT_DISABLED | 14.61 | 0.00 | 0 | 0 | 0 | 1 | | 3 | 1 | 1 | SYSTEM-bf87 | | 58.5 | 19.04 | 37.64 | CHKFAILED | FEAT_DISABLED | 13.83 | 0.00 | 0 | 0 | 0 | 1 | +----+--------+---------+-------------+--------------+-------+-------+-----------+--------+-------------------+--------+----------+--------------+-------------+--------------+---------------+ 3 rows in set (0.00 sec)
delete from sw_storage_pools where id=3;
(replace id=3
with the appropriate ID) to remove the old pool.