# Sifangda application server package and service evidence
timestamp=2026-07-30 20:51:07 CST
## DNF history
ID     | Command line             | Date and time    | Action(s)      | Altered
-------------------------------------------------------------------------------
     3 | -y --disablerepo=* --rep | 2026-07-30 20:24 | Install        |    3   
     2 | -y --disablerepo=* --rep | 2026-07-30 20:22 | Install        |   61   
     1 |                          | 2026-07-30 14:43 | Install        |  521 EE
## Relevant installed RPMs
autoconf-2.71-5.oe2403.noarch
automake-1.16.5-8.oe2403.noarch
bison-3.8.2-2.oe2403.x86_64
freetype-2.13.2-1.oe2403.x86_64
freetype-devel-2.13.2-1.oe2403.x86_64
gcc-12.3.1-30.oe2403.x86_64
gcc-c++-12.3.1-30.oe2403.x86_64
gmp-devel-6.3.0-2.oe2403.x86_64
libXpm-3.5.17-1.oe2403.x86_64
libXpm-devel-3.5.17-1.oe2403.x86_64
libjpeg-turbo-3.0.1-2.oe2403.x86_64
libjpeg-turbo-devel-3.0.1-2.oe2403.x86_64
libpng-1.6.40-1.oe2403.x86_64
libpng-devel-1.6.40-1.oe2403.x86_64
libtool-2.4.7-3.oe2403.x86_64
libtool-ltdl-2.4.7-3.oe2403.x86_64
libxml2-devel-2.11.5-3.oe2403.x86_64
libxslt-devel-1.1.39-1.oe2403.x86_64
libzip-1.10.1-2.oe2403.x86_64
libzip-devel-1.10.1-2.oe2403.x86_64
make-4.4.1-1.oe2403.x86_64
oniguruma-devel-6.9.9-1.oe2403.x86_64
openssl-devel-3.0.12-5.oe2403.x86_64
readline-devel-8.2-2.oe2403.x86_64
## Service unit definitions
### nginx.service
# /etc/systemd/system/nginx.service
[Unit]
Description=Sifangda Nginx Web Server
After=network.target

[Service]
Type=simple
ExecStartPre=/usr/local/nginx/sbin/nginx -t
ExecStart=/usr/local/nginx/sbin/nginx -g "daemon off;"
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit

[Install]
WantedBy=multi-user.target
### php-fpm73.service
# /etc/systemd/system/php-fpm73.service
[Unit]
Description=Sifangda PHP 7.3 FastCGI Process Manager
After=network.target

[Service]
Type=simple
ExecStart=/usr/local/php7.3/sbin/php-fpm --nodaemonize --fpm-config /usr/local/php7.3/etc/php-fpm.conf
ExecReload=/bin/kill -USR2 $MAINPID
Restart=on-failure

[Install]
WantedBy=multi-user.target
### php-fpm74.service
# /etc/systemd/system/php-fpm74.service
[Unit]
Description=Sifangda PHP 7.4 FastCGI Process Manager
After=network.target

[Service]
Type=simple
ExecStart=/usr/local/php7.4/sbin/php-fpm --nodaemonize --fpm-config /usr/local/php7.4/etc/php-fpm.conf
ExecReload=/bin/kill -USR2 $MAINPID
Restart=on-failure

[Install]
WantedBy=multi-user.target
### redis-sfd.service
# /etc/systemd/system/redis-sfd.service
[Unit]
Description=Sifangda Redis Server
After=network.target

[Service]
Type=forking
PIDFile=/run/redis/redis_6379.pid
ExecStart=/usr/local/bin/redis-server /etc/redis.conf
ExecStop=/bin/kill -TERM $MAINPID
User=redis
Group=redis
RuntimeDirectory=redis
RuntimeDirectoryMode=0750
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
### supervisor.service
# /etc/systemd/system/supervisor.service
[Unit]
Description=Supervisor process control system
Documentation=http://supervisord.org
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/bin/supervisord -c /etc/supervisor/supervisord.conf
ExecStop=/usr/local/bin/supervisorctl shutdown
ExecReload=/usr/local/bin/supervisorctl reload
KillMode=process
Restart=on-failure
RestartSec=5s
RuntimeDirectory=supervisor
RuntimeDirectoryMode=0750

