apt-get install apache2
apt-get install mysql-server
Configuració del paquet mysql-server-5.0 |
|
Dada sol·licitada |
Dada a introduir |
New password for the MySQL “root” user: |
PASSWORD |
Repeat password for the MySQL “root” user: |
PASSWORD |
OPCIÓ 1. Amb phpmyadmin
apt-get install php5
apt-get install phpmyadmin
Configuració del paquet phpmyadmin |
|
Dada sol·licitada |
Dada a introduir |
Web server to reconfigure automatically |
apache2 |
Obrim un navegador d'Internet i en la barra d'adreces escrivim: http://192.168.1.XXX/phpmyadmin Ens identifiquem. Usuari: root Contrasenya: PASSWORD |
|
OPCIÓ 2. Amb el client de mysql
$ mysql -u adminusername -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5340 to server version: 3.23.54 Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> CREATE DATABASE databasename; Query OK, 1 row affected (0.00 sec) mysql> GRANT ALL PRIVILEGES ON databasename.* TO "wordpressusername"@"hostname" -> IDENTIFIED BY "password"; Query OK, 0 rows affected (0.00 sec) mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.01 sec) mysql> EXIT Bye $
Descàrrega, instal·la i configura Wordpress
wget http://ca.wordpress.org/wordpress-3.0.4-ca.tar.gz
tar zxvf wordpress-3.0.4-ca.tar.gz
cd wordpress
cp -R ./* /var/www
cd /var/www
chmod -R 777 ./wp-content/
mv wp-config-sample.php wp-config.php
nano wp-config.php
/ ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'nomdelabasededades'); /** MySQL database username */
define('DB_USER', 'usuari'); /** MySQL database password */
define('DB_PASSWORD', 'PASSWORD'); /** MySQL hostname */
define('DB_HOST', 'localhost');
Obrim un navegador d'Internet i escrivim en la barra d'adreces: http://192.168.1.XXX/wp-admin/install.php |
|