| an Assistent not limited to conversion of VDR-recordings to DVD-images |
VdrAssistant | |
prepare installationVdrAssistant and of cause its installation is not trivial at all. VdrAssistant relays on the cooperation of 5 applications and 4 system services. Not counting the database, VDR or external tools. So if something goes wrong at installation or afterwards, don't t inveigh or throw in the towel - but ask for support. I will help as possible. In distributed environments, it is common, that 3-4 workstations are involved. Naturally, all of VdrAssistant may be installed on a single workstation as well. But don't forget, that all parties need to play together, so there's a lot of error sources. Information about your environment is evident on asking for support. are the tools needed by the individual installers.
Distributed environments depend on a working network. That includes the name resolution, as well as finding addresses by names. Many linux systems are installed with the real hostname pointing to the wrong network address. Java-networking won't work with such misconfiguration. So it is evident to check first /etc/hosts. At the beginning there are most likely entries like this: 127.0.0.1 localhost 127.0.0.1 myhost.mydomain myhost ping $(hostname -f) Right after the network, database will be the most important. You'll need to check the configuration of your database-server installation as well. Using default setup of mysql no networking is enabled. You'll need to change that to enable java-database access. Configuration of mysql can be found at /etc/mysql/my.cnf, wich contains a line: bind-address = 127.0.0.1 bind-address = 192.168.178.5 If you had to change /etc/hosts or /etc/mysql/my.cnf, you'll better restart that workstationIf a reboot is not possible, you should at least restart your networking after chaning your /etc/hosts: /etc/init.d/networking restart /etc/init.d/mysql stop /etc/init.d/mysql start Each installer is intended to be extecuted as user, but some actions need superuser-privileges. Don't execute the installers beeing the superuser on linux systemsBoth installers use sudo for that task and will ask for your password. They don't store that password, its only used for installation. But for sudo to work, you'll have to add your user to the permission file /etc/sudoers. If you forget to do so, the installation will fail. |