[Install]
WantedBy=multi-user.target
## Service journals
### nginx
Jul 30 20:45:06 sfd-app systemd[1]: Starting Sifangda Nginx Web Server...
Jul 30 20:45:06 sfd-app nginx[317679]: nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
Jul 30 20:45:06 sfd-app nginx[317679]: nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
Jul 30 20:45:06 sfd-app systemd[1]: nginx.service: Failed to parse PID from file /usr/local/nginx/logs/nginx.pid: Invalid argument
Jul 30 20:45:06 sfd-app systemd[1]: Started Sifangda Nginx Web Server.
Jul 30 20:46:06 sfd-app systemd[1]: Reloading Sifangda Nginx Web Server...
Jul 30 20:46:06 sfd-app systemd[1]: Reloaded Sifangda Nginx Web Server.
Jul 30 20:46:49 sfd-app systemd[1]: Stopping Sifangda Nginx Web Server...
Jul 30 20:46:49 sfd-app systemd[1]: nginx.service: Deactivated successfully.
Jul 30 20:46:49 sfd-app systemd[1]: Stopped Sifangda Nginx Web Server.
Jul 30 20:46:49 sfd-app systemd[1]: Starting Sifangda Nginx Web Server...
Jul 30 20:46:49 sfd-app nginx[318302]: nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
Jul 30 20:46:49 sfd-app nginx[318302]: nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
Jul 30 20:46:49 sfd-app systemd[1]: Started Sifangda Nginx Web Server.
### php-fpm73
Jul 30 20:45:06 sfd-app systemd[1]: Started Sifangda PHP 7.3 FastCGI Process Manager.
Jul 30 20:46:06 sfd-app systemd[1]: Stopping Sifangda PHP 7.3 FastCGI Process Manager...
Jul 30 20:46:06 sfd-app systemd[1]: php-fpm73.service: Deactivated successfully.
Jul 30 20:46:06 sfd-app systemd[1]: Stopped Sifangda PHP 7.3 FastCGI Process Manager.
Jul 30 20:46:06 sfd-app systemd[1]: Started Sifangda PHP 7.3 FastCGI Process Manager.
Jul 30 20:46:49 sfd-app systemd[1]: Stopping Sifangda PHP 7.3 FastCGI Process Manager...
Jul 30 20:46:49 sfd-app systemd[1]: php-fpm73.service: Deactivated successfully.
Jul 30 20:46:49 sfd-app systemd[1]: Stopped Sifangda PHP 7.3 FastCGI Process Manager.
Jul 30 20:46:49 sfd-app systemd[1]: Started Sifangda PHP 7.3 FastCGI Process Manager.
### php-fpm74
Jul 30 20:45:06 sfd-app systemd[1]: Started Sifangda PHP 7.4 FastCGI Process Manager.
Jul 30 20:46:06 sfd-app systemd[1]: Stopping Sifangda PHP 7.4 FastCGI Process Manager...
Jul 30 20:46:06 sfd-app systemd[1]: php-fpm74.service: Deactivated successfully.
Jul 30 20:46:06 sfd-app systemd[1]: Stopped Sifangda PHP 7.4 FastCGI Process Manager.
Jul 30 20:46:06 sfd-app systemd[1]: Started Sifangda PHP 7.4 FastCGI Process Manager.
Jul 30 20:46:49 sfd-app systemd[1]: Stopping Sifangda PHP 7.4 FastCGI Process Manager...
Jul 30 20:46:49 sfd-app systemd[1]: php-fpm74.service: Deactivated successfully.
Jul 30 20:46:49 sfd-app systemd[1]: Stopped Sifangda PHP 7.4 FastCGI Process Manager.
Jul 30 20:46:49 sfd-app systemd[1]: Started Sifangda PHP 7.4 FastCGI Process Manager.
### redis-sfd
Jul 30 20:45:06 sfd-app systemd[1]: Starting Sifangda Redis Server...
Jul 30 20:45:06 sfd-app systemd[1]: redis-sfd.service: Can't open PID file /run/redis/redis_6379.pid (yet?) after start: No such file or directory
Jul 30 20:45:06 sfd-app systemd[1]: Started Sifangda Redis Server.
### supervisor
Jul 30 20:45:06 sfd-app systemd[1]: Starting Supervisor process control system...
Jul 30 20:45:06 sfd-app systemd[1]: Started Supervisor process control system.
## Time state
               Local time: Thu 2026-07-30 20:51:08 CST
           Universal time: Thu 2026-07-30 12:51:08 UTC
                 RTC time: Thu 2026-07-30 12:51:08
                Time zone: Asia/Shanghai (CST, +0800)
System clock synchronized: no
              NTP service: active
          RTC in local TZ: no
