CentOS7/基本設定
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[CentOS7]]
&tag(CentOS7/基本設定);
*目次 [#gdaa8d59]
#contents
*関連ページ [#fffe98be]
*参考情報 [#g29286a0]
*概要 [#g5d5cb47]
-ミニマルでインストールした場合を想定
*最初に行う [#m379abc4]
-[[sudo]]の設定を行う
*リポジトリ設定 [#da80f70b]
**epelを利用する [#x9aac023]
-yumでインストールできる。[[CentOS7.1 64bitのyumリポジト...
yum install epel-release
-デフォルトで/etc/yum.repos.d/epel.repoはenabled=1になっ...
*ネットワーク設定 [#gcdc805f]
-nmtuiコマンドを使用する。[[NetworkManager 使用方法(nmtu...
-「Edit connection」を選択。
-「ensxx」を選択する。
-IPv4 CONFIGURATION: Manual
-Addresses: 192.168.0.100/24 (ネットマスクの指定を忘れずに)
-Require IPv4 addressing for this connectionにチェック(チ...
-Automatically connectにチェック。
-そのままnmtuiでホスト名を変更するか、hostnamectl set-hos...
hostnamectl set-hostname [ホスト名]
-以下のコマンドで確認
systemctl restart network
ip addr show
curl https://www.yahoo.com
*SELinux [#tfe6ee96]
-SELinuxを無効化する。[[CentOS7 SELinuxの無効化手順 - Qii...
-getenforceでEnforcingと表示された有効状態。
-/etc/selinux/configを変種し、SELINUX=disabledとする。
-setenforce 0で一時的に無効化することもできる。
*firewalld [#h63a2f9f]
-CentOS 7からfirewalldを使うようになった。[[5分で終わらせ...
-便利そうだが過去の設定ファイルを使用したい場合iptablesを...
*firewalldではなくiptablesを使用する。 [#r2462844]
-[[CentOS7でiptablesを使ってみる - 安藤翔のブログ:http://...
**firewalldを停止する [#f2ecccc1]
-一時停止
systemctl stop firewalld
-確認。inactive(dead)と表示されることを確認。
systemctl status firewalld
-自動起動の停止
systemctl disable firewalld
-自動起動しないことを確認。firewalld.service disabledと表...
systemctl list-unit-files | grep firewalld
-あるいは削除しておく(アップグレード後に戻る場合があるの...
sudo yum remove firewalld
**iptablesのインストール [#g5882d03]
-以下のコマンドで確認。iptables.serviceがnot-foundになっ...
systemctl status iptables
-iptablesのインストール。
yum install iptables-services
-確認。Loadedと表示されればよい。
iptables --version
systemctl status iptables
-iptablesを起動
isystemctl start iptables
-自動起動設定
stemctl enable iptables
-自動起動設定を確認。enabledと表示されること。
systemctl list-unit-files | grep iptables
**iptablesの設定ファイル作成 [#r16d2375]
-iptablesファイルを編集する。
vi /etc/sysconfig/iptables
-再起動。
systemctl restart iptables
終了行:
[[CentOS7]]
&tag(CentOS7/基本設定);
*目次 [#gdaa8d59]
#contents
*関連ページ [#fffe98be]
*参考情報 [#g29286a0]
*概要 [#g5d5cb47]
-ミニマルでインストールした場合を想定
*最初に行う [#m379abc4]
-[[sudo]]の設定を行う
*リポジトリ設定 [#da80f70b]
**epelを利用する [#x9aac023]
-yumでインストールできる。[[CentOS7.1 64bitのyumリポジト...
yum install epel-release
-デフォルトで/etc/yum.repos.d/epel.repoはenabled=1になっ...
*ネットワーク設定 [#gcdc805f]
-nmtuiコマンドを使用する。[[NetworkManager 使用方法(nmtu...
-「Edit connection」を選択。
-「ensxx」を選択する。
-IPv4 CONFIGURATION: Manual
-Addresses: 192.168.0.100/24 (ネットマスクの指定を忘れずに)
-Require IPv4 addressing for this connectionにチェック(チ...
-Automatically connectにチェック。
-そのままnmtuiでホスト名を変更するか、hostnamectl set-hos...
hostnamectl set-hostname [ホスト名]
-以下のコマンドで確認
systemctl restart network
ip addr show
curl https://www.yahoo.com
*SELinux [#tfe6ee96]
-SELinuxを無効化する。[[CentOS7 SELinuxの無効化手順 - Qii...
-getenforceでEnforcingと表示された有効状態。
-/etc/selinux/configを変種し、SELINUX=disabledとする。
-setenforce 0で一時的に無効化することもできる。
*firewalld [#h63a2f9f]
-CentOS 7からfirewalldを使うようになった。[[5分で終わらせ...
-便利そうだが過去の設定ファイルを使用したい場合iptablesを...
*firewalldではなくiptablesを使用する。 [#r2462844]
-[[CentOS7でiptablesを使ってみる - 安藤翔のブログ:http://...
**firewalldを停止する [#f2ecccc1]
-一時停止
systemctl stop firewalld
-確認。inactive(dead)と表示されることを確認。
systemctl status firewalld
-自動起動の停止
systemctl disable firewalld
-自動起動しないことを確認。firewalld.service disabledと表...
systemctl list-unit-files | grep firewalld
-あるいは削除しておく(アップグレード後に戻る場合があるの...
sudo yum remove firewalld
**iptablesのインストール [#g5882d03]
-以下のコマンドで確認。iptables.serviceがnot-foundになっ...
systemctl status iptables
-iptablesのインストール。
yum install iptables-services
-確認。Loadedと表示されればよい。
iptables --version
systemctl status iptables
-iptablesを起動
isystemctl start iptables
-自動起動設定
stemctl enable iptables
-自動起動設定を確認。enabledと表示されること。
systemctl list-unit-files | grep iptables
**iptablesの設定ファイル作成 [#r16d2375]
-iptablesファイルを編集する。
vi /etc/sysconfig/iptables
-再起動。
systemctl restart iptables
ページ名: