Archive for the ‘Serverの構築と運用覚書き’ Category



php.iniの変更をhttpdに反映するにはphp-fpmの再起動が必要

Friday, March 8th, 2024

WordPressでupload file sizeの変更しようとpho.iniの該当部を変更し、apacheを再起動したが反映されなかった。

調べてみると、AlmaLinux8(CentOs8)以降では、apacheでphpを動作させるのにphp-fpm(PHP FastCGI Process Manaager)が使われるようになっており、php.iniの変更を反映させるためにはphp-fpmを再起動する必要ということのようだ。

php.iniの修正後、以下のコマンドで反映できる:

[root@Server02 ~]# systemctl restart php-fpm

php-fpmの状態チェックは以下:

[root@Server02 ~]# systemctl status php-fpm
● php-fpm.service - The PHP FastCGI Process Manager
     Loaded: loaded (/usr/lib/systemd/system/php-fpm.service; disabled; preset: disabled)
     Active: active (running) since Fri 2024-03-08 14:16:26 JST; 13s ago
   Main PID: 2845 (php-fpm)
     Status: "Processes active: 0, idle: 5, Requests: 0, slow: 0, Traffic: 0req/sec"
      Tasks: 6 (limit: 203017)
     Memory: 12.6M
        CPU: 24ms
     CGroup: /system.slice/php-fpm.service
             ├─2845 "php-fpm: master process (/etc/php-fpm.conf)"
             ├─2847 "php-fpm: pool www"
             ├─2848 "php-fpm: pool www"
             ├─2849 "php-fpm: pool www"
             ├─2850 "php-fpm: pool www"
             └─2851 "php-fpm: pool www"

Mar 08 14:16:26 Server02.yamasnet.com systemd[1]: Starting The PHP FastCGI Process Manager...
Mar 08 14:16:26 Server02.yamasnet.com systemd[1]: Started The PHP FastCGI Process Manager.

なお、php-fpm再起動後にhttpdの再起動は必要ない。



LetsEncrypt SSL 証明書を作り直した

Monday, February 26th, 2024

証明書の期限が近付いたとのE-mailを受け取ったので更新作業を行った。手続きで間違いをしERRORがでたので新規に取り直した。

以下、証明書取得時のログを示す:

[root@Server02 ~]# certbot certonly --manual
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Enter email address (used for urgent renewal and security notices)
 (Enter 'c' to cancel): *********@yamasnet.com

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Please read the Terms of Service at
https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf. You must
agree in order to register with the ACME server. Do you agree?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: Y

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Would you be willing, once your first certificate is successfully issued, to
share your email address with the Electronic Frontier Foundation, a founding
partner of the Let's Encrypt project and the non-profit organization that
develops Certbot? We'd like to send you email about our work encrypting the web,
EFF news, campaigns, and ways to support digital freedom.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: Y
Account registered.
Please enter the domain name(s) you would like on your certificate (comma and/or
space separated) (Enter 'c' to cancel): *.yamasnet.com
Requesting a certificate for *.yamasnet.com

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Please deploy a DNS TXT record under the name:

_acme-challenge.yamasnet.com.

with the following value:

*******************************************

Before continuing, verify the TXT record has been deployed. Depending on the DNS
provider, this may take some time, from a few seconds to multiple minutes. You can
check if it has finished deploying with aid of online tools, such as the Google
Admin Toolbox: https://toolbox.googleapps.com/apps/dig/#TXT/_acme-challenge.yamasnet.com.
Look for one or more bolded line(s) below the line ';ANSWER'. It should show the
value(s) you've just added.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Press Enter to Continue

Successfully received certificate.
Certificate is saved at: /etc/letsencrypt/live/yamasnet.com/fullchain.pem
Key is saved at:         /etc/letsencrypt/live/yamasnet.com/privkey.pem
This certificate expires on 2024-05-26.
These files will be updated when the certificate renews.

NEXT STEPS:
- This certificate will not be renewed automatically. Autorenewal of --manual certificates requires the use of an authentication hook script (--manual-auth-hook) but one was not provided. To renew this certificate, repeat this same certbot command before the certificate's expiry date.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
If you like Certbot, please consider supporting our work by:
 * Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
 * Donating to EFF:                    https://eff.org/donate-le
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

