CentOS6までは、chkconfigコマンドでしたが、CentOS7以降は、systemctlなのでお間違いなく。
設定確認
# systemctl list-unit-files -t service
# 特定サービスの設定のみ確認したい場合
# systemctl list-unit-files -t service | grep elastic
自動起動追加
# systemctl enable サービス名
# 例
# systemctl enable elasticsearch
自動起動解除
# systemctl disable サービス名
# 例
# systemctl disable elasticsearch