Browse Source

Use table

Bob Mottram 11 years ago
parent
commit
71bf524231
1 changed files with 10 additions and 3 deletions
  1. 10
    3
      beaglebone.txt

+ 10
- 3
beaglebone.txt View File

@@ -3883,12 +3883,12 @@ Reduce the memory use of mysql by using the "small" configuration.
3883 3883
 cp /usr/share/doc/mysql-server-5.5/examples/my-small.cnf /etc/mysql/my.cnf
3884 3884
 #+END_SRC
3885 3885
 
3886
-Create a mysql database.
3886
+Create a mysql database, replacing /myfriendicapassword/ with a password used to administer the friendica database.
3887 3887
 
3888 3888
 #+BEGIN_SRC: bash
3889 3889
 mysql -u root -p
3890 3890
 create database friendica;
3891
-CREATE USER 'friendicaadmin'@'localhost' IDENTIFIED BY 'password';
3891
+CREATE USER 'friendicaadmin'@'localhost' IDENTIFIED BY 'myfriendicapassword';
3892 3892
 GRANT ALL PRIVILEGES ON friendica.* TO 'friendicaadmin'@'localhost';
3893 3893
 quit
3894 3894
 #+END_SRC
@@ -3926,7 +3926,14 @@ chown -R www-data:www-data htdocs/view/smarty3
3926 3926
 git clone https://github.com/friendica/friendica-addons.git htdocs/addon
3927 3927
 #+END_SRC
3928 3928
 
3929
-Now visit the URL of your site and you should be taken through the rest of the installation procedure.  If you have trouble with "allow override" ensure that "AllowOverride" is set to "all" in your Apache settings for the site (within /etc/apache2/sites-available) and then restart the apache2 service.
3929
+Now visit the URL of your site and you should be taken through the rest of the installation procedure.
3930
+
3931
+| Database Server Name    | localhost           |
3932
+| Database login name     | friendicaadmin      |
3933
+| Database Login Password | myfriendicapassword |
3934
+| Database Name           | friendica           |
3935
+
3936
+If you have trouble with "allow override" ensure that "AllowOverride" is set to "all" in your Apache settings for the site (within /etc/apache2/sites-available) and then restart the apache2 service.
3930 3937
 
3931 3938
 Install the poller.
3932 3939