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 /
mariadb /
[ HOME SHELL ]
Name
Size
Permission
Action
postunpack.sh
4.59
KB
-rwxr-xr-x
resize.sh
590
B
-rwxr-xr-x
restart.sh
442
B
-rwxr-xr-x
run.sh
1.23
KB
-rwxr-xr-x
setup.sh
1.35
KB
-rwxr-xr-x
start.sh
725
B
-rwxr-xr-x
status.sh
473
B
-rwxr-xr-x
stop.sh
695
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/libfs.sh . /opt/bitnami/scripts/libos.sh . /opt/bitnami/scripts/libmariadb.sh # Load MariaDB environment variables . /opt/bitnami/scripts/mariadb-env.sh # Ensure mysql unix socket file does not exist rm -rf "${DB_SOCKET_FILE}.lock" # Ensure MariaDB environment variables settings are valid mysql_validate # Ensure MariaDB is stopped when this script ends. trap "mysql_stop" EXIT if am_i_root; then # Ensure 'daemon' user exists when running as 'root' ensure_user_exists "$DB_DAEMON_USER" --group "$DB_DAEMON_GROUP" # Fix logging issue when running as root chmod o+w "$(readlink /dev/stdout)" fi # Ensure MariaDB is initialized mysql_initialize # Allow running custom initialization scripts mysql_custom_scripts 'init' # Allow running custom start scripts mysql_custom_scripts 'start' # Stop MariaDB before flagging it as fully initialized. # Relying only on the trap defined above could produce a race condition. mysql_stop # Start MariaDB service if [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then info "Starting MariaDB service" systemctl start bitnami.mariadb.service fi
Close