How to upgrade php version on plesk

How to upgrade php version on plesk ? Ans : – You can simply upgrade the php version on LINUX PLESK server by using following steps root@server [/] # cd /usr/local/src root@server [/usr/local/src]#  wget -q -O – http://www.atomicorp.com/installers/atomic.sh | sh root@server [/usr/local/src]#  yum upgrade php root@server [/usr/local/src]#  /etc/init.d/psa stopall root@server [/usr/local/src]#  /etc/init.d/psa startall root@server [/usr/local/src]#  […]

See More

Block FTP access using firewall

Block FTP access using the IPtables(Default system firewall) 1) If you want to completely disable the FTP access on the server then run the command : root@server[#] iptables -A INPUT -p tcp –dport 21 -j DROP 2) If you want to block FTP access for a Specific IP then run the below command : root@server[#] […]

See More

How to reset MySQL root Password

This will helps when you forget MySQL root password and not able to access MySQL service on the server. Here are the steps to reset MySQL password : root@server [~] /etc/init.d/mysqld stop Now start MySQL server without password: root@server [~] mysqld_safe –skip-grant-tables & root@server [~] mysql After that you can get the mysql prompt then […]

See More