Hello,
I just finished installed /ftp/pure-ftpd and set the following in my /etc/pureftpd-mysql.conf file
I am now trying to create my MySQL user by running the following command:
and I get the error
So the question is.. how to scrypt to store my password when creating my user?
Thank you
I just finished installed /ftp/pure-ftpd and set the following in my /etc/pureftpd-mysql.conf file
Code:
MYSQLCrypt scrypt
Code:
INSERT INTO `ftpd` (`User`, `status`, `Password`, `Uid`, `Gid`, `Dir`, `ULBandwidth`, `DLBandwidth`, `comment`, `ipaccess`, `QuotaSize`, `QuotaFiles`) VALUES ('exampleuser', '1', scrypt('secret'), '2001', '2001', '/home/www.example.com', '100', '100', '', '*', '50', '0');
Code:
ERROR 1305 (42000): FUNCTION pureftpd.scrypt does not exist
So the question is.. how to scrypt to store my password when creating my user?
Thank you