(作業メモ 20240509) ubuntu24 利用の覚書

9 5月

ubuntu24 のインストールの雑記です。現在 virtualbox にて仮想で稼働している ubuntu 20 のサーバーを 24 へ移行するために色々と確認したいと思います。ホストは最終的には redhat ですが、以下の検証では windows 11 です。

入手先は,こちらです。

最初は、仮想ではなくて実機にインストールしてみました。インストールメディアの作り方に毎回悩みますが,このサイトに従いました。書き込みツールは Fedora Media Writer を使っています。windows で動くツールです。

実機へのインストールは今のところ問題が生じていません。

(20241227) 追記

virtualbox で利用してみました。virtualbox のバージョンが6系統の時はハングアップを繰り返していて、現状採用できないかと思ったのですが、virtualbox を 7.1.4 にすると、意外に安定しています。もう少し virtualbox が更新される必要があるのかもしれませんが、ホストの redhat を 9系統にして、virtukabox も 7.1.4 の最新バージョンでサーバーを稼働させようと考えています。

maxima の古いバージョン 5.36.0 を利用します。LISP は sbcl です。maxima はコンパイルをします。ubuntu 24 のデフォルトでは sbcl は 2.2.9 が用意されています。これを使ってコンパイルをしてみました。sbcl は synaptic でインストールしました。maxima のソースはここにある。圧縮ファイルを展開します。

cd ./maxima-5.36.0
./configure –enable-sbcl
make
sudo make install

コンパイルエラーはありませんでした。ubuntu 22 の sbcl の標準のバージョンではコンパイルエラーが生じていました。実際の動きは、これから確認しなければなりませんが。

前回、サーバーの OS を ubuntu 20 にしたときには、MySQL の仕様の変化に戸惑いました。今回参考にしたサイトはここです。まずいつものようにインストールします。

sudo apt install mysql-server

その後、mysql_secure_installation の実行です。下記のような対話的な設定です。

sudo mysql_secure_installation 

Securing the MySQL server deployment.

Connecting to MySQL using a blank password.

VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?

Press y|Y for Yes, any other key for No: y

There are three levels of password validation policy:

LOW    Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary                  file

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 2

Skipping password set for root as authentication with auth_socket is used by default.
If you would like to use password authentication instead, this can be done with the "ALTER_USER" command.
See https://dev.mysql.com/doc/refman/8.0/en/alter-user.html#alter-user-password-management for more information.

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? (Press y|Y for Yes, any other key for No) : y
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? (Press y|Y for Yes, any other key for No) : No

 ... skipping.
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? (Press y|Y for Yes, any other key for No) : y
 - 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? (Press y|Y for Yes, any other key for No) : y
Success.

All done! 

多少仕様が変わっていました。以前は上記の途中で root パスワードに関する設定があったのですが、今回はなし。root ユーザーでのリモート接続を許可しました。

とりあえず、先にクライアントを入れました。

sudo apt install mysql-client

データベースにログインします。この状態のとき、パスワードはついていません。

sudo mysql -u root

パスワード関連の設定をするために、mysql というデータベースに接続します。

mysql> 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

パスワードの設定などを表示してみます。

mysql> select User, Host, plugin from user;
+------------------+-----------+-----------------------+
| User             | Host      | plugin                |
+------------------+-----------+-----------------------+
| debian-sys-maint | localhost | caching_sha2_password |
| mysql.infoschema | localhost | caching_sha2_password |
| mysql.session    | localhost | caching_sha2_password |
| mysql.sys        | localhost | caching_sha2_password |
| root             | localhost | auth_socket           |
+------------------+-----------+-----------------------+
5 rows in set (0.00 sec)

root ユーザーのログイン設定は、auth_socket になっています。この場合 mysql のユーザーは ubuntu のユーザーと同じである必要があります。これを ubuntu から切り離します。同時にパスワードも設定します。

mysql> alter user 'root'@'localhost' identified with 'caching_sha2_password' by 'xxxxxxxxxxxxx';
Query OK, 0 rows affected (0.05 sec)

変更内容を反映させます?

mysql> flush privileges;
Query OK, 0 rows affected (0.03 sec)

再度、パスワードなどの設定を見てみましょう。

mysql> select User, Host, plugin from user;
+------------------+-----------+-----------------------+
| User             | Host      | plugin                |
+------------------+-----------+-----------------------+
| debian-sys-maint | localhost | caching_sha2_password |
| mysql.infoschema | localhost | caching_sha2_password |
| mysql.session    | localhost | caching_sha2_password |
| mysql.sys        | localhost | caching_sha2_password |
| root             | localhost | caching_sha2_password |
+------------------+-----------+-----------------------+
5 rows in set (0.00 sec)

変更されていました。いったん mysql を抜けます。

mysql> exit
Bye

ログインしてみます。先に決めたパスワードを使います。

mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 8.0.40-0ubuntu0.24.04.1 (Ubuntu)

Copyright (c) 2000, 2024, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> exit
Bye

ログインできました。続いて phpmyadmin をインストールします。apache や php は先にインストールしていました。

sudo apt install phpmyadmin

root でログインして、無事サイトを開くことができました。