RHELファイルのバックアップ取得スクリプト
スクリプト内容
#!/bin/bash
# バックアップフォルダを指定する変数
BACKUP_DIR="/tmp"
# リストファイルを指定する変数
LIST_FILE="/tmp/listfile.txt"
# 日時フォーマ...
【CentOS7】サービス一覧確認コマンド
サービス一覧確認
systemctl list-unit-files --type=service
【CentOS7】よくやる初期設定
【CentOS7】IPv6無効化
設定方法
vi /etc/sysctl.conf
net.ipv6.conf.all.disable_ipv6 = 1net.ipv6.conf.default.disable_ipv6 = 1
設定反映
sysc...
【CentOS7】名前解決(リゾルバ)設定
設定方法
vi /etc/resolv.conf
nameserver 8.8.8.8
確認方法
nslookup www.google.com
【CentOS7】ネットワーク設定
設定方法
vi /etc/sysconfig/network-scripts/ifcfg-eth0
BOOTPROTO=staticONBOOT=yesIPADDR=xxx.xxx.xxx.xxxNETMASK=xxx.xxx...
【CentOS7】firewalld停止・無効化
設定方法
rootユーザスイッチ
su -
firewalld無効化
systemctl disabled firewalld
firewalld停止
systemctl stop firewalld
...
【CentOS7】SELinux無効化
設定方法
vi /etc/selinux/config
#SELINUX=enforcingSELINUX=disable
設定反映
OS再起動
確認方法
getenforce
Disabled・...