<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rocky Linux8.6 | Linuxでサーバー構築</title>
	<atom:link href="https://korodes.com/category/rocky8-6/feed/" rel="self" type="application/rss+xml" />
	<link>https://korodes.com</link>
	<description></description>
	<lastBuildDate>Wed, 30 Apr 2025 00:05:29 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://korodes.com/wp-content/uploads/2020/01/cropped-profile-32x32.jpg</url>
	<title>Rocky Linux8.6 | Linuxでサーバー構築</title>
	<link>https://korodes.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Rocky Linux8.6 :　OSインストール</title>
		<link>https://korodes.com/rocky8-6_01/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Tue, 07 Jun 2022 04:51:56 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7749</guid>

					<description><![CDATA[Rocky Linuxインストール
１．Rocky Linux 8.6 ダウンロード

Rocky Linux 8 のインストールイメージは下記サイトからダウンロード可能
https://rockylinux.org/download]]></description>
		
		
		
			</item>
		<item>
		<title>Rocky Linux8.6 :　初期設定</title>
		<link>https://korodes.com/rocky8-6_02/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Tue, 07 Jun 2022 07:28:55 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7775</guid>

					<description><![CDATA[1.SELinuxの無効化

まず、selinuxを無効化します。selinuxはLinuxの監査やセキュリティを向上させる機能ですが、有効になっているとサービスの動作や、設定内容にかなりの制限が出てきます。そのため、基本的には無効にする場合が多いのが実情です。
2.システムの最新化

OSインストール直後にはできるだけ早期にパッケージのアップデートを行います。
しかし、dnf updateを行うと、カーネルアップデートも同時に行われます。
カーネルアップデートを行うと、システムの再起動やサービスの停止が必要だったり、最悪カーネルパニックが発生して、システムが起動しない場合があります。カーネルを除外してアップデートする方が賢明です。
dnf -y updateの後ろに「--exclude=kernel*」を指定して実行することで
カーネルをアップデート対象から除外することできます。]]></description>
		
		
		
			</item>
		<item>
		<title>Rocky Linux8.6 : SSH接続、firewall設定、NTPサーバー</title>
		<link>https://korodes.com/rocky8-6_03/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Tue, 07 Jun 2022 10:18:22 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7790</guid>

					<description><![CDATA[1.SSHによるリモート接続の設定

SSHはサーバーへリモートで接続するためのサービスで、基本的にはOSインストール直後に動作していますが、デフォルトの設定ではややセキュリティに難があります。
ここではデフォルトの設定を変更してssh接続のセキュリティを高める設定を行います。
2.ファイアウォール(firewalld)の設定方法

Fedoraではファイアウォールはfirewalldがデフォルトに設定されており、OSインストール時に有効になっています。

「firewalld」について簡単に説明すると、通信制御のポリシーを設定する場合、事前に定義されたゾーンに対して通信の許可・遮断ルールを適用し、そのゾーンを各NIC（ネットワークアダプタ）に割り当てていくという方式になっています。]]></description>
		
		
		
			</item>
		<item>
		<title>Rocky Linux8.6 : FTPサーバ インストール</title>
		<link>https://korodes.com/rocky8-6_05/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 08 Jun 2022 00:13:57 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7810</guid>

					<description><![CDATA[FTPサーバ インストール
1. vsftpdインストール
# dnf -y install vsftpd
2.vsftpd の設定
編集前の vsftpd.conf を .bak を付けて保存
# cp /etc/vsftpd/vsftpd.conf /home/huong/vsftpd.conf.bak]]></description>
		
		
		
			</item>
		<item>
		<title>Rocky Linux8.6 : WEBサーバ インストール</title>
		<link>https://korodes.com/rocky8-6_06/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 08 Jun 2022 01:40:55 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7822</guid>

					<description><![CDATA[Apache2のインストールとバーチャルホスト設定
1.Apache2インストール

①httpdをインストール

# dnf -y install httpd

バージョン確認
# httpd -v
Server version: Apache/2.4.37 (rocky)
Server built: May 10 2022 18:05:14]]></description>
		
		
		
			</item>
		<item>
		<title>Rocky Linux8.6 : ウイルス対策　、メールサーバー</title>
		<link>https://korodes.com/rocky8-6_07/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 08 Jun 2022 07:49:40 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7837</guid>

					<description><![CDATA[clamav ( アンチウィルスソフト )のインストール

1.Clam AntiVirusインストール

# dnf -y install clamav clamd clamav-update
2.Clam AntiVirus設定ファイル編集
メールサーバー インストール
1. Postfixのインストール

1.1 インストール
Postfix をインストールして SMTP サーバーを構築します
Mail サーバー : Postfix + Clamav + Amavisd+SpamAssassin
1.メールのリアルタイムスキャン
①Amavisd および Clamav Server をインストール]]></description>
		
		
		
			</item>
		<item>
		<title>Rocky Linux8.6 : SNORT2 ,Tripwire ,Chkrootkitインストール</title>
		<link>https://korodes.com/rocky8-6_08/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 08 Jun 2022 13:40:09 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7848</guid>

					<description><![CDATA[SNORT インストール
1.事前準備

①CodeReady Red Hat リポジトリを追加し、必要なソフトウェアをインストールする
Tripwire インストール
1.ダウンロード、インストール
# cd /usr/local/src
# wget https://rpmfind.net/linux/epel/8/Everything/x86_64/Packages/t/tripwire-2.4.3.7-5.el8.x86_64.rpm]]></description>
		
		
		
			</item>
		<item>
		<title>Rocky Linux8.6 : MySQL ,WordPress インストール</title>
		<link>https://korodes.com/rocky8-6_09/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Thu, 09 Jun 2022 09:35:52 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7869</guid>

					<description><![CDATA[Mysql8 インストール
＃dnf module -y install mysql:8.0
＃vi /etc/my.cnf.d/charset.cnf

charset.cnf 下記の内容で新規作成
WordPressインストール
1. Word Press 用のデータベースを作成

例としてデータベース[wp_db] データベースユーザー[wp_user] パスワード[?W123456]とします

# mysql -u root -p]]></description>
		
		
		
			</item>
		<item>
		<title>Rocky Linux8.6 : Let&#039;s Encrypt , Apache  Mail  SSL化</title>
		<link>https://korodes.com/rocky8-6_10/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 10 Jun 2022 00:36:22 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7879</guid>

					<description><![CDATA[1.SSL証明書を取得する ( Let's Encrypt )

最新のopen sslをインストールしておく

# dnf install openssl-devel
2. Apache のhttps 化

念のため、下記をインストールしておく

# dnf -y install mod_ssl
2.1 ssl.conf ファイルの編集
3. Mail サーバーにSSL/TLS(Let's Encrypt) の設定
3.1 メールサーバー用証明書の取得

メールサーバー用の証明書を取得するが上記と同様の方法では取得できないので「--standalone」オプションをつけて下記のようにしても失敗する。]]></description>
		
		
		
			</item>
		<item>
		<title>Rocky Linux8.6 : Logwatch , DiCE ,ディスク使用量チェックスクリプト 導入</title>
		<link>https://korodes.com/rocky8-6_11/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 10 Jun 2022 05:49:41 +0000</pubDate>
				<category><![CDATA[Rocky Linux8.6]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=7888</guid>

					<description><![CDATA[1. Logwatch導入

①インストール

# dnf install logwatch
②設定ファイルの編集
2. DiCEのインストール

ネットが切断されたり、ルーターが切断再起動したときにおこるグローバルIPの変更の度に、ダイナミックDNSにアクセスしグローバルIPが変更されたことを知らせなくてはいけません。その作業を自動的にやってくれるのがDiCEです
3.ディスク使用率チェックスクリプト導入
3.1 スクリプト作成
# cd /var/www/system
# vi disk_capacity_check.sh]]></description>
		
		
		
			</item>
	</channel>
</rss>
