Advertisement
Guest User

Untitled

a guest
Dec 9th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.88 KB | None | 0 0
  1. # php -v
  2. PHP 7.4.13 (cli) (built: Nov 30 2020 20:40:09) ( NTS )
  3. Copyright (c) The PHP Group
  4. Zend Engine v3.4.0, Copyright (c) Zend Technologies
  5.     with Zend OPcache v7.4.13, Copyright (c), by Zend Technologies
  6.  
  7. # service --status-all
  8.  [ - ]  apache-htcacheclean
  9.  [ + ]  apache2
  10.  [ + ]  apparmor
  11.  [ + ]  bind9
  12.  [ + ]  cloud-config
  13.  [ + ]  cloud-final
  14.  [ + ]  cloud-init
  15.  [ + ]  cloud-init-local
  16.  [ + ]  cron
  17.  [ + ]  dbus
  18.  [ + ]  dovecot
  19.  [ - ]  exim4
  20.  [ - ]  hwclock.sh
  21.  [ + ]  kmod
  22.  [ + ]  memcached
  23.  [ + ]  mysql
  24.  [ + ]  networking
  25.  [ + ]  ntp
  26.  [ + ]  php7.4-fpm
  27.  [ + ]  postfix
  28.  [ + ]  procps
  29.  [ + ]  proftpd
  30.  [ + ]  qemu-guest-agent
  31.  [ + ]  resolvconf
  32.  [ - ]  rsync
  33.  [ + ]  rsyslog
  34.  [ - ]  screen-cleanup
  35.  [ + ]  ssh
  36.  [ - ]  sudo
  37.  [ + ]  udev
  38.  [ + ]  unattended-upgrades
  39.  [ + ]  unscd
  40.  
  41.  
  42. ~# service php7.4-fpm status
  43. ● php7.4-fpm.service - The PHP 7.4 FastCGI Process Manager
  44.    Loaded: loaded (/lib/systemd/system/php7.4-fpm.service; enabled; vendor preset: enabled)
  45.    Active: active (running) since Wed 2020-12-09 12:23:30 CET; 1h 17min ago
  46.      Docs: man:php-fpm7.4(8)
  47.   Process: 1791 ExecStartPost=/usr/lib/php/php-fpm-socket-helper install /run/php/php-fpm.sock /etc/php/7.4/fpm/pool.d/www.conf 74 (code=exited, statu
  48.  Main PID: 1788 (php-fpm7.4)
  49.    Status: "Processes active: 0, idle: 1, Requests: 0, slow: 0, Traffic: 0req/sec"
  50.     Tasks: 2 (limit: 2318)
  51.    Memory: 13.9M
  52.    CGroup: /system.slice/php7.4-fpm.service
  53.            ├─1788 php-fpm: master process (/etc/php/7.4/fpm/php-fpm.conf)
  54.            └─1790 php-fpm: pool dummy
  55.  
  56.  
  57. ~# ps faux | grep fpm
  58. root      5532  0.0  0.0   3084   884 pts/1    S+   14:25   0:00  |       \_ grep fpm
  59. root      4076  0.0  1.9 254976 38600 ?        Ss   13:53   0:00 php-fpm: master process (/etc/php/7.4/fpm/php-fpm.conf)
  60. www-data  4077  0.0  0.5 254976 10468 ?        S    13:53   0:00  \_ php-fpm: pool dummy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement