Category: linux
How to grant privilege to database for particular user using unix
| December 2, 2011 | Posted by Subikar under linux, network, subikar |
Login to unix Croot@cyber-desktop:~# mysql mysql> GRANT ALL ON databasename.* TO username@’mysqlhost’ IDENTIFIED BY ‘databasepassword’; Thats all
Exclude Directory While zip file in unix platform
| June 7, 2010 | Posted by Subikar under linux, uniz, zip command |
If you want to zip file and exclude some directory while file zip in linux you can simply use the below command. zip -r filename.zip folder -x folder1 folder2 Where as folder is the going to zip in the name of filename.zip and folder1 and folder2 will be exclude from while zipping.
Ion Cube installtion in linux dedicated server.
| February 10, 2010 | Posted by Subikar under cent os, dedicated server, ioncube, linux |
Hi All, If you have dedicated server and like to install ioncube on your server without any hassle then follow my below notes to do easy installtion. Let me introduce you what is ioncube. ioncube is basically a encoder (encryption method) used to help protect the php files from software piracy. It is normally used…
Import and export big db in linux
| September 14, 2009 | Posted by Subikar under linux, phpmyadmin |
Here is my short blog post lets share with my friends who are learning linux and want to import or export data to phpmyadmin using linux. So here is the code for that. Data Export in linux mysqldump -u dbusername -h dbhost -pdbpassword dbname > dbname.sql Data Import in linux mysql -u dbusername -h dbhost…