Starting and stopping the TeamDrive Registration Server components

You can now start the Apache http Server and the PBAC backgroud processes to make the TeamDrive Registration Server available for TeamDrive clients to connect.

The following services need to be up and running for the Registration Server to function:

  • mysqld — the MySQL database server (local or on a remote server)
  • httpd — the Apache http Server
  • php-fpm — the PHP FastCGI Process Manager
  • teamdrive — the PBAC based background processes

For testing purposes, you can start these services manually, using the following commands. In the production environment, these services should be started automatically, at boot time.

Starting services manually

You can use the service command to start services manually.

[root@regserver ~]# service mysqld start
[root@regserver ~]# service php-fpm start
[root@regserver ~]# service teamdrive start
[root@regserver ~]# service httpd start

Stopping services manually

Similarly, you can use service to stop the services manually:

[root@regserver ~]# service httpd stop
[root@regserver ~]# service teamdrive stop
[root@regserver ~]# service php-fpm stop
[root@regserver ~]# service mysqld stop

Enabling Service Autostart

Once the TeamDrive Registration Server setup is done, the MySQL server, Apache http Server, PHP FastCGI process manager and and pbac need to be configured to automatically start at system boot.

Use the command chkconfig to enable the automatic start for these processes:

[root@regserver ~]# chkconfig --levels 235 httpd on
[root@regserver ~]# chkconfig --levels 235 mysqld on
[root@regserver ~]# chkconfig --levels 235 php-fpm on
[root@regserver ~]# chkconfig --levels 235 teamdrive on

Logging into the Administration Console

Once all services are up and running, you will be able to log into the Admin Console by pointing your browser to the following URL:

https://regserver.yourdomain.com/adminconsole/

Enter the login name and password you defined in the <distributor> section of RegServerSetup.xml.

See the TeamDrive Registration Server Reference and Administration Guides for further details on the configuration and customization of the Registration Server and the TeamDrive Clients connecting to your Server.