Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note: The following steps were performed in an Ubuntu machine.

Download apelon-docker project

Code Block
languagebash
git clone https://bitbucket.org/opencds/apelon-docker.git 

Download apelon dts

Code Block
languageapplescript
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 blog note describes how to migrate Apelon content from MS-SQL to MySQL 

...

Code Block
languagebash
titleconfig_mysql.sh that refer dts_dump_dile.sql
...
__start_mysql() {
echo "Running the start_mysql function."
mysqladmin -u root password mysqlPassword
mysql -uroot -pmysqlPassword -e "CREATE SCHEMA IF NOT EXISTS dts DEFAULT CHARACTER SET latin1 COLLATE latin1_bin;"
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
killall mysqld
sleep 10
}

Build and deploy container

Code Block
languagebash
titleBuild image
sudo docker build -t="opencds/apelon:centos6" .
Code Block
languagebash
titleCreate container
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

...

Secure socket:
username:opencds.guest
password:welcome2opencds
host:actual ipaddress
port: 6666

References

ApelonDTS 

http://apelon-dts.sourceforge.net/ 

...