【操作手順】Cent OS のセットアップ(6.5編)

フォローする

Kapow Katalystの稼働環境としてLinux(CentOS)サーバを構築する際の標準的な手順について解説します。

調達するサーバはクラウド環境のサーバを前提とします。

 

クラウドサーバ契約後の新規サーバを yum update で最新化します。

 [root@xxxx ~]# yum update

ビズロボ利用グループ、及びユーザの作成。

[root@xxxx ~]# /usr/sbin/groupadd bizrobo
[root@xxxx ~]# /usr/sbin/useradd bizrobo -g bizrobo
[root@xxxx ~]# passwd bizrobo
Changing password for user bizrobo.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.

sudo の設定

[root@xxxx ~]# visudo
Cmnd_Alias SHUTDOWN = /sbin/halt, /sbin/shutdown, /sbin/poweroff, /sbin/reboot, /sbin/fastboot, /sbin/init
Cmnd_Alias REMOVE = /bin/rm, /usr/sbin/unlink, /bin/rmdir, /sbin/newfs
Cmnd_Alias IFCONFIG = /sbin/ifconfig
Cmnd_Alias NDD = /usr/sbin/ndd

## Allow root to run any commands anywhere
root    ALL=(ALL)       ALL
bizrobo ALL=(ALL) NOPASSWD: ALL, !SHUTDOWN,!REMOVE,!IFCONFIG,!NDD

SSHの設定

[root@xxxx ~]# vi /etc/ssh/sshd_config

#LoginGraceTime 2m
PermitRootLogin no  
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10

[root@ANA-Dtour ~]# /etc/rc.d/init.d/sshd restart
Stopping sshd:                                             [  OK  ]
Starting sshd:                                             [  OK  ]

ntpの設定(日本国内用)

[root@xxxx ~]# vi /etc/ntp.conf

# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
server ntp1.jst.mfeed.ad.jp
server ntp2.jst.mfeed.ad.jp
server ntp3.jst.mfeed.ad.jp

[root@xxxx ~]# /etc/rc.d/init.d/ntpd restart
Shutting down ntpd:                                        [  OK  ]
Starting ntpd:                                             [  OK  ]

ntpが正常に動いていることを確認