証明書の確認:

[root@Server02 ~]# certbot certificates
Saving debug log to /var/log/letsencrypt/letsencrypt.log

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Found the following certs:
  Certificate Name: yamasnet.com
    Serial Number: 3832a34231be263f78a606e8c13042ad4f5
    Key Type: ECDSA
    Domains: *.yamasnet.com
    Expiry Date: 2024-05-26 06:00:14+00:00 (VALID: 89 days)
    Certificate Path: /etc/letsencrypt/live/yamasnet.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/yamasnet.com/privkey.pem
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

証明書を反映するため httpdを再起動

systemctl restart httpd

証明書の有効期限

発行日	    2024年2月26日月曜日 15:00:15
有効期限	2024年5月26日日曜日 15:00:14

  



julia のインストールは juliaup 経由が簡単

Sunday, February 25th, 2024

Juliaのインストールはインストーラーjuliaupを用いるのが簡単。

Juliaのofficial siteでも、「all julia versions are installable through Juliaup」とされており、これが標準的のようだ。

Juliaup は以下でインストールされ、利用可能になる(Juliaup – Julia version manager参照):

$ curl -fsSL https://install.julialang.org | sh -s -- --yes

インストール後、juliaを動作させ、binaryの位置を確認:

(base) [newana@Server02 ~]$ julia
               _
   _       _ _(_)_     |  Documentation: https://docs.julialang.org
  (_)     | (_) (_)    |
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 1.10.1 (2024-02-13)
 _/ |\__'_|_|_|\__'_|  |  Official https://julialang.org/ release
|__/                   |

julia> exit()

(base) [newana@Server02 ~]$ which julia
~/.juliaup/bin/julia


AlmaLinux を vers.9.2 からvers.9.3 に更新

Saturday, January 13th, 2024

我が自宅サーバーのOS、AlmaLinuxのversionを更新した。

更新は下記コマンドで実施:

[root@server02 ~]#  dnf update -y

更新作業後、systemを rebootし、更新後のversionを確認

[root@server02 ~]# reboot

[root@Server02 ~]# cat /etc/redhat-release
AlmaLinux release 9.3 (Shamrock Pampas Cat)

update時のLog の最終に出力されたUpgradedを以下にコピー:


