<?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>Ubuntu22.04 | Linuxでサーバー構築</title>
	<atom:link href="https://korodes.com/category/ubuntu22/feed/" rel="self" type="application/rss+xml" />
	<link>https://korodes.com</link>
	<description></description>
	<lastBuildDate>Tue, 29 Apr 2025 03:30:07 +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>Ubuntu22.04 | Linuxでサーバー構築</title>
	<link>https://korodes.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Ubuntu Server22.04 : イメージの入手とインストール</title>
		<link>https://korodes.com/ubuntu22_01/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Tue, 17 May 2022 09:52:30 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6576</guid>

					<description><![CDATA[Ubuntu Server 22.04インストールイメージのダウンロード

Ubuntu Serverのインストール用メディアはインターネット上の公式サイトからダウンロードできます。高速な回線さえあれば2～3分程度でOS自体をダウンロードすることができます。ダウンロードしたisoファイルからインストール用CD/DVDを作成する必要があります。(約1.2G)
Vmware等を使用して仮想マシンにインストールする場合はisoファイル自体を利用できます。
isoファイルのダウンロード先は「Ubuntu 公式ダウンロードサイト」です。

Ubuntu Server 22.04 インストール

上記で作成したインストールディスクから起動できるようにBIOSを変更して、PCを起動する]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 22.04 :　初期設定</title>
		<link>https://korodes.com/ubuntu22_02/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Tue, 17 May 2022 13:14:13 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6605</guid>

					<description><![CDATA[1. rootパスワードを設定し、SUコマンドを利用

Ubuntu のデフォルト設定では root ユーザーはパスワードが設定されていないため利用不可となっています。
root ユーザーにパスワードを設定することで、従来の [su] コマンドによる遷移が可能となる。

$ sudo passwd root
[sudo] password for <user名> ← 現在のユーザのパスワード
Enter new UNIX password: ← 設定するパスワードを入力]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 22.04 :　SSH   ,  Firewall設定</title>
		<link>https://korodes.com/ubuntu22_03/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 18 May 2022 01:30:49 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6650</guid>

					<description><![CDATA[1. SSHサービスのセキュリティ設定

SSHサービスはデフォルトでrootユーザーのログインを許可しています。rootユーザーはユーザー名が既に判明しているためパスワードが判明すると、管理者権限でサーバーへログイン出来るため、これを拒否する設定を行います

1.1 一般ユーザーの作成

Ubuntu 22のインストール時に一般ユーザーを作成している場合は、本手順は不要です。
サー バーに作成されているユーザーがrootのみの場合、SSHによるリモートログインが出来なくなりますので、OSのインストール時にユーザーを作成していない場合、事前にユーザーを作成する必要があります。OSのインストール時にユーザーを作成している場合は、本手順は不要です。
ユーザーの作成は"useradd"コマンドで行います。"-m"オプションでホームディレクトリの作成、"-p"オプションでパスワードを指定します。
例えばユーザーアカウント名として「ubuntuuser」、パスワードとして「123456」を設定する場合は、以下のように実行します。]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 22.04 : SSH公開鍵暗号方式</title>
		<link>https://korodes.com/ubuntu22_04/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 18 May 2022 01:48:17 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6655</guid>

					<description><![CDATA[RSA 公開鍵暗号方式を用いた認証によるSSH接続
 公開鍵、秘密鍵ペアの作成

OpenSSH 使って Linux サーバに接続するユーザの公開鍵と秘密鍵のペアを作成します。
鍵ペアの作成は ssh-keygen をを使います。
今回はSSH プロトコル Version 2 で利用する RSA 暗号を利用した鍵セットを作成します。
公開鍵と秘密鍵のペアの作成はリモートログインするユーザ権限(huong)で実行します。
作成先・ファイル名を指定しなければ、 /home/huong/.ssh/ に id_rsa, id_rsa.pub が作成される。 途中、鍵用のパスワードも入力する。]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 22.04 : NTP  ,  FTP サーバー(Vsftpd)</title>
		<link>https://korodes.com/ubuntu22_05/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 18 May 2022 13:12:32 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6695</guid>

					<description><![CDATA[1. 時刻同期サービスを提供する NTP サーバーをインストール
# apt -y install chrony
# vi /etc/chrony/chrony.conf
# 20～23行目：デフォルト設定はコメントにして自身のタイムゾーンの NTP サーバーを追記
#pool ntp.ubuntu.com     iburst maxsources 4
#pool 0.ubuntu.pool.ntp.org iburst maxsources 1
#pool 1.ubuntu.pool.ntp.org iburst maxsources 1
#pool 2.ubuntu.pool.ntp.org iburst maxsources 2]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 22.04 : WEBサーバー(Apache)</title>
		<link>https://korodes.com/ubuntu22_06/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 18 May 2022 13:14:07 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6698</guid>

					<description><![CDATA[Apache2インストール

最初にUFWでhttp:80番ポートおよびhttps:443ポートをallowしておく

# ufw allow http
# ufw allow https
# ufw reload
1 Apache2 をインストール
# apt -y install apache2
2 Apache2 基本設定]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu22.04 Server : ウイルス対策　,　Mail Server</title>
		<link>https://korodes.com/ubuntu22_07/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 20 May 2022 05:00:39 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6716</guid>

					<description><![CDATA[1.ウイルス対策ソフトClamav導入
1.1 インストール
# apt install clamav clamav-daemon

尚、clamav関連の設定ファイルは、/etc/clamav/フォルダにインストールされる

1.2 ウイルス定義の更新
# systemctl stop clamav-freshclam 
# freshclam
Sat May 21 20:44:38 2022 -> ClamAV update process started at Sat May 21 20:44:38 2022
Sat May 21 20:44:38 2022 -> daily database available for update (local version: 26547, remote]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu22.04 Server : Let&#039;s Encrypt  ,  Apache SSL化</title>
		<link>https://korodes.com/ubuntu22_08/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Sat, 21 May 2022 06:26:24 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6733</guid>

					<description><![CDATA[1. 証明書を取得する (Let's Encrypt)
1.1 事前準備

①mod_sslを有効にする

# a2enmod ssl

②Let's Encrypt証明書を取得するためのクライアントツールをインストール

# apt -y install certbot

③Let's Encrypt証明書の取得
Apache httpd や Nginx などの Webサーバーが稼働していることが前提となります。
作業を実施するサーバーで Webサーバーが稼働していない場合は ④の手順を実行。
また、インターネット側から、作業を実施するサーバー (証明書を取得したい FQDN のサーバー) の 80 ポート宛てにアクセス可能であることも前提です。]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu22.04 Server : MySQL 8  ,  WordPressインストール</title>
		<link>https://korodes.com/ubuntu22_09/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Sun, 22 May 2022 06:16:19 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6763</guid>

					<description><![CDATA[1. MySQL 8インストール
1. 1インストール
# apt -y install mysql-server
1.2. MySQLサーバのセキュリティ設定

MySQLサーバのセキュリティ関連の設定を行うためにmysql_secure_installtionというツールを実行します。
実行すると、質問形式でいくつかのセキュリティ設定がはじまります。はじめに以下のようにパスワードバリデーション用のプラグインを使用するか確認されます。パスワードバリデーションというのは、MySQL用のユーザのパスワード強度をチェックし、十分セキュアなパスワードのみ受け付けるよう制限をかけることができます。例えば、最低何文字以上で必ず記号と数値を1文字以上含むなどです。この条件について次の質問で設定できます。
良ければyを入力してEnterを押します]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu22.04 Server : SNORT2 ,  Tripwire インストール</title>
		<link>https://korodes.com/ubuntu22_10/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Sun, 22 May 2022 12:44:31 +0000</pubDate>
				<category><![CDATA[Ubuntu22.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=6769</guid>

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