Alex, You might want to break some of the questions up, afraid I likely don't have answers for everything, but...
> 1. Are you supposed to create a user for the matterhorn service? any > particular group membership for this user? You don't have to, but in a production environment its good to have the system running in its own user/group. > The database tables are not generated, i set > org.opencastproject.db.ddl.generation=false and generated the tables > manually according to > > https://opencast.jira.com/svn/MH/trunk/docs/scripts/ddl/mysql5.sql > > Any idea to why the database is not generated? You did something like: mysql -u root -p < mysql5.sql But, at the moment, the script does not create any schemas for you. so first you want to connect to the database with "mysql -u root -p" then do something like "create database matterhorn;" and then import the data using something like: mysql -u root -p matterhorn < mysql5.sql (in the future this script will do this for you, it was changed in 1.2) Chris -- Christopher Brooks, BSc, MSc ARIES Laboratory, University of Saskatchewan Web: http://www.cs.usask.ca/~cab938 Phone: 1.306.966.1442 Mail: Advanced Research in Intelligent Educational Systems Laboratory Department of Computer Science University of Saskatchewan 176 Thorvaldson Building 110 Science Place Saskatoon, SK S7N 5C9 _______________________________________________ Matterhorn-users mailing list [email protected] http://lists.opencastproject.org/mailman/listinfo/matterhorn-users