Upgraded:
  NetworkManager-1:1.44.0-3.el9.x86_64                         NetworkManager-libnm-1:1.44.0-3.el9.x86_64         NetworkManager-team-1:1.44.0-3.el9.x86_64           
  NetworkManager-tui-1:1.44.0-3.el9.x86_64                     almalinux-gpg-keys-9.3-1.el9.x86_64                almalinux-release-9.3-1.el9.x86_64                  
  almalinux-repos-9.3-1.el9.x86_64                             alsa-lib-1.2.9-1.el9.x86_64                        alternatives-1.24-1.el9.x86_64                      
  annobin-12.12-1.el9.x86_64                                   apr-1.7.0-12.el9_3.x86_64                          apr-devel-1.7.0-12.el9_3.x86_64                     
  apr-util-1.6.1-23.el9.x86_64                                 apr-util-bdb-1.6.1-23.el9.x86_64                   apr-util-devel-1.6.1-23.el9.x86_64                  
  apr-util-openssl-1.6.1-23.el9.x86_64                         audit-3.0.7-104.el9.x86_64                         audit-libs-3.0.7-104.el9.x86_64                     
  authselect-1.2.6-2.el9.x86_64                                authselect-libs-1.2.6-2.el9.x86_64                 avahi-glib-0.8-15.el9.x86_64                        
  avahi-libs-0.8-15.el9.x86_64                                 binutils-2.35.2-42.el9.x86_64                      binutils-gold-2.35.2-42.el9.x86_64                  
  c-ares-1.19.1-1.el9.x86_64                                   clamav-1.0.4-1.el9.x86_64                          clamav-filesystem-1.0.4-1.el9.noarch                
  clamav-freshclam-1.0.4-1.el9.x86_64                          clamav-lib-1.0.4-1.el9.x86_64                      clamd-1.0.4-1.el9.x86_64                            
  cmake-3.20.2-9.el9_3.x86_64                                  cmake-data-3.20.2-9.el9_3.noarch                   cmake-filesystem-3.20.2-9.el9_3.x86_64              
  cmake-rpm-macros-3.20.2-9.el9_3.noarch                       cpp-11.4.1-2.1.el9.alma.x86_64                     crypto-policies-20230731-1.git94f0e2c.el9_3.1.noarch
  crypto-policies-scripts-20230731-1.git94f0e2c.el9_3.1.noarch cryptsetup-libs-2.6.0-3.el9.x86_64                 cups-libs-1:2.3.3op2-21.el9.x86_64                  
  curl-7.76.1-26.el9_3.2.x86_64                                cyrus-imapd-3.4.1-10.el9.x86_64                    cyrus-imapd-libs-3.4.1-10.el9.x86_64                
  cyrus-imapd-utils-3.4.1-10.el9.x86_64                        dbus-1:1.12.20-8.el9.x86_64                        dbus-common-1:1.12.20-8.el9.noarch                  
  dbus-libs-1:1.12.20-8.el9.x86_64                             device-mapper-9:1.02.195-3.el9.x86_64              device-mapper-event-9:1.02.195-3.el9.x86_64         
  device-mapper-event-libs-9:1.02.195-3.el9.x86_64             device-mapper-libs-9:1.02.195-3.el9.x86_64         device-mapper-persistent-data-1.0.6-3.el9_3.x86_64  
  dnf-4.14.0-8.el9.alma.1.noarch                               dnf-data-4.14.0-8.el9.alma.1.noarch                dnf-plugins-core-4.3.0-11.el9_3.alma.1.noarch       
  dovecot-1:2.3.16-10.el9.x86_64                               dracut-057-44.git20230822.el9.x86_64               dracut-config-rescue-057-44.git20230822.el9.x86_64  
  dracut-network-057-44.git20230822.el9.x86_64                 dracut-squash-057-44.git20230822.el9.x86_64        elfutils-debuginfod-client-0.189-3.el9.x86_64       
  elfutils-default-yama-scope-0.189-3.el9.noarch               elfutils-libelf-0.189-3.el9.x86_64                 elfutils-libs-0.189-3.el9.x86_64                    
  emacs-filesystem-1:27.2-9.el9.noarch                         epel-release-9-7.el9.noarch                        ethtool-2:6.2-1.el9.x86_64                          
  ffmpeg-5.1.4-1.el9.x86_64                                    ffmpeg-devel-5.1.4-1.el9.x86_64                    ffmpeg-libs-5.1.4-1.el9.x86_64                      
  file-5.39-14.el9.x86_64                                      file-libs-5.39-14.el9.x86_64                       findutils-1:4.8.0-6.el9.x86_64                      
  firewalld-1.2.5-2.el9_3.noarch                               firewalld-filesystem-1.2.5-2.el9_3.noarch          flatpak-1.12.8-1.el9.x86_64                         
  flatpak-selinux-1.12.8-1.el9.noarch                          flatpak-session-helper-1.12.8-1.el9.x86_64         fuse-common-3.10.2-6.el9.x86_64                     
  fwupd-1.8.16-1.el9.alma.1.x86_64                             gcc-11.4.1-2.1.el9.alma.x86_64                     gcc-plugin-annobin-11.4.1-2.1.el9.alma.x86_64       
  gettext-0.21-8.el9.x86_64                                    gettext-libs-0.21-8.el9.x86_64                     glib2-2.68.4-11.el9.x86_64                          
  glibc-2.34-83.el9_3.7.x86_64                                 glibc-common-2.34-83.el9_3.7.x86_64                glibc-devel-2.34-83.el9_3.7.x86_64                  
  glibc-gconv-extra-2.34-83.el9_3.7.x86_64                     glibc-headers-2.34-83.el9_3.7.x86_64               glibc-langpack-ja-2.34-83.el9_3.7.x86_64            
  glibc-minimal-langpack-2.34-83.el9_3.7.x86_64                gmp-1:6.2.0-13.el9.x86_64                          gnupg2-2.3.3-4.el9.x86_64                           
  gnutls-3.7.6-23.el9.x86_64                                   go-srpm-macros-3.2.0-2.el9.noarch                  google-chrome-stable-120.0.6099.216-1.x86_64        
  grub2-common-1:2.06-70.el9_3.1.alma.1.noarch                 grub2-efi-x64-1:2.06-70.el9_3.1.alma.1.x86_64      grub2-tools-1:2.06-70.el9_3.1.alma.1.x86_64         
  grub2-tools-efi-1:2.06-70.el9_3.1.alma.1.x86_64              grub2-tools-extra-1:2.06-70.el9_3.1.alma.1.x86_64  grub2-tools-minimal-1:2.06-70.el9_3.1.alma.1.x86_64 
  gstreamer1-1.22.1-2.el9.x86_64                               gstreamer1-plugins-base-1.22.1-1.el9.x86_64        httpd-2.4.57-5.el9.x86_64                           
  httpd-core-2.4.57-5.el9.x86_64                               httpd-devel-2.4.57-5.el9.x86_64                    httpd-filesystem-2.4.57-5.el9.noarch                
  httpd-tools-2.4.57-5.el9.x86_64                              hwdata-0.348-9.11.el9.noarch                       iproute-6.2.0-5.el9.x86_64                          
  iproute-tc-6.2.0-5.el9.x86_64                                iputils-20210202-9.el9.x86_64                      irqbalance-2:1.9.2-3.el9.x86_64                     
  iwl100-firmware-39.31.5.1-140.el9_3.noarch                   iwl1000-firmware-1:39.31.5.1-140.el9_3.noarch      iwl105-firmware-18.168.6.1-140.el9_3.noarch         
  iwl135-firmware-18.168.6.1-140.el9_3.noarch                  iwl2000-firmware-18.168.6.1-140.el9_3.noarch       iwl2030-firmware-18.168.6.1-140.el9_3.noarch        
  iwl3160-firmware-1:25.30.13.0-140.el9_3.noarch               iwl5000-firmware-8.83.5.1_1-140.el9_3.noarch       iwl5150-firmware-8.24.2.2-140.el9_3.noarch          
  iwl6000g2a-firmware-18.168.6.1-140.el9_3.noarch              iwl6050-firmware-41.28.5.1-140.el9_3.noarch        iwl7260-firmware-1:25.30.13.0-140.el9_3.noarch      
  kbd-2.4.0-9.el9.x86_64                                       kbd-misc-2.4.0-9.el9.noarch                        kernel-headers-5.14.0-362.13.1.el9_3.x86_64         
  kernel-srpm-macros-1.0-13.el9.noarch                         kernel-tools-5.14.0-362.13.1.el9_3.x86_64          kernel-tools-libs-5.14.0-362.13.1.el9_3.x86_64      
  kexec-tools-2.0.26-8.el9.x86_64                              kmod-28-9.el9.x86_64                               kmod-libs-28-9.el9.x86_64                           
  kpartx-0.8.7-22.el9.x86_64                                   krb5-libs-1.21.1-1.el9.x86_64                      libX11-1.7.0-8.el9.x86_64                           
  libX11-common-1.7.0-8.el9.noarch                             libX11-xcb-1.7.0-8.el9.x86_64                      libaom-3.8.0-1.el9.x86_64                           
  libatomic-11.4.1-2.1.el9.alma.x86_64                         libavdevice-5.1.4-1.el9.x86_64                     libblkid-2.37.4-15.el9.x86_64                       
  libbpf-2:1.2.0-1.el9.x86_64                                  libcanberra-0.30-27.el9.x86_64                     libcanberra-gtk3-0.30-27.el9.x86_64                 
  libcurl-7.76.1-26.el9_3.2.x86_64                             libdnf-0.69.0-6.el9_3.alma.1.x86_64                libdrm-2.4.115-1.el9.x86_64                         
  libedit-3.1-38.20210216cvs.el9.x86_64                        libfastjson-0.99.9-5.el9.x86_64                    libfdisk-2.37.4-15.el9.x86_64                       
  libffi-3.4.2-8.el9.x86_64                                    libfido2-1.13.0-1.el9.x86_64                       libgcc-11.4.1-2.1.el9.alma.x86_64                   
  libgomp-11.4.1-2.1.el9.alma.x86_64                           libgusb-0.3.8-2.el9.x86_64                         libibverbs-46.0-1.el9.x86_64                        
  libldb-2.7.2-2.el9.x86_64                                    libmount-2.37.4-15.el9.x86_64                      libnghttp2-1.43.0-5.el9_3.1.x86_64                  
  libopendkim-2.11.0-0.36.el9.x86_64                           libopenmpt-0.7.3-1.el9.x86_64                      libpq-13.11-1.el9.x86_64                            
  librsvg2-2.50.7-2.el9.x86_64                                 libsemanage-3.5-2.el9.x86_64                       libshaderc-2023.4-1.el9.x86_64                      
  libsmartcols-2.37.4-15.el9.x86_64                            libsmbclient-4.18.6-101.el9_3.alma.1.x86_64        libsolv-0.7.24-2.el9.x86_64                         
  libssh-0.10.4-11.el9.x86_64                                  libssh-config-0.10.4-11.el9.noarch                 libsss_certmap-2.9.1-4.el9_3.1.alma.1.x86_64        
  libsss_idmap-2.9.1-4.el9_3.1.alma.1.x86_64                   libsss_nss_idmap-2.9.1-4.el9_3.1.alma.1.x86_64     libsss_sudo-2.9.1-4.el9_3.1.alma.1.x86_64           
  libstdc++-11.4.1-2.1.el9.alma.x86_64                         libtalloc-2.4.0-2.el9.x86_64                       libtdb-1.4.8-2.el9.x86_64                           
  libtevent-0.14.1-2.el9.x86_64                                libtiff-4.4.0-10.el9.x86_64                        libtirpc-1.3.3-2.el9.x86_64                         
  libuser-0.63-13.el9.x86_64                                   libuuid-2.37.4-15.el9.x86_64                       libvpx-1.9.0-7.el9_2.alma.1.x86_64                  
  libwbclient-4.18.6-101.el9_3.alma.1.x86_64                   libwebp-1.2.0-8.el9_3.x86_64                       libxml2-2.9.13-5.el9_3.x86_64                       
  linux-firmware-20230814-140.el9_3.noarch                     linux-firmware-whence-20230814-140.el9_3.noarch    llvm-libs-16.0.6-4.el9.alma.1.x86_64                
  lshw-B.02.19.2-10.el9.x86_64                                 lua-libs-5.4.4-4.el9.x86_64                        lvm2-9:2.03.21-3.el9.x86_64                         
  lvm2-libs-9:2.03.21-3.el9.x86_64                             mecab-0.996-3.el9.4.x86_64                         mesa-filesystem-23.1.4-1.el9.x86_64                 
  mesa-libEGL-23.1.4-1.el9.x86_64                              mesa-libGL-23.1.4-1.el9.x86_64                     mesa-libgbm-23.1.4-1.el9.x86_64                     
  mesa-libglapi-23.1.4-1.el9.x86_64                            mesa-vulkan-drivers-23.1.4-1.el9.x86_64            microcode_ctl-4:20230808-2.el9.noarch               
  mod_http2-1.15.19-5.el9.x86_64                               mod_lua-2.4.57-5.el9.x86_64                        mod_ssl-1:2.4.57-5.el9.x86_64                       
  ncurses-6.2-10.20210508.el9.x86_64                           ncurses-base-6.2-10.20210508.el9.noarch            ncurses-libs-6.2-10.20210508.el9.x86_64             
  nftables-1:1.0.4-11.el9_3.x86_64                             nginx-filesystem-1:1.20.1-14.el9_2.1.alma.1.noarch nodejs-1:16.20.2-3.el9_2.x86_64                     
  nodejs-docs-1:16.20.2-3.el9_2.noarch                         nodejs-full-i18n-1:16.20.2-3.el9_2.x86_64          nodejs-libs-1:16.20.2-3.el9_2.x86_64                
  npm-1:8.19.4-1.16.20.2.3.el9_2.x86_64                        nspr-4.35.0-4.el9_3.x86_64                         nss-3.90.0-4.el9_3.x86_64                           
  nss-softokn-3.90.0-4.el9_3.x86_64                            nss-softokn-freebl-3.90.0-4.el9_3.x86_64           nss-sysinit-3.90.0-4.el9_3.x86_64                   
  nss-util-3.90.0-4.el9_3.x86_64                               numactl-libs-2.0.16-1.el9.x86_64                   opendkim-2.11.0-0.36.el9.x86_64                     
  openldap-2.6.3-1.el9.x86_64                                  openldap-compat-2.6.3-1.el9.x86_64                 openldap-devel-2.6.3-1.el9.x86_64                   
  openssh-8.7p1-34.el9.x86_64                                  openssh-clients-8.7p1-34.el9.x86_64                openssh-server-8.7p1-34.el9.x86_64                  
  openssl-1:3.0.7-24.el9.x86_64                                openssl-libs-1:3.0.7-24.el9.x86_64                 osinfo-db-20230518-1.el9.noarch                     
  ostree-libs-2023.6-1.el9.x86_64                              pam-1.5.1-15.el9.x86_64                            perl-Cyrus-3.4.1-10.el9.x86_64                      
  perl-HTTP-Tiny-0.076-461.el9.noarch                          php-8.0.30-1.el9_2.x86_64                          php-cli-8.0.30-1.el9_2.x86_64                       
  php-common-8.0.30-1.el9_2.x86_64                             php-fpm-8.0.30-1.el9_2.x86_64                      php-gd-8.0.30-1.el9_2.x86_64                        
  php-mbstring-8.0.30-1.el9_2.x86_64                           php-mysqlnd-8.0.30-1.el9_2.x86_64                  php-opcache-8.0.30-1.el9_2.x86_64                   
  php-pdo-8.0.30-1.el9_2.x86_64                                php-xml-8.0.30-1.el9_2.x86_64                      pipewire-0.3.67-2.el9.x86_64                        
  pipewire-alsa-0.3.67-2.el9.x86_64                            pipewire-libs-0.3.67-2.el9.x86_64                  pipewire-pulseaudio-0.3.67-2.el9.x86_64             
  pixman-0.40.0-6.el9_3.x86_64                                 policycoreutils-3.5-3.el9_3.x86_64                 policycoreutils-python-utils-3.5-3.el9_3.noarch     
  poppler-21.01.0-18.el9.x86_64                                poppler-glib-21.01.0-18.el9.x86_64                 postfix-2:3.5.9-24.el9.x86_64                       
  procps-ng-3.3.17-13.el9.x86_64                               pyproject-srpm-macros-1.9.0-1.el9.noarch           python3-3.9.18-1.el9_3.x86_64                       
  python3-audit-3.0.7-104.el9.x86_64                           python3-dateutil-1:2.8.1-7.el9.noarch              python3-dnf-4.14.0-8.el9.alma.1.noarch              
  python3-dnf-plugins-core-4.3.0-11.el9_3.alma.1.noarch        python3-firewall-1.2.5-2.el9_3.noarch              python3-hawkey-0.69.0-6.el9_3.alma.1.x86_64         
  python3-libdnf-0.69.0-6.el9_3.alma.1.x86_64                  python3-libs-3.9.18-1.el9_3.x86_64                 python3-libsemanage-3.5-2.el9.x86_64                
  python3-nftables-1:1.0.4-11.el9_3.x86_64                     python3-pip-wheel-21.2.3-7.el9.noarch              python3-policycoreutils-3.5-3.el9_3.noarch          
  python3-rpm-4.16.1.3-25.el9.x86_64                           python3-setools-4.4.3-1.el9.x86_64                 qt5-srpm-macros-5.15.9-1.el9.noarch                 
  rav1e-libs-0.6.6-3.el9.x86_64                                redhat-rpm-config-201-1.el9.alma.noarch            remi-release-9.3-3.el9.remi.noarch                  
  rpm-4.16.1.3-25.el9.x86_64                                   rpm-build-libs-4.16.1.3-25.el9.x86_64              rpm-libs-4.16.1.3-25.el9.x86_64                     
  rpm-plugin-audit-4.16.1.3-25.el9.x86_64                      rpm-plugin-selinux-4.16.1.3-25.el9.x86_64          rpm-sign-libs-4.16.1.3-25.el9.x86_64                
  rsyslog-8.2102.0-117.el9.x86_64                              samba-client-libs-4.18.6-101.el9_3.alma.1.x86_64   samba-common-4.18.6-101.el9_3.alma.1.noarch         
  samba-common-libs-4.18.6-101.el9_3.alma.1.x86_64             selinux-policy-38.1.23-1.el9.noarch                selinux-policy-targeted-38.1.23-1.el9.noarch        
  sendmail-milter-8.16.1-11.el9.x86_64                         shadow-utils-2:4.9-8.el9.x86_64                    spirv-tools-libs-2023.1-3.el9.x86_64                
  sssd-client-2.9.1-4.el9_3.1.alma.1.x86_64                    sssd-common-2.9.1-4.el9_3.1.alma.1.x86_64          sssd-kcm-2.9.1-4.el9_3.1.alma.1.x86_64              
  systemd-252-18.el9.x86_64                                    systemd-libs-252-18.el9.x86_64                     systemd-pam-252-18.el9.x86_64                       
  systemd-rpm-macros-252-18.el9.noarch                         systemd-udev-252-18.el9.x86_64                     systemtap-sdt-devel-4.9-3.el9.x86_64                
  tpm2-tss-3.2.2-2.el9.x86_64                                  tracker-miners-3.1.2-4.el9_3.x86_64                tzdata-2023d-1.el9.noarch                           
  usbutils-015-1.el9.x86_64                                    util-linux-2.37.4-15.el9.x86_64                    util-linux-core-2.37.4-15.el9.x86_64                
  vulkan-loader-1.3.250.1-1.el9.x86_64                         webkit2gtk3-jsc-2.40.5-1.el9_3.1.x86_64            which-2.21-29.el9.x86_64                            
  wireplumber-0.4.14-1.el9.x86_64                              wireplumber-libs-0.4.14-1.el9.x86_64               xfsprogs-5.19.0-4.el9.x86_64                        
  yum-4.14.0-8.el9.alma.1.noarch                               zimg-3.0.5-1.el9.x86_64                            zlib-1.2.11-40.el9.x86_64                           
