LoginSignup
0
0

More than 5 years have passed since last update.

サーバ【自分用】

Last updated at Posted at 2017-03-14

Listenされているポートの確認

netstat -tlnp

プロセスが完全であるか確認

ps auxwwwf | grep -i "httpd"

※nginxを使用している場合

ps auxwwwf | grep nginx

同時接続数の上限に引っかかっていないか確認

ps axuxwwwf | grep httpd
grep -i "include" /etc/httpd/httpd.conf
netstat -tanp | grep -i "ESTABLISH" | wc -l

データベースの処理時間の確認

top -d 1

どのプロセスがCPUを使用しているか確認

mysql -u root -p
ERROR 1040 (00000): Too many connections
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0