<?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>Ubuntu18.04 | Linuxでサーバー構築</title>
	<atom:link href="https://korodes.com/category/ubuntu18/feed/" rel="self" type="application/rss+xml" />
	<link>https://korodes.com</link>
	<description></description>
	<lastBuildDate>Thu, 06 Mar 2025 07:26:33 +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>Ubuntu18.04 | Linuxでサーバー構築</title>
	<link>https://korodes.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Ubuntu Server 18.04 : イメージの入手とインストール</title>
		<link>https://korodes.com/ubuntu_01/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Tue, 28 Jan 2020 12:29:48 +0000</pubDate>
				<category><![CDATA[Ubuntu18.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=850</guid>

					<description><![CDATA[Ubuntu Server 18.04インストールイメージのダウンロード

Ubuntu Serverのインストール用メディアはインターネット上の公式サイトからダウンロードできます。高速な回線さえあれば2～3分程度でOS自体をダウンロードすることができます。ダウンロードしたisoファイルからインストール用CD/DVDを作成する必要があります。
isoファイルのダウンロード先は
「Ubuntu 公式ダウンロードサイト」
です。




Ubuntu Server 18.04 インストール

上記で作成したインストールディスクから起動できるようにBIOSを変更して、PCを起動する。]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 18.04 : MySQLインストール</title>
		<link>https://korodes.com/ubuntu_08/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 05 Feb 2020 05:10:40 +0000</pubDate>
				<category><![CDATA[Ubuntu18.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=948</guid>

					<description><![CDATA[MySQLインストール

1.必要なパッケージをインストールする
# apt update
# apt install mysql-server
2.MySQLサーバのセキュリティ設定を行う
MySQLサーバのセキュリティ関連の設定を行うためにmysql_secure_installtionというツールが用意されているのでこれを実行します。
実行すると、質問形式でいくつかのセキュリティ設定がはじまります。]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 18.04 : 初期設定</title>
		<link>https://korodes.com/ubunt_02/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 29 Jan 2020 04:40:58 +0000</pubDate>
				<category><![CDATA[Ubuntu18.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=883</guid>

					<description><![CDATA[1. rootパスワードを設定し、SUコマンドを利用
$  sudo passwd root
password for <user名> ← 現在のユーザのパスワード
Enter new UNIX password: ← 設定するrootパスワードを入力
Retype new UNIX password: ← 設定するrootパスワードを再入力
passwd: password updated successfully
2. SSHの初期設定
$ su -
パスワード :
# cd /etc/ssh
# vi sshd_config
PermitRootLogin no　←　#rootでログイン不可にする]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 18.04 : FTPサーバー、NTPサーバー導入</title>
		<link>https://korodes.com/ubuntu_03/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 29 Jan 2020 07:16:02 +0000</pubDate>
				<category><![CDATA[Ubuntu18.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=894</guid>

					<description><![CDATA[1.FTPサーバー　vsftpdをインストール

①インストール

# apt install vsftpd
# ufw reload

②UFWにてFTPが利用するPORT21を許可する

# ufw allow ftp

③設定ファイル(vsftpd.conf)の編集]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 18.04 : WEBサーバー、ウイルス対策導入</title>
		<link>https://korodes.com/ubuntu_04/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 31 Jan 2020 05:08:27 +0000</pubDate>
				<category><![CDATA[Ubuntu18.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=903</guid>

					<description><![CDATA[1. WEBサーバー導入
1. 1 Apache2インストール

①インストール

# apt -y install apache2

②設定ファイル編集


# vi /etc/apache2/conf-enabled/security.conf
# 25行目：変更
ServerTokens 　Prod# vi /etc/apache2/mods-enabled/dir.conf
# 2行目：ディレクトリ名のみでアクセスできるファイル名を設定]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 18.04 : メールサーバー導入</title>
		<link>https://korodes.com/ubuntu_05/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Sun, 02 Feb 2020 00:12:15 +0000</pubDate>
				<category><![CDATA[Ubuntu18.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=919</guid>

					<description><![CDATA[1.Postfix : インストール/設定

Postfix は、sendmail に代わるMTA (Mail Transport Agent)として開発されたソフトウェアで、sendmail との互換性が高く、安全、メンテナンスが容易、速い、などの特徴を兼ね備えたメールサーバーです。
また、Postfix はメールを送信するSMTP サーバーとしての機能しか無いため、後述でメール受信のPOP サーバーのインストールを別途行います。

1.1　インストール]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 18.04 : SSL証明書を取得(Let&#039;s Encrypt)</title>
		<link>https://korodes.com/ubuntu_06/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Mon, 03 Feb 2020 04:08:24 +0000</pubDate>
				<category><![CDATA[Ubuntu18.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=931</guid>

					<description><![CDATA[Let’s Encryptで証明書取得
①mod_sslを有効にする
# a2enmod ssl
②Gitをインストール
# apt-get install -y git
③証明書取得ツールのインストール
# cd /usr/local/
# git clone https://github.com/certbot/certbot]]></description>
		
		
		
			</item>
		<item>
		<title>Ubuntu Server 18.04 : WEBサーバー・メールサーバー・FTPサーバーにSSL/TLS 適用</title>
		<link>https://korodes.com/ubuntu_07/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Mon, 03 Feb 2020 07:08:45 +0000</pubDate>
				<category><![CDATA[Ubuntu18.04]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=936</guid>

					<description><![CDATA[1. Apache2 : SSL/TLS の設定

Let’s Encryptで取得したSSL証明書をapacheへ適用する方法を説明。
ドメイン名 : hoge.comとする

1.1 Apache2の設定

①Apache2設定ファイルの編集
デフォルトのconfファイルをリネームしてコピー(例として「hoge.com-ssl.conf」)

# cd /etc/apache2/sites-available/
# cp default-ssl.conf hoge.com-ssl.conf]]></description>
		
		
		
			</item>
	</channel>
</rss>
