<?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>MiracleLinux9.2 | Linuxでサーバー構築</title>
	<atom:link href="https://korodes.com/category/miracle9-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://korodes.com</link>
	<description></description>
	<lastBuildDate>Wed, 25 Mar 2026 04:31:22 +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>MiracleLinux9.2 | Linuxでサーバー構築</title>
	<link>https://korodes.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>MiracleLinux9.2 : WEBサーバーインストール</title>
		<link>https://korodes.com/miracle9-2_06/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 20 Oct 2023 00:17:58 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20801</guid>

					<description><![CDATA[1.Apache2のインストールとバーチャルホスト設定

1.1 Apache2インストール

①httpdをインストール
2. CGIスクリプトの利用確認

①CGIの利用可確認
3. PHPのインストールと設定

3.1.PHPインストール

①インストール]]></description>
		
		
		
			</item>
		<item>
		<title>MiracleLinux9.2 : OSインストール</title>
		<link>https://korodes.com/miracle9-2_01/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Thu, 19 Oct 2023 04:04:31 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20723</guid>

					<description><![CDATA[MiracleLinux とは

MIRACLE LINUXとは、サイバートラスト株式会社が提供する日本製のLinuxディストリビューションです。2000年6月に日本オラクルとNECにより設立されたミラクル・リナックス社（現：サイバートラスト社）により、業務用からエンタープライズ向けを対象としたOracle Databaseの安定稼働を目的として開発が開始されました。2001年5月にリリースしたVersion2.0からRHELベースとして作られ、2012年1月にリリースされたVersion6.0からは完全なRHELクローンとして作られています。最新のバージョンは2023年10月05日 リリースの9.2となっていますが9.0と同様にインストールできます

国産のRHELクローンとして有名なMIRACLE LINUXは、当初は有償ライセンスの商用OSでしたが、CnetOS8の終了を受け、最新の8.4から無償提供すると発表しました。そのため、現在、CentOS8,CentOS Stream9からの移行先候補として脚光を浴びているOSです。

MiracleLinux9.2 ; ダウンロード]]></description>
		
		
		
			</item>
		<item>
		<title>MiracleLinux9.2 : OSインストール後の初期設定</title>
		<link>https://korodes.com/miracle9-2_02/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Thu, 19 Oct 2023 04:07:15 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20726</guid>

					<description><![CDATA[1.SELinuxの無効化

まず、selinuxを無効化します。selinuxはLinuxの監査やセキュリティを向上させる機能ですが、有効になっているとサービスの動作や、設定内容にかなりの制限が出てきます。そのため、基本的には無効にする場合が多いのが実情です。
SELinuxの動作モード
Enforcing : SELinux機能は有効でアクセス制御も有効
Permissive : SElinuxはwarningを出すが、アクセス制限は行われません
disabled : SElinux機能・アクセス制御ともに無効

①現在のSELinuxの状態

# getenforce
Enforcing

②[permissive]モードへの切り替え]]></description>
		
		
		
			</item>
		<item>
		<title>MiracleLinux9.2 : SSH,ファイアウォール(firewalld),NTP サーバー</title>
		<link>https://korodes.com/miracle9-2_03/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Thu, 19 Oct 2023 05:42:16 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20744</guid>

					<description><![CDATA[1.SSHによるリモート接続の設定

SSHはサーバーへリモートで接続するためのサービスで、基本的にはOSインストール直後に動作していますが、デフォルトの設定ではややセキュリティに難があります。
ここではデフォルトの設定を変更してssh接続のセキュリティを高める設定を行います。

1.1 SSHサービスの設定ファイル変更

SSHサービスの設定を変更するために設定ファイルを変更します。
2.ファイアウォール(firewalld)の設定方法

MiracleLinuxではファイアウォールはfirewalldがデフォルトに設定されており、OSインストール時に有効になっています。

「firewalld」について簡単に説明すると、通信制御のポリシーを設定する場合、事前に定義されたゾーンに対して通信の許可・遮断ルールを適用し、そのゾーンを各NIC（ネットワークアダプタ）に割り当てていくという方式になっています。
4.サーバの時刻を日本標準時に同期させる

① 設定ファイルを下記の様に変更します。]]></description>
		
		
		
			</item>
		<item>
		<title>MiracleLinux9.2 : 公開鍵暗号方式によるSSH接続</title>
		<link>https://korodes.com/miracle9-2_04/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Thu, 19 Oct 2023 06:56:15 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20756</guid>

					<description><![CDATA[公開鍵暗号方式を用いた認証によるSSH接続

 公開鍵、秘密鍵ペアの作成

OpenSSH 使って Linux サーバに接続するユーザの公開鍵と秘密鍵のペアを作成します。
鍵ペアの作成は ssh-keygen をを使います。
公開鍵と秘密鍵のペアの作成はリモートログインするユーザ権限で実行します。
作成先・ファイル名を指定しなければ、 /home/(ユーザ名)/.ssh/ に id_ed25519, id_eed25519.pub が作成される。 途中、鍵用のパスワードも入力する。]]></description>
		
		
		
			</item>
		<item>
		<title>MiracleLinux9.2 : FTPサーバ(Vsftpd),Sambaファイルサーバー</title>
		<link>https://korodes.com/miracle9-2_05/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Thu, 19 Oct 2023 23:41:00 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20792</guid>

					<description><![CDATA[FTPサーバ インストール

1. vsftpdインストール
vsftpd SSL/TLS

Vsftpd を SSL/TLS で利用できるように設定します

1. 自己署名の証明書を作成

Let's Encrypt 等の信頼された正規の証明書を使用する場合は当作業は不要です
3.Sambaでファイルサーバー導入

ユーザー認証が必要なアクセス権付ファイルサーバーをSambaで構築します。
導入手順
①ユーザー認証が必要なアクセス権付の共有フォルダーを作成
②アクセス可能なグループ作成
③アクセス可能なグループに属するユーザー作成
④設定ファイル編集]]></description>
		
		
		
			</item>
		<item>
		<title>MiracleLinux9.2 : Clamav ( アンチウィルス ) , メールサーバー インストール</title>
		<link>https://korodes.com/miracle9-2_07/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 20 Oct 2023 05:07:52 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20827</guid>

					<description><![CDATA[1. clamav ( アンチウィルスソフト )のインストール

1.1 Clam AntiVirusインストール

# dnf -y install clamav clamd clamav-update

1.2 Clam AntiVirus設定ファイル編集
2. メールサーバー (Postfix)

2.1 Postfixのインストール

Postfix をインストールして SMTP サーバーを構築します
Mail サーバー : Postfix + Clamav + clamav-milter+SpamAssassin

1.メールのリアルタイムスキャン

①clamav-milterインストール
Clam AntiVirusを使用してメールサーバー側でメールに対するウイルスチェックを行う。
メールサーバーとClam AntiVirusとの連携はclamav-milterを利用して行なう。]]></description>
		
		
		
			</item>
		<item>
		<title>MiracleLinux9.2 : SSL証明書 ( Let&#039;s Encrypt ) , Apache/Mail サーバー SSL/TLS</title>
		<link>https://korodes.com/miracle9-2_08/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 20 Oct 2023 08:44:03 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20836</guid>

					<description><![CDATA[1.SSL証明書を取得する ( Let's Encrypt )

最新のopen sslをインストールしておく

# dnf install openssl-devel

1.1 事前準備

1.パッケージ管理システムSnappyインストール
Let’s EncryptのSSL証明書発行ツール「certbot」は2021年以降は「snap」を利用したインストールが推奨されていますので、まずSnapdをインストールします。(dnfまたはyumでの従来の方法でもインストールできます)

https://korodes.com/snappy/

# dnf install epel-release
# dnf upgrade
# dnf install snapd

メインのスナップ通信ソケットを管理するsystemdユニットを有効化する]]></description>
		
		
		
			</item>
		<item>
		<title>MiracleLinux9.2 : MySQL8 , WordPressインストール</title>
		<link>https://korodes.com/miracle9-2_09/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Sat, 21 Oct 2023 01:14:09 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20854</guid>

					<description><![CDATA[MySQL8 インストール
＃ dnf -y install mysql-server
WordPressインストール

1. Word Press 用のデータベースを作成

例としてデータベース[wp_db] データベースユーザー[wp_user] パスワード[?Ww123456]とします]]></description>
		
		
		
			</item>
		<item>
		<title>MiracleLinux9.2 : SNORT3 , Tripwire インストール</title>
		<link>https://korodes.com/miracle9-2_10/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Sat, 21 Oct 2023 03:17:39 +0000</pubDate>
				<category><![CDATA[MiracleLinux9.2]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=20862</guid>

					<description><![CDATA[Snort3 インストール

nortは、IPネットワーク上でリアルタイムのトラフィック分析とパケットロギングを実行できるオープンソースのネットワーク侵入検知システムです。
「プロトコル分析」「コンテンツ検索」「マッチング」を実行でき、「バッファオーバーフロー」「ステルスポートスキャン」「CGI攻撃」「SMBプローブ」「OSフィンガープリント試行」「セマンティックURL攻撃」「サーバメッセージブロック探査」など、さまざまな攻撃検出に使用できます。

MiracleLinux8はSnort3リポジトリがありませんので、ソースコードからSnort3をビルド、コンパイルしてインストールします
Tripwire インストール

1.ダウンロード、インストール

# dnf install tripwire -y

2.初期設定

サイトパスフレーズとローカルパスフレーズを設定する]]></description>
		
		
		
			</item>
	</channel>
</rss>
