Adding user `yamada’ … Adding new group `yamada’ (1003) … Adding new user `yamada’ (1003) with group `yamada’ … Creating home directory `/home/yamada’ … Copying files from `/etc/skel’ … Enter new UNIX password: (パスワード入力) Retype new UNIX password:passwd:(パスワード再入力) password updated successfully Changing the user information for yamada Enter the new value, or press ENTER for the default Full Name []: (エンターで次へ) Room Number []: (エンターで次へ) Work Phone []: (エンターで次へ) Home Phone []: (エンターで次へ) Other []:Is the information correct? [Y/n] y
Raspberry pi 3 model B+ に入れたRaspbianに各種サーバーを入れる。その1
今回はRaspbuanを入れたraspberry pi 3+ を使ってWebサーバー等の各種サーバーを作って行く手順の記録です。 それには、このシリーズである初期設定編で書いてあるWindowsからターミナルソフトを使ってSSHで接続した環境でインストール作業をします。
1.ターミナルソフトを起動しSSHでログイン
初期設定編を参照
2.必要に応じてパッケージのアップデートをする
$ sudo apt-get update
$ sudo apt-get upgrade
3.apache2を入れる
$ sudo apt-get install apache2
これでインストールします。
バージョン情報の表示は $ apache2 -v 起動は $ sudo service apache2 start 停止は sudo service apache2 stop 再起動は $ sudo service apache2 restart
設定ファイルは /etc/apache2 ディレクトリにありますので必要なファイルを書き換えて設定します。 特に必要な書き換えは sudo vi /etc/apache2/conf-available/security.conf を開いて #ServerSignature Off ServerSignature On
当たり前だが ERROR 1698 (28000): Access denied for user 'root'@'localhost' とエラーが出るのを確認。 rootパスワードを設定する必要があるのでまずは
多分もうスタートされているはずだが、Mariadbを起動する。
$ sudo systemctl start mariadb.service
ちなみに再起動は
$ sudo systemctl restart mariadb.service
ちなみにMySQLとしての起動、再起動でも同じ。 $ sudo systemctl start mysql $ sudo systemctl restart mysql
MySQLのrootパスワードの設定を開始する。
$ sudo /usr/bin/mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we’ll need the current password for the root user. If you’ve just installed MariaDB, 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):
初期rootパスワードを入力(設定していないので空白のままEnter)
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDBroot user without the proper authorisation.
By default, MariaDB 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] Y
匿名ユーザを削除するかときいてくるので Y
Normally, root should only be allowed to connect from ‘localhost’. Thisensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] Y
rootによるリモートログインを許可しない設定にするので Y
… Success!
By default, MariaDB comes with a database named ‘test’ that anyone canaccess. This is also intended only for testing, and should be removedbefore moving into a production environment.
Remove test database and access to it? [Y/n] Y
テストデータベースと接続情報を削除するかを聞いてくるので Y
– Dropping test database…
… Success!
– Removing privileges on test database…
… Success!
Reloading the privilege tables will ensure that all changes made so farwill take effect immediately.
Reload privilege tables now? [Y/n] Y
上記設定を反映させるために特権テーブルをリロードするか Y
… Success!
Cleaning up…
All done! If you’ve completed all of the above steps, your MariaDBinstallation should now be secure.
Thanks for using MariaDB!
MariaDBで再度ログインする。
$ sudo mariadb
Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 2551 Server version: 10.1.23-MariaDB-9+deb9u1 Raspbian 9.0
Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.
MySQLのデーターベースに接続する。
MariaDB [(none)]> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
MariaDB [mysql]> select user,password,plugin from user;
+——+——————————————————————————-+————-+ | user | password | plugin | +——+——————————————————————————-+————-+ | root | *000000000000000xxxxxxxxxxxxxxxxxxxxxxxxx | unix_socket | +——+——————————————————————————-+————-+ 1 row in set (0.01 sec)
$ sudo useradd -M tmp
$ sudo gpasswd -a tmp sudo
Adding user tmp to group sudo
$ sudo passwd tmp
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
自動ログインユーザーをpiからtmpユーザーに変更
$ sudo vi /etc/lightdm/lightdm.conf
開いたlightdm.conf内容での変更箇所 #を先頭につけコメントアウト
autologin-user=pi
↓
# autologin-user=pi
保存。さらに次のファイルを開く。
$ sudo vi /etc/systemd/system/autologin@.service
開いたautologin@.service内容での変更箇所
$ sudo vi /etc/systemd/system/autologin@.service
ExecStart=-/sbin/agetty –autologin pi –noclear %I $TERM