Sunday, March 11, 2012

My Zip v1.0

This is Java based Compression and decompression utility. This can be used for .zip file formats.
This version 1.0 is very basic utility. Advance GUI interface and with optimizing code version 2.0 is under development.

Download :
Support your own development.

Install PHPMyAdmin in Fedora server

This is about to install phpmyadmin in your Fedora based servers. That can simplify your task to manage database. So, no need to use terminals and fire queries in database.

1.) yum install phpmyadmin
2.) now open terminal and login into mysql database

   now type :
     CREATE USER 'admin'@'localhost' IDENTIFIED BY 'admin';
     GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION;

3.) now open browser -> type : http://localhost/phpmyadmin -> enter user name and password : admin

and enjoy it..!!!

Fedora Server

If you have installed Fedora server and want to configure server, i.e. http and mysql are already installed with your fedora.  then this tutorial is for you.

Step 1 :
 Open your terminal and login as a super user.



Step 2 :
 type:
a.)  service httpd start  [for starting http server].

b.) service mysqld start [for starting mysql server]


Step 3 :

  • to see your http server started or nor ?  : open browser -> type : http://locahost/ then it'll show you default page of server.
  • to see your mysql server :  open new terminal -> type :  mysql -u root

  • to start services from booting operating system:
    • chkconfig --levels 235 httpd on   [for http server]
    • chkconfig --levels 235 mysqld on [for mysql server]

Now, your http and database servers are ready to use.

to put your content in your server, put them all in /var/www/html directory.


Note : To install http and mysql server from ground I'll explain it in next tutorial.