60歳からITエンジニアを目指す無謀なブログ

60歳で定年し、職種を変更してIT技術者を目指すブログです。

2023-01-12から1日間の記事一覧

apache2 起動・停止

起動 sudo systemctl start httpd 停止 sudo systemctl stop httpd 自動起動(Boot時に自動でStartする) sudo systemctl enable httpd 即時自動起動 sudo systemctl enable --now httpd 自動起動削除 sudo systemctl disable httpd httpd 停止 sudo systemc…

bash シェルスクリプト を少し

ー--------------.bashrc file------------------------------------------- # .bashrc # Source global definitionsif [ -f /etc/bashrc ]; then . /etc/bashrcfi # User specific environmentif ! "$PATH" =~ "$HOME/.local/bin:$HOME/bin:"…