Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Before running the service, we must have the database. So far we only created the database and did not copy any tables/contents. To do this we must have a file that performs sql functions of adding and filling tables. The file should be a part of the FTMA package retrieved via svn checkout and should be placed inside "FileTransfer/perfSONAR_PS-FileTransfer/contrib" directory. The file can used in the following manner (you might need to do sudo):

If mysql not started then start it:

Code Block
/etc/init.d/mysqld start

Load the mysql dump into a database:

Code Block

mysql -D ft_ma < mysql_backup

Once done do the following to start the service:

...

The service includes a client tool to do some preliminary testing. This tool is present inside the bin dir as well.

  • Code Block
    perl FT_client.pl

...