Installed:
  kbd-legacy-2.4.0-9.el9.noarch                      kernel-5.14.0-362.13.1.el9_3.x86_64                     kernel-core-5.14.0-362.13.1.el9_3.x86_64                
  kernel-modules-5.14.0-362.13.1.el9_3.x86_64        kernel-modules-core-5.14.0-362.13.1.el9_3.x86_64        rpm-plugin-systemd-inhibit-4.16.1.3-25.el9.x86_64       

Complete!

 



Asahi-Net、固定IPアドレスサービスを値上げだって!!

Wednesday, December 20th, 2023

Asahi-Netの固定IPアドレスの利用料金が値上げとの「お知らせ」がとどいていた。

「お知らせ」のタイトルは「固定IPアドレスサービスのリニューアルのお知らせ」というもの。22024年2月1日から変更されるという。

月額利用料については、現在の 880円から1,980円になるとのこと。

そして「リニューアル」と称する「変更内容」は次のようになっている:

  • IPoE方式に対応した固定IPアドレスオプションの提供
    従来から提供しているPPPoEに加え、光回線接続サービスを対象に新たにIPoE方式でのIPv4固定IPアドレスを提供いたします。

現在の契約では、PPPoE方式でのIPv4固定IPアドレスとIPoE方式によるIPv6の利用が可能であるが、変更後も、PPPoEによるIPv4固定アドレスの利用を維持されるのかどうか、IPv6についての半固定のアドレスが変更になるのかよくわからない。

Asahi-Netのカスタマーセンターに連絡してみたが技術的な内容については明らかにしてないとのこと。困ったことだ。

利用者側が、変更後、どのような影響を受けるか明らかにされてないというのは理解できない。