Get your own copy of openresearch: Difference between revisions
| Line 12: | Line 12: | ||
<source lang='bash'> | <source lang='bash'> | ||
apt-get install apache2 | apt-get install apache2 | ||
</source> | |||
==== mySQL ==== | |||
<source lang='bash'> | |||
apt install mariadb-server | |||
sudo mysql_secure_installation | |||
</source> | |||
<source lang='bash'> | |||
root@confident02:~# mysql | |||
Welcome to the MariaDB monitor. Commands end with ; or \g. | |||
Your MariaDB connection id is 55 | |||
Server version: 10.3.22-MariaDB-0+deb10u1 Debian 10 | |||
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. | |||
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. | |||
MariaDB [(none)]> show databases; | |||
+--------------------+ | |||
| Database | | |||
+--------------------+ | |||
| information_schema | | |||
| mysql | | |||
| performance_schema | | |||
+--------------------+ | |||
3 rows in set (0.000 sec) | |||
</source> | </source> | ||
Revision as of 07:33, 19 March 2021
Is OPENRESEARCH open source?
YES, the software is open source and the data as well.
Software
LAMP
A LAMP stack: Linux, Apache, mySQL, PHP is needed as a basis. See https://www.mediawiki.org/wiki/Manual:Running_MediaWiki_on_Debian_or_Ubuntu#Install_LAMP_Stack
Linux
e.g. Ubuntu 20.04 / Debian or similar Operating System. Could also be a virtual machine or a docker environment.
Apache
apt-get install apache2
mySQL
apt install mariadb-server
sudo mysql_secure_installation
root@confident02:~# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 55
Server version: 10.3.22-MariaDB-0+deb10u1 Debian 10
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
+--------------------+
3 rows in set (0.000 sec)