more info added to readme

pull/5/head
moneroexamples 7 years ago
parent 7213d6973e
commit 4cc9fc2d5b

@ -61,6 +61,34 @@ The Open Monero consists of four components that need to be setup for it to work
Below are example and basic instructions on how to setup up and run Open Monero on Ubuntu 16.04.
#### Monero libraries
Monero's libraries and header files are setup is described here:
- [compile-monero-on-ubuntu-16-04](https://github.com/moneroexamples/compile-monero-09-on-ubuntu-16-04)
#### Compilation of the Open Monero (don't run it yet)
Download Open Monero and compile it. In fact we could postpone compilation to later, but
we can just do it now, to see if it compiles. But don't run it yet. It will not
work without database, setup frontend, and synced and running monero blockchain.
```bash
# need mysql++ libraries
sudo apt install libmysql++-dev
git clone https://github.com/moneroexamples/restbed-xmr.git
cd restbed-xmr
mkdir build && cd build
cmake ..
make
```
#### Mysql/Mariadb
```bash
@ -73,45 +101,28 @@ Download `openmonero.sql` provided and setup the `openmonero` database. `openmon
drop current `openmonero` if exist. So don't run it, if you have already some important information
in the `openmonero` database.
```bash
# download the sql file
wget https://raw.githubusercontent.com/moneroexamples/restbed-xmr/master/sql/openmonero.sql
Assuming we are still in `build` folder:
```bash
# apply it to mysql
mysql -p -u root < ./openmonero.sql
mysql -p -u root < ../sql/openmonero.sql
```
#### Lighttpd
#### Lighttpd and frontend
```bash
sudo apt-get install lighttpd
```
#### Monero libraries
Monero's libraries and header files are setup is described here:
- [compile-monero-on-ubuntu-16-04](https://github.com/moneroexamples/compile-monero-09-on-ubuntu-16-04)
#### Compilation of the Open Monero
Assuming we are still in `build` folder, copy frontend source files into lighttpd www folder.
```bash
# need mysql++ libraries
sudo apt install libmysql++-dev
git clone https://github.com/moneroexamples/restbed-xmr.git
cd restbed-xmr
mkdir build && cd build
cmake ..
make
sudo cp -rvf ../html/ /var/www/html
```
#### Run Open Monero
## Scrap notes
### Generate your own ssl certificate

Loading…
Cancel
Save