Server Web Serverを監視する方法 サーバーが重いと感じたらこれ sudo ls /var/log/httpd/ top lessコマンドでログ内容を確認 sudo less /var/log/httpd/access_log sudo less /var/log/httpd... 2018.06.02 Server
Linux Swap領域のサイズを増やす方法 # dd if=/dev/zero of=/swapfile1 bs=1M count=512 # chmod 600 /swapfile1 # mkswap /swapfile1 # swapon /swapfile1 2018.04.29 LinuxServer
Linux Swap領域のサイズを増やす方法 AWSのEC2インスタンス(Amazon Linux)に対して、スワップファイルを作成して、Swap領域のサイズを512MBに増やす手順 # dd if=/dev/zero of=/swapfile1 bs=1M count=5... 2018.04.15 LinuxServer
Linux サーバーコマンド一覧 cd チェンジディレクトリ sudo /etc/init.d/httpd start Webサーバ再起動 sudo /etc/init.d/mysqld restart DB再起動 sudo yum update アップデート exit o... 2017.10.01 LinuxServer