[skrb] JavaFX in the Box ControlsFX 準備編 (2017/12/23) [2018/02/02]
[skrb] JavaFX in the Box ControlsFX 準備編 その2 (2017/12/25) [2018/02/02]
モジュールの依存を調べる ... jdeps コマンドを使用 C:\controlsfxdemo>jdeps -cp lib\controlsfx-9.0.0.jar -s dist\controlsfxdemo.jar controlsfxdemo.jar -> lib\controlsfx-9.0.0.jar controlsfxdemo.jar -> java.base controlsfxdemo.jar -> javafx.fxml controlsfxdemo.jar -> javafx.graphics ただし、java.base だけは module-info.java に記述する必要はありません
[iTpro] JavaFXのGUI構築ツール、Scene BuilderでFXML編集 (2016/12/22) [2018/02/02]
[alephnull] Configuring MySQL/MariaDB to work with SSL/TLS (2017/07/07) [2018/02/02]
[Create/copy certificate into location] If you have a certificate and key from Let’s Encrypt, here’s how to repurpose them for MySQL: # cp /etc/letsencrypt/live/example.com/fullchain.pem /etc/mysql/fullchain.pem # openssl rsa -in /etc/letsencrypt/live/example.com/privkey.pem -out /etc/mysql/privkey.pem # chmod 444 /etc/mysql/fullchain.pem # chmod 400 /etc/mysql/privkey.pem # chown mysql:mysql /etc/mysql/fullchain.pem /etc/mysql/privkey.pem Note that you’ll probably want to use a hook to automatically do this every time that the certificate is renewed if you’re using Let’s Encrypt. If your MySQL instance runs as a different user, modify thechowncommand accordingly. [Update MySQL config] #vi /etc/mysql/my.cnfand add the following lines to the[mysqld]bind-address = 1.2.3.4 ssl-cert=/etc/mysql/fullchain.pem ssl-key=/etc/mysql/privkey.pem Substitute1.2.3.4with the IP address of your server. [Restart MySQL] #systemctl restart mysql
秘密鍵のエラーが出る時は (OpenSSL のバージョンの問題らしい)、 $ openssl rsa -in XXX-key.pem -out XXX-key-pkcs1.pem

