How to Install and Configure ProFTPD on Linux Server
Linux General,In a web hosting environment, running an FTP server is an essential function and it gives the client access to file servers. In this blog post, let’s look at how to install and configure ProFTPD on a Linux server.The File Transfer Protocol (FTP) is a standard network protocol used for the transfer of files between…
Read moreLinux Tips & Tricks
Linux General,TIP 1: NTP Is NTP Working? STEP 1 (Test the current server): Try issuing the following command: $ ntpq -pn remote refid st t when poll reach delay offset jitter =================================================== tock.usno.navy 0.0.0.0 16 u – 64 0 0.000 0.000 4000.00 The above is an example of a problem. Compare it to a working configuration.…
Read moreMysql Queries in Linux
Linux General,How to resolve mysql_connect() Error Warning: mysql_connect() [function.mysql-connect]: Access denied for user ‘username’@’localhost’ (using password: YES) Possible root cause for this problem is proper privilege not assigned to the particular user. So providing proper privileges will solve this issue. $grant all privileges on “Database_Name” to “username@localhost” identified by “password” If the mysql resides in the…
Read more