トップ 追記

Rescue Unchor: トラブル レスキュー メモ


2024 Apr. 24 (Wed.) モニタ 非接続 で起動: nomodeset [長年日記]

_ GRUB

cat /etc/default/grub| grep nomodeset

GRUB_CMDLINE_LINUX="crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/rl_standby-swap rd.lvm.lv=rl_standby/root rd.lvm.lv=rl_standby/swap nomodeset"

2024 Feb. 22 (Thu.) [Content-Type] /usr/sbin/logwatch を us-ascii に [長年日記]

_ 8859 で検索して二行分

iso-8859-1 ⇒ us-ascii

if ( $Config{'format'} eq "html" ) {
	# $out_mime .= "Content-Type: text/html; charset=\"iso-8859-1\"\n\n";
	$out_mime .= "Content-Type: text/html; charset=\"us-ascii\"\n\n";
	} else {
	# $out_mime .= "Content-Type: text/plain; charset=\"iso-8859-1\"\n\n";
	$out_mime .= "Content-Type: text/plain; charset=\"us-ascii\"\n\n";
}

2024 Feb. 21 (Wed.) [err.] perl: startform [長年日記]

_ ssl_error_log に 下記

Can't locate object method "startform" via package "CGI" at

err. が

⇒ startform を start_form に全置換で解決

※endform も同様 (end_form) らしい


2024 Jan. 01 (Mon.) new year greetings [長年日記]

_ 2024 A Happy New Year!!

お世話になりました皆様

昨年もいろいろと 有り難うございました

本年もまた どうぞ宜しく御願い致します

___________________________

Unchor, Inc. / 01 Jan. 2024


2023 Dec. 03 (Sun.) yum downGrade [長年日記]

_ 互換性

mysql を 5.7.44 に upgrade したら、諸事情で用い

ている option @my.cnf の

tls_version=TLSv1

が効かなくなり、db server に接続できず。

downGrade することで解決。

yum downgrade mysql-community-common-5.7.42-1.el7.x86_64 \
mysql-community-libs-5.7.42-1.el7.x86_64 \
mysql-community-client-5.7.42-1.el7.x86_64 \
mysql-community-server-5.7.42-1.el7.x86_64 \
mysql-community-libs-compat-5.7.42-1.el7.x86_64

2023 Dec. 02 (Sat.) seLinux command [長年日記]

_ 大抵は無効化しているので

何時も忘れる

ls -Z
restorecon fileName
chcon -u **** fileName

2023 Nov. 29 (Wed.) root server B [長年日記]

_ もう wget を使う人もいないかもしれませんが

wget https://www.internic.net/domain/named.cache


2022 Dec. 31 (Sat.) new year greetings [長年日記]

_ 2023 A Happy New Year!!

お世話になりました皆様

昨年もいろいろと 有り難うございました

本年もまた どうぞ宜しく御願い致します

___________________________

Unchor, Inc. / 01 Jan. 2023


2022 Aug. 31 (Wed.) [ruby / bundle] update

_ [server] command

bundle

gem update --system

bundle clean --force

※bundle update digest


2022 Apr. 04 (Mon.) Windowsの標準アプリを削除する方法 [長年日記]