[Apache] httpd.confの文法チェックコマンド[Apache] httpd.confの文法チェックコマンド
以下。httpd.confが他ファイルをインクルードしている場合はそれらもチェックされる。 $ apachectl configtest 参考サイト apachectl – Apache HTTP Serve […]
以下。httpd.confが他ファイルをインクルードしている場合はそれらもチェックされる。 $ apachectl configtest 参考サイト apachectl – Apache HTTP Serve […]
crontab(cron)設定確認方法 | server-memo.net http://www.server-memo.net/tips/crontabfile.html crontabの書き方 | server-me […]
Visual StudioのGUIDGENみたいなツールがないかと探したらあったので覚え書き。 $ uuidgen 305b5b0c-4ebe-48e3-a60c-a3ed398b7724 $ uuidgen 4487a […]
ウェブサーバーの設定でちょっとハマッたので覚え書き 条件 ウェブサーバーはユーザapacheで実行される ユーザapacheはグループapacheに属する ログインして作業するのはユーザsuzukiである ユーザsuzu […]
長らく運営しているMODxベースのサイトがマルウェアに感染していた。見つけたのはホント偶然で、何気なくブラウザでページソースを表示してみたら、ページ末尾にSPAMリンクらしきものが埋め込まれいるのを発見。以前にも感染した […]
DigitalOceanはドキュメントが充実していて助かる。 初期設定 How To Use SSH Keys with DigitalOcean Droplets | DigitalOcean https://www. […]
MySQL (MariaDB) $ sudo yum install mariadb-server mariadb $ sudo systemctl start mariadb $ sudo mysql_secure_i […]
Apacheのインストール $ sudo yum -y install httpd ブート時の自動起動設定 $ sudo systemctl enable httpd.service バーチャルホストごとのパブリックディ […]
2GBのスワップの作成例 $ sudo fallocate -l 2G /swapfile $ sudo chmod 600 /swapfile $ sudo mkswap /swapfile $ sudo swapon […]
NTPサービスのインストール $ sudo yum install ntp NTPサービスの起動 $ sudo systemctl start ntpd ブート時の自動起動設定 $ sudo systemctl enab […]
利用可能なタイムゾーン一覧 $ sudo timedatectl list-timezones タイムゾーンの確認 $ sudo timedatectl タイムゾーン設定 $ sudo timedatectl set-t […]
ファイアーウォール起動 $ sudo systemctl start firewalld ブート時の自動起動設定 $ sudo systemctl enable firewalld サービス名の一覧 $ sudo fir […]