Day: June 4, 2020

[ERROR] Plugin ‘Aria’ registration as a STORAGE ENGINE failed.

Mysql service was down in one of the vps with following error in the mysql log [ERROR] Aria engine is not enabled or did not start. The Aria engine must be enabled to continue as mysqld was configured with --with-aria-tmp-tables [ERROR] Aborting mysqld: File '/var/lib/mysql/aria_log.00003041' not found (Errcode: 2 "No such file or directory") [ERROR] … Continue reading [ERROR] Plugin ‘Aria’ registration as a STORAGE ENGINE failed.

Add a SFTP user and allow to make SFTP connections only.

Create a group sftp_users # sudo groupadd sftp_users 2. Create the sftp user bunny. Here chroot is set to /home/bunny/data. # sudo useradd -d /home/bunny/data -G sftp_users -s /sbin/nologin bunny 3. Set password for the user # sudo passwd bunny 4. Now edit the sshd config file and make the following changes. # sudo vi … Continue reading Add a SFTP user and allow to make SFTP connections only.