|
|
|
|
3883
|
cp /usr/share/doc/mysql-server-5.5/examples/my-small.cnf /etc/mysql/my.cnf
|
3883
|
cp /usr/share/doc/mysql-server-5.5/examples/my-small.cnf /etc/mysql/my.cnf
|
3884
|
#+END_SRC
|
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
|
#+BEGIN_SRC: bash
|
3888
|
#+BEGIN_SRC: bash
|
3889
|
mysql -u root -p
|
3889
|
mysql -u root -p
|
3890
|
create database friendica;
|
3890
|
create database friendica;
|
3891
|
-CREATE USER 'friendicaadmin'@'localhost' IDENTIFIED BY 'password';
|
|
|
|
|
3891
|
+CREATE USER 'friendicaadmin'@'localhost' IDENTIFIED BY 'myfriendicapassword';
|
3892
|
GRANT ALL PRIVILEGES ON friendica.* TO 'friendicaadmin'@'localhost';
|
3892
|
GRANT ALL PRIVILEGES ON friendica.* TO 'friendicaadmin'@'localhost';
|
3893
|
quit
|
3893
|
quit
|
3894
|
#+END_SRC
|
3894
|
#+END_SRC
|
|
|
|
|
3926
|
git clone https://github.com/friendica/friendica-addons.git htdocs/addon
|
3926
|
git clone https://github.com/friendica/friendica-addons.git htdocs/addon
|
3927
|
#+END_SRC
|
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
|
Install the poller.
|
3938
|
Install the poller.
|
3932
|
|
3939
|
|