Command for Rsync over SSH Common Syntax for Rsync: # rsync [options] Source Destinations. Set up a secure backup with rsync + SSH of one system to the other. backup.example.com# rsync -avz –numeric-ids –delete root@myserver.example.com:/path/ /backup/myserver/ To do the backup, you have to be root on the remote server, because some files are only root […]
See MoreTag: root
Install Nginx as reverse proxy on cPanel server
How to install Nginx as reverse proxy on cPanel server following steps are installing Nginx as reverse proxy on cPanel server Steap 1 : SSH to server as root. Steap 2 : Change the directory to “/usr/local/src” # cd /usr/local/src then, Download the latest nginxadmin package & Install #wget http://nginxcp.com/latest/nginxadmin.tar #tar xf nginxadmin.tar #cd publicnginx #./nginxinstaller install […]
See MoreRemove index.php from url in magento
How to remove index.php from url in magento Ans : If you want to access your magento URL without index.php for example: http://domain.com/index.php/category to http://domain.com/category then use the following steps 1) Login to admin section by using the URL http://domain.com/index.php/admin 2) then go to “System >> Configuration >>Web >> Search Engines Optimization” Use Web Server […]
See More