Locked History Actions

Diff for "SL7-initial-setup"

Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2018-11-12 06:47:31
Size: 1413
Comment:
Revision 3 as of 2018-11-12 06:51:41
Size: 1557
Comment:
Deletions are marked like this. Additions are marked like this.
Line 32: Line 32:
3. firewalld から iptables に変更 3. kernelのパケットフィルタを firewalld から iptables に変更
Line 44: Line 44:
{{{
file: /etc/selinux/config

#SELINUX=enforcing
SELINUX=disabled
}}}
の変更後、reboot

SL7 (Centos7) OS インストール後の初期設定

1. EPEL repository の追加

# yum install epel-release

2. Yum レポジトリーの変更(ミラーを設定)

/etc/yum.repos.d/ 

配下のファイル、最初のentry (URL)を

http://ftp.riken.jp/Linux/...

に変更

3. kernelのパケットフィルタを firewalld から iptables に変更

# systemctl stop firewalld.service
# systemctl mask firewalld.service
# yum install iptables-services
# systemctl enable iptables.service
# systemctl start iptables.service

4. 必要ならば SE linux を disable する

file: /etc/selinux/config
#SELINUX=enforcing
SELINUX=disabled

の変更後、reboot

5. SSHを外部に開いている場合は、パスワード認証を禁止

file: /etc/ssh/sshd_config

PasswordAuthentication no