martes, octubre 30, 2007

 

LAMP en Feisty Fawn

LAMP es: Linux, Apache, MySQL y PHP.


El documento Installing LAMP On Ubuntu For Newbies es buena para hacer LAMP correctamente.
Ademas de mi procesos de configurar LAMP, escribo como configurar MySQL y phpMyAdmin, es una aplication para administrar MySQL remotamente.

Necesita instalar siguiente softwares:

En lugar de Synaptic, utilizo la línea de comandos como el documento.

Primero, instala apache.

$ sudo apt-get install apache2

Luego, PHP.

$ sudo apt-get install php5 libapache2-mod-php5
Reinicia Apache.
$ sudo /etc/init.d/apache2 restart
Test PHP.

Escribe en /var/www/testphp.php siguiente linea

<? php phpinfo(); ?> 

Accesa http://[server's IP address]/testphp.php con su browser para asegurarse de que muestra la información de PHP.

Luego, MySQL.

$ sudo apt-get install mysql-server
Ahora inicia MySQL setting.

Si quiere permitir conectanto su SQL server desde otra computadora, necesita cambiar la linea [Bind Address] en /etc/mysql/my.cnf de 127.0.0.1 a su IP address.

$ sudo vi /etc/mysql/my.cnf
from
bind-address = 127.0.0.1
to
bind-address = [server's IP address]

Crear password para MySQL root
.
$ mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 5.0.38-Ubuntu_0ubuntu1-log Ubuntu 7.04 distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('[パスワード]');
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Instala PHPMyAdmin.
$ sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin
Para dar un permiso de administrador de MySQL desde PHP, configura /etc/php5/apache2/php.ini.
$ sudo vi /etc/php5/apache2/php.ini
;extension=mysql.so
remove ";".
extension=mysql.so

Reinicia Apache.

$ sudo /etc/init.d/apache2 restart

Ahora puede hacer login a PHPMyAdmin por http://[server's IP address]/phpmyadmin/.

f:id:elsal:20070926151707j:image






<< Home

This page is powered by Blogger. Isn't yours?