A PHP Error was encountered

Severity: Warning

Message: mysqli::real_connect(): (HY000/2002): Cannot assign requested address

Filename: mysqli/mysqli_driver.php

Line Number: 201

Backtrace:

File: /www/wwwroot/dash.konsole.xyz/application/core/MY_Controller.php
Line: 343
Function: __construct

File: /www/wwwroot/dash.konsole.xyz/application/controllers/Api.php
Line: 12
Function: __construct

File: /www/wwwroot/dash.konsole.xyz/index.php
Line: 316
Function: require_once

Database Error

数据库发生错误。

无法使用提供的设置连接到数据库服务器。

Filename: core/MY_Controller.php

Line Number: 343


Fatal error: Uncaught Error: Call to a member function close() on string in /www/wwwroot/dash.konsole.xyz/application/core/MY_Controller.php:349 Stack trace: #0 [internal function]: Index_Controller->__destruct() #1 {main} thrown in /www/wwwroot/dash.konsole.xyz/application/core/MY_Controller.php on line 349
HEX
HEX
Server: Apache
System: Linux vps17447 6.8.0-78-generic #78~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Aug 13 14:32:06 UTC 2 x86_64
User: dh_m2e37m (5712562)
PHP: 8.1.32
Disabled: NONE
Upload Files
File: //lib/courier/init-d-script-courier
#!/bin/sh

do_tmpfiles() {
    local type path mode user group

    TMPFILES=/usr/lib/tmpfiles.d/$1.conf

    if [ -r "$TMPFILES" ]; then
	while read type path mode user group age argument; do
            if [ "$type" = "d" ]; then
                mkdir -p "$path"
		chmod "$mode" "$path"
                chown "$user:$group" "$path"
            fi
        done < $TMPFILES
    fi
}

do_start_prepare() {
    do_tmpfiles $(basename $0)
}

do_start_cmd_override() {
    if [ "$DO_START" != "yes" ]; then
	# If the service is disabled, the start script still needs to signal
	# successful, otherwise postinst scripts barf.  This behavior matches
	# that passing the --oknodo flag to start-stop-daemon.
	return 0
    fi

    if pidofproc ${PIDFILE:+-p ${PIDFILE}} "$DAEMON" >/dev/null; then
	# Similar for process already running: a subsequent call to start the
	# service must not return an error.
	return 0
    fi

    if $DAEMON start $DAEMON_ARGS; then
	return 0
    else
	return 2
    fi
}

do_stop_cmd_override() {
    if ! pidofproc ${PIDFILE:+-p ${PIDFILE}} "$DAEMON" >/dev/null; then
	# If the service is not currently running, a call to stop it should
	# indicate success.
	return 0
    fi

    if $DAEMON stop $DAEMON_ARGS; then
	return 0;
    else
	return 2;
    fi
}

do_status_override() {
    status_of_proc ${PIDFILE:+-p ${PIDFILE}} "$DAEMON" "$NAME"
}