Change hostname on CentOS
# Part 1: CentOS 6
vim /etc/sysconfig/network
HOSTNAME=my_hostname
source /etc/sysconfig/network
# `hostname` can set the host name until reboot,
# it also can show the host name
hostname
# Part 2: CentOS 7
hostnamectl set-hostname my_hostname
hostnamectl status