Hi,
# date
Change the date, time as follows:
# date MMDDhhmmCCYY
For example, to set the clock to November 12, 2017 3:42PM:
# date 111215422017
If you want to change timezone follow below steps
There are a bunch of files stored by region in the following directory:
/usr/share/zoneinfo
We can check this and find the one which matches our region. Then we have to create a symbolic link from /etc/localtime
For Example if our timezone region is Amsterdam, we can follow the below steps to update the timezone,
# rm -f localtime
# ln -s /usr/share/zoneinfo/Europe/Amsterdam /etc/localtime
# /etc/init.d/ale-jwebapp restart
To check the time we can use the below command,
# date
Regards,
Pavan