30
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

サクッとUbuntuサーバーの初期設定をする

Last updated at Posted at 2016-03-02

VPSとか借りて、最低限の初期設定をサクッと済ますためのエントリー。

作業ユーザーを作成する

adduser username

作業ユーザーにsudo権限を付与する

sudo gpasswd -a username sudo

SSHポートの変更とrootログインの禁止

vi /etc/ssh/sshd_config

Port 22 # イイ感じの数字に変える
PermitRootLogin yes # yesをnoにする

sudo service ssh restart

ポートをイイ感じに設定する

sudo ufw enable # ufwを立ち上げる
sudo ufw default DENY # 全ポート遮断する
sudo ufw allow 00 # ポート開ける(最低でもsshだけは開ける)
sudo ufw reload # リロードする
sudo ufw status # 開いてるポートを確認する

LAMP周りをイイ感じにする

sudo apt-get update
sudo apt-get install apache2
sudo apt-get install php
sudo apt-get install mysql-server

Apacheの設定ファイルは /etc/apache2 に格納されているので、イイ感じにイジる。

鍵認証

ちゃんと使うときは鍵認証を導入すると良いと思う。

30
31
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
30
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?