lunedì 28 aprile 2014

wordpress: installazione rapida requisiti da linea di comando

Eseguire i comandi seguenti (le parti in grassetto devono essere sostituite con dei nomi da voi scelti)

$ apt-get install apache2 php5 mysql-server php5-mysql

$ mysql -u USERNAME_MYSQL_ADMIN -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 NOME_DATABASE;
Query OK, 1 row affected (0.00 sec)

mysql> GRANT ALL PRIVILEGES ON NOME_DATABASE.* TO "NOME_UTENTE@localhost"
    -> 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


A questo punto scaricate l'ultima versione di wordpress dal sito www.wordpress.org, scompattatela nella home del server apache e accedete con:

http://IP_ADDRESS_O_NOME_DEL_SERVER 

e seguite le istruzioni riportate a video.

Nessun commento: