- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to change the TIMEZONE?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2003 11:04 PM
03-30-2003 11:04 PM
How to change the TIMEZONE?
We have testing server configured as HONGKONG server, but its timezone was set as Singpore Local Time.
(The OS is HP-UX 11.00)
Please advice us how to change it.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2003 11:08 PM
03-30-2003 11:08 PM
Re: How to change the TIMEZONE?
# set_parms timezone
in addition
you can set time
# set_parms time
have a good day!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2003 11:10 PM
03-30-2003 11:10 PM
Re: How to change the TIMEZONE?
Use 'set_parms timezone' to get it changed.
Timezone is simply relative. A user can change his/her timezone anytime by export TZ variable.
Above command will change the timezone systemwide.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2003 11:12 PM
03-30-2003 11:12 PM
Re: How to change the TIMEZONE?
# set_parms timezone
A good way of checking is have a look at the /etc/TIMEZONE file after the change. You could also manually change the /etc/profile file to use the same timezone should you wish.
Regards
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2003 11:14 PM
03-30-2003 11:14 PM
Re: How to change the TIMEZONE?
should be the case
I think it will require a reboot for to take the timezone into effect.
Plan a downtime
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2003 11:15 PM
03-30-2003 11:15 PM
Re: How to change the TIMEZONE?
# man set_parms
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2003 11:16 PM
03-30-2003 11:16 PM
Re: How to change the TIMEZONE?
Hongkong and Singapore are in same time zone.What is your problem?
check the file /etc/TIMEZONE
TZ=SST-8
export TZ
the in you /etc/profile
# Set the TIMEZONE
if [ -r /etc/TIMEZONE ]
then
. /etc/TIMEZONE
else
TZ=MST7MDT # change this for local time.
export TZ
fi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2003 11:36 PM
03-30-2003 11:36 PM
Re: How to change the TIMEZONE?
chen