テスト用のAWS EC2インスタンスを作成する方法 Part2(SSHで初期設定)

2017年06月30日

インスタンスを作成したらもろもろの初期設定をする。
Apache、PHP、MySQLをセットアップする場合。

※随時改定する。

1. rootに成り上がる。

sudo打つのが面倒なので、rootに成り上がる。

2. アップデートを掛ける。

yum -y update

3. Apacheをインストールする。

yum -y install httpd
service httpd start

自動起動の設定

chkconfig httpd on

4. PHPをインストールする。

yum -y install php

5. MySQLをインストールする。

yum -y install mysql-server
service mysqld start

自動起動の設定

chkconfig mysqld on

初期設定

mysql_secure_installation

コマンドを打つと設定を聞かれる。

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!


In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):【そのままエンター】
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

Set root password? [Y/n]【そのままエンター】
New password:【パスワードを入力する】
Re-enter new password:【パスワードを入力する】
Password updated successfully!
Reloading privilege tables..
... Success!


By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n]【そのままエンター】
... Success!

Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n]【そのままエンター】
... Success!

By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n]【そのままエンター】
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n]【そのままエンター】
... Success!

Cleaning up...



All done! If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!


文字コードをUTF-8に設定する。

データベース作成時のデフォルト文字コードが「latin1」になっていて不便なので、「UTF-8」に変更する。

vi /etc/my.cnf

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mysqld according to the
# instructions in http://fedoraproject.org/wiki/Systemd
character-set-server=utf8  ←追加

[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

[client] ←追加
default-character-set=utf8 ←追加

MySQLサーバーを再起動

service mysqld restart

文字コードの設定が変わっているか確認

mysql -u root -p
Enter password:【パスワードを入力】

mysql> show variables like "chara%";
+--------------------------+----------------------------+
| Variable_name | Value |
+--------------------------+----------------------------+
| character_set_client | utf8 |
| character_set_connection | utf8 |
| character_set_database | utf8 |  ←utf8になっていればOK
| character_set_filesystem | binary |
| character_set_results | utf8 |
| character_set_server | utf8 |  ←utf8になっていればOK
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+

■参考:設定を変更する前の状態
+--------------------------+----------------------------+
| Variable_name | Value |
+--------------------------+----------------------------+
| character_set_client | utf8 |
| character_set_connection | utf8 |
| character_set_database | latin1 |
| character_set_filesystem | binary |
| character_set_results | utf8 |
| character_set_server | latin1 |
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+

6. タイムゾーンの設定

参考サイト:http://docs.aws.amazon.com/ja_jp/AWSEC2/latest/UserGuide/set-time.html

タイムゾーンを「Asia/Tokyo」に変更

vi /etc/sysconfig/clock

#ZONE="UTC" ←コメントアウト
ZONE="Asia/Tokyo" ←追加
UTC=true

シンボリックリンクを作成

ln -sf /usr/share/zoneinfo/Japan /etc/localtime

以上。

書いた人:木本
コメント一覧
コメントはまだありません。
コメントを投稿する
お名前
E-Mail
[必須]コメント
Top