Table of Contents |
---|
Note: The following steps were performed in an Ubuntu machine.
Download apelon-docker project
Code Block | ||||
---|---|---|---|---|
| ||||
git clone https://bitbucket.org/opencds/apelon-docker.git |
Download apelon dts
Code Block | ||||
---|---|---|---|---|
| ||||
cd apelon-docker wget http://sourceforge.net/projects/apelon-dts/files/dts-linux/3.5.2/apelon-dts-3.5.2.203-linux-mysql.tar.gz |
...
Transfer Apelon content from other databases
If you need to transfer content from another database you can place your dts_dump_file.sql file in apelon-docker folder and uncomment the lines that refer to dts_dump_file.sql on Dockerfile and config_mysql.sh. This Also you will need to comment the line that runs bkcreate.sh on Dockerfile.
This blog note describes how to migrate Apelon content from MS-SQL to MySQL
Code Block | ||||
---|---|---|---|---|
| ||||
... # Set up MySQL #ADD dts_dump_file.sql /dts_dump_file.sql ADDCOPY config_mysql.sh /config_mysql.sh RUN chmod 755 /config_mysql.sh RUN /config_mysql.sh; rm config_mysql.sh sh #RUN rm dts_dump_file.sql ADDCOPY my.cnf /etc/mysql/my.cnf |
Code Block | ||||
---|---|---|---|---|
| ||||
... __start_mysql() { echo "Running the start_mysql function." mysqladmin -u root password mysqlPassword mysql#mysql -uroot -pmysqlPassword -e "CREATE SCHEMA IF NOT EXISTS dts DEFAULT CHARACTER SET latin1 COLLATE latin1_bin;" mysql -uroot -pmysqlPassword -e "CREATE DATABASE dts" mysql -uroot -pmysqlPassword -e "CREATE USER 'dts'@'localhost' IDENTIFIED BY 'dts';" mysql -uroot -pmysqlPassword -e "GRANT ALL PRIVILEGES ON dts*.* TO 'dts'@'localhost' WITH GRANT OPTION;" mysql -uroot -pmysqlPassword -e "FLUSH PRIVILEGES;" #mysql -uroot -pmysqlPassword dts < /dts_dump_file.sql cd ${APELON_HOME}/bin/kb/create; ./kbcreate.sh # run this line if you are not using dts_dump_file.sql killall mysqld sleep 10 } |
Build and deploy container
Code Block | ||||
---|---|---|---|---|
| ||||
sudo docker build -t="opencds/apelon:centos6" . |
Code Block | ||||
---|---|---|---|---|
| ||||
sudo docker run -d --name apelon opencds/apelon:centos6 |
...
Access ApelonDTS on the Browser
Apelon
...
browser
...
will
...
be
...
available
...
on
...
x.x.x.x:8081/dtstreebrowser
...
starting
...
server
...
on
...
x.x.x.x:6666
...
Find out the ipaddress of the container:
Code Block | ||
---|---|---|
| ||
sudo docker inspect apelon | grep IPAddress |
User Authentication
Please check apelon dts web site for more information about how to set up user authentication. By the default authentication is disable on apelon-docker. This is defined on apelon-docker / apelonserverprops.xml, <property name="authentication" value="false"/>.
References
ApelonDTS
http://apelon-dts.sourceforge.net/
...