MySQL

MySQL tutorials & documentation

phpMyAdmin Debian 5

How to install phpMyAdmin on Debian 5

  1. Install phpMyAdmin
    apt-get -y install phpmyadmin
    1. Select the apache2 web server to be automatically configured to run phpMyAdmin.
  2. Restart the Apache Server
    /etc/init.d/apache2 restart

How to test phpMyAdmin on Debian 5

  1. Visit http://localhost/phpmyadmin in your local web browser.
    Note: You should see the phpMyAdmin login page.

MySQL Debian 5

How to install MySQL on Debian 5

  1. Install MySQL
    apt-get -y install mysql-server
    1. Enter and verify a root password.

How to configure MySQL on Debian 5

  1. Run Debian's MySQL Secure Installation tool:

Lamp Debian 5

How to install and configure LAMP on Fedora 13

  1. Linux
    1. How to install Debian 5
    2. How to configure Debian 5
    3. If you need to install virtualization tools

phpMyAdmin Fedora 13

How to install phpMyAdmin on Fedora 13

  1. Install phpMyAdmin
    yum install phpmyadmin
  2. Restart the Apache Server
    service httpd restart

How to test phpMyAdmin on Fedora 13

  1. Visit http://localhost/phpmyadmin in your local web browser

MySQL Fedora 13

How to install MySQL on Fedora 13

  1. Install MySQL
    yum install mysql-server php-mysql

How to configure MySQL on Fedora 13

  1. Set the MySQL service to start on boot
    chkconfig --levels 235 mysqld on
  2. Start the MySQL service
    service mysqld start
  3. Log into MySQL
    mysql -u root
  4. Set the root user password for all local domains

Lamp Fedora 13

How to install and configure LAMP on Fedora 13

  1. Linux

LAMP

LAMP is not software in itselft, but is acutally a solution stack of software used to run websites or servers. For more information on LAMP, visit wikipedia's LAMP Solution Stack article.

How to install and configure LAMP

Since LAMP is not actually software in itself, to install and configure it, we will install and configure the individual software components that make up a LAMP Solution Stack.

phpMyAdmin

phpMyAdmin is a tool written in PHP intended to handle the administration of MySQL over the Web. Visit the phpMyAdmin website for more information.

Syndicate content