Skip to content

Commit

Permalink
Partial fix for Issue #213
Browse files Browse the repository at this point in the history
  • Loading branch information
santo-it committed Dec 10, 2016
1 parent 1b41f52 commit c83fb0b
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Teleporter-Home.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Teleporter is a tool written in Java, but can be used as a tool thanks to the te
[-conf <configuration-file-location>]
```

#### Arguments
### Arguments
- **-jdriver** is the driver name of the DBMS from which you want to execute the import (it's not case sensitive)
- **-jurl** is the JDBC URL giving the location of the source database to import
- **-ourl** is the URL for the destination OrientDB graph database
Expand All @@ -59,16 +59,18 @@ Teleporter is a tool written in Java, but can be used as a tool thanks to the te
- **-inheritance (optional)** executes the import taking advantage of OrientDB's polymorphism
- **-config** allows you to define a custom configuration for your importing job

#### Access Credentials
## Access Credentials
By convention three users are always created by default each time a new database is built. Passwords are the same as the user name. Default users are:

- `admin`, with default password "`admin`", has access to all functions without limitation.
- `reader`, with default password "`reader`", is the classic read-only user. The reader can read any records but can't modify or delete them and has no access to internal information such as users and roles, themselves.
- `writer`, with the default password "`writer`", is like the user reader but can also create, update, and delete records.

For further informations about the Security of the OrientDB database [click here.](https://github.com/orientechnologies/orientdb-docs/blob/master/Database-Security.md)

## Examples

#### Example of "testdb" importing from PostgreSQL DBMS with default parameters
### Importing "testdb" from PostgreSQL DBMS with default parameters

Using plocal connection:
```
Expand All @@ -88,7 +90,7 @@ With these parameters it will be performed an import according to the default se
- name resolver: **original name resolver**
- level of verbosity: **INFO** (2nd level)

#### Example of "testdb" importing from PostgreSQL DBMS with customized optional parameters
### Importing "testdb" from PostgreSQL DBMS with customized optional parameters

Using plocal connection:
```
Expand All @@ -109,7 +111,8 @@ With these parameters it will be performed an import according to the chosen set
- name resolver: **java name resolver**
- level of verbosity: **DEBUG** (1st level)

#### Teleporter Execution

## Teleporter Execution
Teleporter execution consists of 4 steps:

1. **Source DB Schema Building:** the source database schema is built by querying the source DB metadata.
Expand Down

0 comments on commit c83fb0b

Please sign in to comment.