- /dev/loop1 100% /snap/snapd/20290
- system mounts /dev/loop0 on /snap/core/3604 and it’s 100
- Remove dev/loop
Purse the snapd
apt autoremove --purge snapd
by dev
Purse the snapd
apt autoremove --purge snapd
by dev
Login to your server root
Them run
sudo crontab -e
Select an editor.
Set the job
# m h dom mon dow command
0 4 * * * /sbin/shutdown -r +5
m=minute
h=hour
dom=day of month
mon=month
dow=day of week
by dev
The error was: SQLSTATE[42000]: Syntax error or access violation: 1118 Row size too large. The maximum row size for the used table type, not counting BLOBs, is 8126. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs
innodb_strict_mode = 0
by dev
How to change the SSH port
vi /etc/ssh/sshd_config
port 1234
/scripts/restartsrv_sshd
ssh USER@HOSTNAME -p1234
by dev
Access MariaDB Server
mysql -u root -p
Create new database
CREATE DATABASE bdhostidb;
Check whether the database created
SHOW DATABASES;
GRANT ALL PRIVILEGES ON 'sqI_bdhositit_co'.* TO 'sqI_bdhositit_co'@localhost;