The simplest way to find php.ini:
jueves, 22 de agosto de 2013
How-To Create A MySQL Database And Set Privileges To A User
Install mysql:
1. apt-get install mysql-server
2. $ mysql -u root -p
Enter password:
3. mysql > create database amarokdb;
Query OK, 1 row affected (0.00 sec)
4.mysql > grant usage on *.* to amarokuser@localhost identified by ‘amarokpasswd’;
Query OK, 0 rows affected (0.00 sec)
5.mysql > grant all privileges on amarokdb.* to amarokuser@localhost ;
Query OK, 0 rows affected (0.00 sec)
6.$ mysql -u amarokuser -p’amarokpasswd’ amarokdb
Source: http://www.debuntu.org/how-to-create-a-mysql-database-and-set-privileges-to-a-user/
1. apt-get install mysql-server
2. $ mysql -u root -p
Enter password:
3. mysql > create database amarokdb;
Query OK, 1 row affected (0.00 sec)
4.mysql > grant usage on *.* to amarokuser@localhost identified by ‘amarokpasswd’;
Query OK, 0 rows affected (0.00 sec)
5.mysql > grant all privileges on amarokdb.* to amarokuser@localhost ;
Query OK, 0 rows affected (0.00 sec)
6.$ mysql -u amarokuser -p’amarokpasswd’ amarokdb
Source: http://www.debuntu.org/how-to-create-a-mysql-database-and-set-privileges-to-a-user/
Install mysql php ubuntu
Install mysql
$ apt-get install apache2
$ apt-get install mysql-server
$ apt-get install php5
$ apt-get install libapache2-mod-php5
$ apt-get install php5-gd
$ apt-get install php5-dom
$ apt-get install php5-pgsql
$ apt-get install php5-mysql
* Mysql con PHP5
$ apt-get install apache2
$ apt-get install mysql-server
$ apt-get install php5
$ apt-get install libapache2-mod-php5
$ apt-get install php5-gd
$ apt-get install php5-dom
$ apt-get install php5-pgsql
$ apt-get install php5-mysql
* Mysql con PHP5
Cómo ver todas las contraseñas guardadas en Chrome
Cómo ver todas las contraseñas guardadas en Chrome
chrome://settings/passwords
chrome://settings/passwords
Uploading Files With Secure Copy (SCP)
You can upload files to the server using the following syntax:
scp SourceFile user@host:directory/TargetFile
scp SourceFile user@host:directory/TargetFile
Suscribirse a:
Entradas (Atom)
Entradas populares
-
¿Cómo usar clases anidadas en CSS ? Para que nos entendamos, usar clases anidadas o identificadores anidados quiere decir poner varias propi...
-
Cambiando las cabeceras conseguimos que se refresque la página sin tener que forzar una recarga de nuestro navegador. $this-...
-
Do you remember when people would talk about ways to do things on your computer without using the mouse? Well, even though times are changin...
-
¿Qué es una expresión regular ? Una expresión regular , a menudo llamada también patrón, es una expresión que describe un conjunto de cade...
-
Crontab is a program used in linux to execute schedule scripts. If you need to run one script after rebooting the server you can use @reboot...
-
public function guardarImagen($object){ $directorio = IMG_PATH. '/' .$object-> directorio . '/' ; $n...
-
Recuperar lista de paquetes instalados En muchas ocasiones tenemos la necesidad de replicar una instalación en varios puestos de trabajo. ...
-
It's not necessary to use global variable in codeigniter, you can do this: class MY_Controller extends Controller { var $data; ...
-
Cómo ver todas las contraseñas guardadas en Chrome chrome://settings/passwords
-
Install mysql $ apt-get install apache2 $ apt-get install mysql-server $ apt-get install php5 $ apt-get install libapache2-mod-php5 $ ...