Sponsored Content
Full Discussion: AIX Servers Ugrading to 6.1
Operating Systems AIX AIX Servers Ugrading to 6.1 Post 302423969 by shiniraz on Sunday 23rd of May 2010 11:29:47 PM
Old 05-24-2010
Hello Tahniet.
- Before Upgrading I must backup the data, right?
- Yes. Backup using #smitty savevg or VERITAS (depending on your environment)

- So during the upgrading, the applications of this AIX Box will be accessible to the Apps users or not?
- No. Application need to be stopped as the upgrading will be done in SMS mode.

- how do I notify to Apps User that the server will be upgrading in one hour or so.
- Doesn't your environment got CHANGE Committee to broadcast to user before you perform this activity? This is a crucial steps as users need to be notified before any major activity.

My advice, please study more before you proceed. Based on your question i think your'e not ready to perform this kinda activity. Maybe you can ask for your vendor to support.

Btw, here's HOW TO manual for you. Please study.

Preparation before upgrading from 5.3 to 6.1:
1. Run Pre-Migration script to check if your 5.3 server ready to be upgraded tp 6.1:
- insert 6.1 CD to your server. Mount it i.e mount point is /cdrom
- #cd /cdrom/usr/lpp/bos
- copy pre_migration to /tmp and run it -> #./pre_migration
- All output will be saved in /home/pre_migration.yymmddhhmmss directory
- If there's any pre-requisite to be met, settle it first.

2. Check errpt. Fix the problem first(if any)
- #errpt | pg or errpt -a | pg

3. Check if any filesets were missing. #lppchk -v

4. Current boot disk setup.
- #lslv -m hd5
- #bosboot -ad <hdisk output from above cmd>
- #bosboot -ad /dev/ipldevice

5. If all goes well, then :
- perform mksysb backup aka OS backup.
- perform data backup either using #smitty savevg or using Veritas etc.

6. Reboot the server -> Go into SMS mode -> Boot from CD :
-> Change Show Installation Setting and Install
-> (1) System Setting : Select "Migration" for Method of Installation (this step is crucial, make sure u select MIGRATION or else all your current OS setup will be lost)
-> (2) Make sure you select the rootvg disk(s).
-> Done. Wait for the update process to complete.


Thanks
Fadzli
Malaysia
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Fax Servers for Linux/AIX

At the company where I work, use a product called VSI-FAX. It works nicely, but the maintenance has proven to be very poor grade. So, I'm interested in any experiences using other fax servers that run on Linux or AIX and what issues/gotchas were run into and overcome and how. I'm considering... (0 Replies)
Discussion started by: kpearson
0 Replies

2. AIX

Synchronize time on several AIX servers ?

Hi, I want to synchronize time on several AIX servers - I don't want to set very precise time value, but I want all the servers to have same time value. How do I do that ? thanks Vilius (2 Replies)
Discussion started by: vilius
2 Replies

3. AIX

migrating solaris DB servers to AIX - resources ?

Hi Guys, I have a new project where I have to migrate about 150+ database environments from various solaris systems running Solaris 8 / 10 and residing on very different sun boxes (from 25k down to ancient/unsupported hardware) to AIX (power6). As special bonus for me, about half of these DBs... (1 Reply)
Discussion started by: zxmaus
1 Replies

4. AIX

AIX Servers Ugrading or Migrating

:( Hi Grue, I am very new in AIX/UNIX environment. Please give me answer that during the upgrading or Migrating to 6.1 the AIX Server the applications of this server is accessible to Apps users or not? Thanks (2 Replies)
Discussion started by: Tahniet
2 Replies

5. AIX

CD Rom shared for many AIX servers.

Guy's I have more than 20 servers available in different locations and I want to configure CD Rom as NFS between these servers to be sharedCan any one explain the configuration how can NFS or share CD rom between more than 20 servers available in different locationsto be used in one time from all... (5 Replies)
Discussion started by: Mr.AIX
5 Replies

6. AIX

pwage-aix for IBM AIX servers

This is the password aging script for aix just completed. So far tested and still testing on one of our aix server running 5.3.0.0. So anyway as you can see it is very similar to pwage-hpux-T the only difference on aix /etc/passwd file looks in this format. Also for this script to work you need to... (0 Replies)
Discussion started by: sparcguy
0 Replies

7. AIX

Bandwidth Calculation for DR AIX Servers

Hi Gurus , I am having AIX servers for which DR needs to be settle down soon. Can you guide how to calculate the bandwidth sizing for Storage based replication.What factor i need to consider or calculate for Bandwidth sizing. In solaris we run crontab scheduled iostat for every 15 mins & get... (4 Replies)
Discussion started by: ashjosh
4 Replies

8. AIX

AIX How to exchange hostname and IP address between two AIX servers?

Hi all, I am trying to exchange hostname and IP address of two AIX machines. But i am confused as how to change it ? do i need to use "smitty mktcpip" or "smitty tcpip" ? what is the difference between smitty mktcpip and smitty tcpip ? Also anymore steps to follow or just updating... (3 Replies)
Discussion started by: lramsb4u
3 Replies

9. What is on Your Mind?

Where to get AIX box/servers for practice?

where I'm working does not have any AIX box/servers for testing eventhough we're not heavily invested on UNIX. It is just sometimes there are a few client's servers that need AIX related stuff to be done. last time I checked, I could find old AIX tower on ebay but there's no more. p/s: on job... (4 Replies)
Discussion started by: malayo
4 Replies

10. AIX

How to upgrade SSH/SSL on AIX servers?

Hello, Can you please give some info on how to upgrade the SSH/SSL on AIX LPARs? we've the below version on our servers. />lslpp -l | grep -i ssh openssh.base.client 5.8.0.6102 COMMITTED Open Secure Shell Commands openssh.base.server 5.8.0.6102 COMMITTED Open Secure... (1 Reply)
Discussion started by: System Admin 77
1 Replies
FSYNC(2)						      BSD System Calls Manual							  FSYNC(2)

NAME
fsync, fsync_range -- synchronize a file's in-core state with that on disk LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <unistd.h> int fsync(int fd); int fsync_range(int fd, int how, off_t start, off_t length); DESCRIPTION
fsync() causes all modified data and attributes of fd to be moved to a permanent storage device. This normally results in all in-core modi- fied copies of buffers for the associated file to be written to a disk. fsync() should be used by programs that require a file to be in a known state, for example, in building a simple transaction facility. fsync_range() causes all modified data starting at start for length length of fd to be written to permanent storage. Note that fsync_range() requires that the file fd must be open for writing. fsync_range() may flush the file data in one of two manners: FDATASYNC Synchronize the file data and sufficient meta-data to retrieve the data for the specified range. FFILESYNC Synchronize all modified file data and meta-data for the specified range. By default, fsync_range() does not flush disk caches, assuming that storage media are able to ensure completed writes are transfered to media. The FDISKSYNC flag may be included in the how parameter to trigger flushing of all disk caches for the file. If the length parameter is zero, fsync_range() will synchronize all of the file data. RETURN VALUES
A 0 value is returned on success. A -1 value indicates an error. ERRORS
fsync() or fsync_range() fail if: [EBADF] fd is not a valid descriptor. [EINVAL] fd refers to a socket, not to a file. [EIO] An I/O error occurred while reading from or writing to the file system. Additionally, fsync_range() fails if: [EBADF] fd is not open for writing. [EINVAL] start + length is less than start. NOTES
For optimal efficiency, the fsync_range() call requires that the file system containing the file referenced by fd support partial synchro- nization of file data. For file systems which do not support partial synchronization, the entire file will be synchronized and the call will be the equivalent of calling fsync(). SEE ALSO
sync(2), sync(8) HISTORY
The fsync() function call appeared in 4.2BSD. The fsync_range() function call first appeared in NetBSD 2.0 and is modeled after the function available in AIX. BSD
May 17, 2010 BSD
All times are GMT -4. The time now is 12:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy