centos環境で、サーバ起動と同時に他スクリプトを実行する手順 centos
centos環境で、サーバ起動と同時に他スクリプトを実行する
・/etc/rc.d/rc.local を編集する。
→簡易ならこのファイルに直接書くか、実行したいスクリプトを実行文を書く
・/etc/rc.d/rc.local に実行権限を与える
→chmod u+x /etc/rc.d/rc.local 実行権限をつけた これで
2022-05-24 17:06:02
error: I need a copy of *nroff to format the documentation のエラーではまったときの解決策 centos
./configure --prefix=$INSTALL_DIR
&& make && make install
実行時に
error: I need a copy of *nroff to format the documentation
というエラー
■解決策
# yum
2022-02-8 21:45:42
curl: (35) TCP connection reset by peerのエラーでたので対応したよ! centos
はてなのマカレル(mackerel.io)をインストールしようとしたら以下のエラーが発生
curl をいれなおしたら、次は無事に実行できたよ!
# curl -fsSL https://mackerel.io/file/script/setup-all-yum-v2.sh | MACKEREL_APIKEY= ほげほげ sh
curl: (35) TCP
2018-11-25 07:13:57
centos7以降でのサービス自動起動設定 centos
centos7以降でのサービス自動起動設定
・自動起動のサービス一覧表示
systemctl list-unit-files -t service
・自動起動設定
systemctl stop nginx.service
systemctl start nginx.service
systemctl enable
2018-09-25 03:09:00