Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
bitnami /
scripts /
php /
[ HOME SHELL ]
Name
Size
Permission
Action
files
[ DIR ]
drwxr-xr-x
postunpack.sh
4.73
KB
-rwxr-xr-x
reload.sh
804
B
-rwxr-xr-x
resize.sh
495
B
-rwxr-xr-x
restart.sh
426
B
-rwxr-xr-x
run.sh
578
B
-rwxr-xr-x
setup.sh
1.06
KB
-rwxr-xr-x
start.sh
750
B
-rwxr-xr-x
status.sh
500
B
-rwxr-xr-x
stop.sh
726
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stop.sh
#!/bin/bash # Copyright Broadcom, Inc. All Rights Reserved. # SPDX-License-Identifier: APACHE-2.0 # shellcheck disable=SC1091 set -o errexit set -o nounset set -o pipefail # set -o xtrace # Uncomment this line for debugging purposes # Load libraries . /opt/bitnami/scripts/libphp.sh . /opt/bitnami/scripts/libos.sh . /opt/bitnami/scripts/liblog.sh # Load PHP-FPM environment variables . /opt/bitnami/scripts/php-env.sh error_code=0 if is_php_fpm_running; then BITNAMI_QUIET=1 php_fpm_stop if ! retry_while "is_php_fpm_not_running"; then error "php-fpm could not be stopped" error_code=1 else info "php-fpm stopped" fi else info "php-fpm is not running" fi exit "$error_code"
Close