Trouble getting Tomcat going and Sakai

441 views
Skip to first unread message

kyle

unread,
Apr 24, 2017, 10:19:04 AM4/24/17
to Sakai Development
Hello group,

I worked with Sakai at a University and now I am trying to install and create

my own Sakai for a group of doctors trying to create courses to sell online.
Running a Sakai that is already set up is pretty simple for me. Installing
Sakai and Tomcat is already complicated. It seems like the kind of thing only
a computer programmer can do. I feel like I am in a different language while
trying to navigate even downloading the GitHub for Sakai. I am having trouble
setting up Tomcat and generally just getting everything started. Is there
anyone I can talk to that could help me with getting a start? Or could anyone
make a video showing how to download Sakai and the prerequisites? I have Java
SE. Tomcat is giving me issues.


The main issue with starting up Tomcat seems to be something going on with Java and the environment set up. I believe i have the environment set up correctly, though. 

I am happy to meet via Skype with anyone or web conference. I live in the New York city area. 

Vijay Raman

unread,
Apr 24, 2017, 3:58:29 PM4/24/17
to Sakai Development
Getting started with Sakai, and I'm a long time programmer.

Having nothing show up at localhost://8080/portal after I extract sakai 11 binary, plop in the sakai.properties with mysql uncommented, and generally follow direction in the Sakai 11 install guide.

Here is my Tomcat/Catalina log with errors.


Pointers please to save me days of trouble.

Thank you.
vj

Rafael Morales Gamboa

unread,
Apr 24, 2017, 4:23:34 PM4/24/17
to saka...@apereo.org

Dear Vijay,

I would be useful to have more information concerning the server where you are willing to install Sakai, such as operating system (ej. Linux Debian 8) , Java compiler (ej. Oracle Java 8), Tomcat release (ej. Tomcat 8.0.32).

On my own little experience, I had problems with Tomcat not having, and not including in its classpath, a /components directory, that is created by Sakai installation.

Regards,
Rafael
--
You received this message because you are subscribed to the Google Groups "Sakai Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sakai-dev+...@apereo.org.
To post to this group, send email to saka...@apereo.org.
Visit this group at https://groups.google.com/a/apereo.org/group/sakai-dev/.

Vijay Raman

unread,
Apr 24, 2017, 7:48:18 PM4/24/17
to Sakai Development
Dear Rafael,

I'm ultra cautious when getting a large new J2EE app going (rather not debug from the log).
So I went with the recommendations - Fresh Tomcat 8.0.32, jdk1.8 and the binary sakai release. Its on Windows 10.

I know Tomcat classloader takes everything on its %CATALINA_HOME%\lib.

There is nothing in the install about doing anything with the components directory of the sakai binary distribution. 
I wondered what the components directory is doing there. Where should it go? Do I copy the jars in there into tomcats lib?

Cheers,
Vijay

Vijay Raman

unread,
Apr 25, 2017, 8:06:09 AM4/25/17
to Sakai Development
Hi Kyle,

How did you fare with solving your install problems?

Regards,
Vijay

On Monday, 24 April 2017 10:19:04 UTC-4, kyle wrote:

Leonardo Canessa

unread,
Apr 25, 2017, 8:41:45 AM4/25/17
to Vijay Raman, Sakai Development
Vijay,

From your logs:
24-Apr-2017 15:12:08.155 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive C:\apache-tomcat-8.0.32\webapps\access.war
24-Apr-2017 15:12:12.319 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
24-Apr-2017 15:12:16.221 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal One or more Filters failed to start. Full details will be found in the appropriate container log file
24-Apr-2017 15:12:16.221 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal Context [/access] startup failed due to previous errors
24-Apr-2017 15:12:16.228 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Deployment of web application archive C:\apache-tomcat-8.0.32\webapps\access.war has finished in 8,072 ms

You need to look at the other tomcat logs for more details. 

Leonardo Canessa
Web Developer - E-Learning

--
You received this message because you are subscribed to the Google Groups "Sakai Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sakai-dev+unsubscribe@apereo.org.

Vijay Raman

unread,
Apr 25, 2017, 9:22:58 AM4/25/17
to Sakai Development, vijay...@gmail.com
Leonardo,

I did look into the other log, and still trying to interpret it!


Thanks!
Vijay
To unsubscribe from this group and stop receiving emails from it, send an email to sakai-dev+...@apereo.org.

Leonardo Canessa

unread,
Apr 25, 2017, 9:29:43 AM4/25/17
to Vijay Raman, Sakai Development
Seems like a configuration / deployment issue.

Here is an ls -l * of my root tomcat directory:

Leonardo Canessa
Web Developer - E-Learning

To unsubscribe from this group and stop receiving emails from it, send an email to sakai-dev+unsubscribe@apereo.org.

Rafael Morales Gamboa

unread,
Apr 25, 2017, 10:05:56 AM4/25/17
to saka...@apereo.org

Hello Vijay,

I had some problems with the components directory when installing Sakai 11.0, but none with 11.3 (just checked), so I guess there is no problem with that.

The problem I see in your log is:

"Error creating bean with name 'sakai-PermissionChecker' defined in class path resource [conf/sakai-applicationContext.xml]: Cannot resolve reference to bean 'org.sakaiproject.authz.api.SecurityService' while setting bean property 'securityService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.sakaiproject.authz.api.SecurityService' defined in file [C:\apache-tomcat-8.0.32\components\sakai-kernel-component\WEB-INF\authz-components.xml]: Invocation of init method failed; nested exception is java.lang.NullPointerException"

It seems it cannot find the class org.sakaiproject.authz.api.SecurityService (in file sakai-kernel-api-11.3.jar, which should be located in the /lib directory).

Regards,
Rafael

Vijay Raman

unread,
Apr 25, 2017, 11:53:25 AM4/25/17
to Sakai Development
Hi Rafael, 

This is my listing. I see the jar you reference in lib, so I'll take a break and go at it again. Thanks.

 Directory of C:\apache-tomcat-8.0.32\bin

04/24/2017  01:11 PM    <DIR>          .
04/24/2017  01:11 PM    <DIR>          ..
02/02/2016  07:38 PM            28,419 bootstrap.jar
02/02/2016  07:38 PM            13,825 catalina.bat
02/02/2016  07:38 PM            21,389 catalina.sh
02/02/2016  07:38 PM             1,686 catalina-tasks.xml
02/02/2016  07:38 PM            24,283 commons-daemon.jar
02/02/2016  07:38 PM           204,944 commons-daemon-native.tar.gz
02/02/2016  07:38 PM             2,040 configtest.bat
02/02/2016  07:38 PM             1,922 configtest.sh
02/02/2016  07:38 PM             7,888 daemon.sh
02/02/2016  07:38 PM             2,091 digest.bat
02/02/2016  07:38 PM             1,965 digest.sh
02/02/2016  07:38 PM             6,308 service.bat
02/02/2016  07:38 PM             3,430 setclasspath.bat
02/02/2016  07:38 PM             3,547 setclasspath.sh
04/24/2017  03:11 PM               302 setenv.bat
02/02/2016  07:38 PM             2,020 shutdown.bat
02/02/2016  07:38 PM             1,902 shutdown.sh
02/02/2016  07:38 PM             2,022 startup.bat
02/02/2016  07:38 PM             1,904 startup.sh
02/02/2016  07:38 PM         2,125,824 tcnative-1.dll
02/02/2016  07:38 PM           109,696 tomcat8.exe
02/02/2016  07:38 PM           110,208 tomcat8w.exe
02/02/2016  07:38 PM            40,845 tomcat-juli.jar
02/02/2016  07:38 PM           387,352 tomcat-native.tar.gz
02/02/2016  07:38 PM             4,057 tool-wrapper.bat
02/02/2016  07:38 PM             5,061 tool-wrapper.sh
02/02/2016  07:38 PM             2,026 version.bat
02/02/2016  07:38 PM             1,908 version.sh
              28 File(s)      3,118,864 bytes

     Total Files Listed:
              28 File(s)      3,118,864 bytes
               2 Dir(s)  412,612,902,912 bytes free



 Directory of C:\apache-tomcat-8.0.32\lib

04/25/2017  10:11 AM    <DIR>          .
04/25/2017  10:11 AM    <DIR>          ..
02/24/2017  07:40 PM             8,157 accountvalidator-api-11.3.jar
07/14/2016  09:57 AM            69,409 activation-1.1.1.jar
02/02/2016  07:38 PM            17,353 annotations-api.jar
07/14/2016  09:57 AM           443,432 antlr-2.7.6.jar
07/14/2016  10:02 AM           167,735 antlr-runtime-3.5.jar
07/14/2016  09:57 AM             4,467 aopalliance-1.0.jar
07/14/2016  10:02 AM           448,794 apache-log4j-extras-1.2.17.jar
02/24/2017  07:35 PM            12,120 archive-api-11.3.jar
07/14/2016  10:02 AM            47,359 asm-4.1.jar
07/14/2016  10:02 AM            38,090 asm-commons-4.1.jar
07/14/2016  09:56 AM           331,716 backport-util-concurrent-3.1.jar
02/24/2017  07:35 PM            18,600 basiclti-api-11.3.jar
07/23/2016  03:13 AM         2,012,027 castor-1.0.jar
02/02/2016  07:38 PM         1,557,195 catalina.jar
02/02/2016  07:38 PM            53,338 catalina-ant.jar
02/02/2016  07:38 PM           119,738 catalina-ha.jar
02/02/2016  07:38 PM            74,629 catalina-storeconfig.jar
02/02/2016  07:38 PM           271,717 catalina-tribes.jar
07/14/2016  10:01 AM           331,202 cglib-nodep-3.1.jar
07/14/2016  09:57 AM           263,865 commons-codec-1.8.jar
07/14/2016  09:57 AM           588,337 commons-collections-3.2.2.jar
07/14/2016  09:57 AM           160,519 commons-dbcp-1.4.jar
07/14/2016  09:59 AM           112,341 commons-el-1.0.jar
02/24/2017  06:35 PM            70,282 commons-fileupload-1.3.2.jar
07/14/2016  09:57 AM           208,700 commons-io-2.5.jar
07/14/2016  09:57 AM           284,220 commons-lang-2.6.jar
07/14/2016  09:57 AM           434,678 commons-lang3-3.4.jar
07/14/2016  10:00 AM         2,213,560 commons-math3-3.6.1.jar
07/14/2016  09:57 AM           100,625 commons-pool-1.5.7.jar
02/24/2017  07:37 PM            63,032 configuration-bundles-11.3.jar
02/24/2017  07:37 PM             4,023 content-copyright-api-11.3.jar
02/24/2017  07:37 PM             6,462 content-metadata-api-11.3.jar
02/24/2017  07:35 PM             8,713 contentreview-model-api-11.3.jar
02/24/2017  07:35 PM             4,071 contentreview-service-api-11.3.jar
02/24/2017  07:35 PM            13,791 coursemanagement-api-11.3.jar
02/24/2017  07:36 PM            30,693 coursemanagement-hibernate-model-11.3.jar
02/24/2017  07:37 PM            32,613 delegatedaccess-api-11.3.jar
07/14/2016  09:57 AM           313,898 dom4j-1.6.1.jar
02/02/2016  07:38 PM         2,310,271 ecj-4.4.2.jar
07/14/2016  09:57 AM         1,347,501 ehcache-core-2.6.11.jar
07/14/2016  10:04 AM           862,157 ehcache-terracotta-2.6.11.jar
02/02/2016  07:38 PM            81,428 el-api.jar
07/14/2016  10:02 AM        14,041,249 elasticsearch-1.7.5.jar
02/24/2017  07:37 PM             9,691 emailtemplateservice-api-11.3.jar
02/24/2017  07:35 PM           318,688 entitybroker-api-11.3.jar
02/24/2017  07:37 PM             3,893 external-calendaring-service-api-11.3.jar
07/23/2016  03:09 AM            30,838 geronimo-spec-jms-1.1-rc4.jar
02/24/2017  07:35 PM            37,796 gradebook-service-api-11.3.jar
02/24/2017  07:37 PM            73,251 gradebook-service-hibernate-11.3.jar
07/14/2016  10:02 AM         6,998,724 groovy-all-2.4.4.jar
07/14/2016  10:04 AM         3,126,237 hazelcast-3.2.3.jar
07/14/2016  10:04 AM           288,854 hazelcast-client-3.2.3.jar
07/14/2016  09:57 AM            71,283 hibernate-commons-annotations-3.2.0.Final.jar
07/14/2016  09:57 AM         3,123,360 hibernate-core-3.6.10.Final.jar
07/14/2016  10:00 AM            11,283 hibernate-ehcache-3.6.10.Final.jar
07/14/2016  09:57 AM           102,661 hibernate-jpa-2.0-api-1.0.1.Final.jar
02/24/2017  07:37 PM            42,952 hierarchy-api-11.3.jar
02/24/2017  06:35 PM           136,363 HikariCP-2.5.1.jar
07/14/2016  09:58 AM           706,710 hsqldb-1.8.0.10.jar
07/14/2016  09:59 AM           940,186 ical4j-1.0.7.jar
07/14/2016  09:58 AM            36,523 jackson-annotations-2.3.5.jar
07/14/2016  09:58 AM           199,671 jackson-core-2.3.5.jar
07/14/2016  09:58 AM           915,717 jackson-databind-2.3.5.jar
02/02/2016  07:38 PM           586,441 jasper.jar
02/02/2016  07:38 PM           161,398 jasper-el.jar
07/14/2016  09:57 AM           714,524 javassist-3.18.2-GA.jar
07/14/2016  09:59 AM           231,882 jaxen-1.1.6.jar
07/14/2016  09:56 AM            16,431 jcl-over-slf4j-1.7.21.jar
07/23/2016  03:09 AM             6,727 jdbc-stdext-2.0.jar
07/14/2016  09:59 AM           153,253 jdom-1.0.jar
07/14/2016  10:02 AM           914,597 jna-4.1.0.jar
02/02/2016  07:38 PM            61,417 jsp-api.jar
07/14/2016  09:59 AM            20,682 jstl-1.1.2.jar
07/14/2016  09:57 AM            15,071 jta-1.1.jar
07/14/2016  10:02 AM           794,991 jts-1.13.jar
07/14/2016  09:56 AM           245,039 junit-4.11.jar
02/24/2017  07:36 PM            15,990 lessonbuilder-api-11.3.jar
02/24/2017  07:38 PM            30,524 lessonbuilder-hbm-11.3.jar
07/14/2016  09:56 AM           489,884 log4j-1.2.17.jar
02/24/2017  07:38 PM             8,114 login-api-11.3.jar
07/14/2016  10:02 AM         1,699,875 lucene-analyzers-common-4.10.4.jar
07/14/2016  10:02 AM           476,945 lucene-codecs-4.10.4.jar
07/14/2016  10:02 AM         2,563,490 lucene-core-4.10.4.jar
07/14/2016  10:02 AM            75,491 lucene-expressions-4.10.4.jar
07/14/2016  10:02 AM           107,784 lucene-grouping-4.10.4.jar
07/14/2016  10:02 AM           138,282 lucene-highlighter-4.10.4.jar
07/14/2016  10:02 AM            64,021 lucene-join-4.10.4.jar
07/14/2016  10:02 AM            36,078 lucene-memory-4.10.4.jar
07/14/2016  10:02 AM            97,173 lucene-misc-4.10.4.jar
07/14/2016  10:02 AM           213,029 lucene-queries-4.10.4.jar
07/14/2016  10:02 AM           391,515 lucene-queryparser-4.10.4.jar
07/14/2016  10:02 AM           119,449 lucene-sandbox-4.10.4.jar
07/14/2016  10:02 AM           126,794 lucene-spatial-4.10.4.jar
07/14/2016  10:02 AM           179,011 lucene-suggest-4.10.4.jar
07/14/2016  09:57 AM           508,143 mail-1.4.5.jar
02/24/2017  07:39 PM            14,472 mailsender-api-11.3.jar
07/23/2016  03:09 AM           353,282 mariadb-java-client-1.3.6.jar
02/24/2017  07:38 PM           399,789 messageforums-api-11.3.jar
02/24/2017  07:38 PM           129,079 messageforums-hbm-11.3.jar
02/14/2017  09:27 PM           992,808 mysql-connector-java-5.1.41-bin.jar
02/24/2017  07:35 PM            19,177 oauth-api-11.3.jar
02/24/2017  07:39 PM             7,668 oauth-dao-hbm-11.3.jar
07/14/2016  09:59 AM            83,329 OkiOSID-2.0.jar
02/24/2017  07:39 PM            15,240 pasystem-api-11.3.jar
07/23/2016  03:13 AM           142,812 pluto-container-1.1.7.jar
07/23/2016  03:13 AM            39,406 pluto-descriptor-api-1.1.7.jar
07/23/2016  03:13 AM            46,472 pluto-descriptor-impl-1.1.7.jar
07/23/2016  03:13 AM            25,969 pluto-taglib-1.1.7.jar
02/24/2017  07:39 PM            20,638 polls-api-11.3.jar
07/14/2016  09:58 AM            17,090 portlet-api-1.0.jar
02/24/2017  07:36 PM           111,178 profile2-api-11.3.jar
07/14/2016  09:57 AM           660,382 quartz-2.2.2.jar
02/24/2017  07:35 PM             9,637 sakai-announcement-api-11.3.jar
02/24/2017  07:35 PM            36,606 sakai-assignment-api-11.3.jar
02/24/2017  07:35 PM            18,400 sakai-calendar-api-11.3.jar
02/24/2017  07:36 PM             3,824 sakai-calendar-hbm-11.3.jar
02/24/2017  07:36 PM            11,595 sakai-chat-api-11.3.jar
02/24/2017  07:36 PM            25,783 sakai-citations-api-11.3.jar
02/24/2017  07:36 PM            22,279 sakai-common-composite-component-data-11.3.jar
02/24/2017  07:36 PM             7,958 sakai-common-edu-person-api-11.3.jar
02/24/2017  07:36 PM             3,343 sakai-common-manager-api-11.3.jar
02/24/2017  07:36 PM             4,885 sakai-common-type-api-11.3.jar
02/24/2017  07:35 PM            59,303 sakai-component-manager-11.3.jar
02/24/2017  07:38 PM            14,231 sakai-comp-shared-help-11.3.jar
02/24/2017  07:35 PM             7,034 sakai-courier-api-11.3.jar
02/24/2017  07:37 PM             2,877 sakai-dav-common-11.3.jar
02/24/2017  07:37 PM             3,940 sakai-dav-server-11.3.jar
02/24/2017  07:38 PM             7,500 sakai-help-api-11.3.jar
02/24/2017  07:38 PM           902,343 sakai-help-content-11.3.jar
02/24/2017  07:35 PM           313,197 sakai-kernel-api-11.3.jar
02/24/2017  07:38 PM             2,862 sakai-kernel-common-11.3.jar
02/24/2017  07:38 PM            14,077 sakai-kernel-private-11.3.jar
02/24/2017  07:39 PM             9,462 sakai-mailarchive-api-11.3.jar
02/24/2017  07:35 PM             7,495 sakai-message-api-11.3.jar
02/24/2017  07:39 PM            70,439 sakai-podcasts-api-11.3.jar
02/24/2017  07:35 PM            19,055 sakai-portal-api-11.3.jar
02/24/2017  07:39 PM             5,401 sakai-portal-render-api-11.3.jar
02/24/2017  07:39 PM             5,381 sakai-postem-api-11.3.jar
02/24/2017  07:39 PM            22,516 sakai-postem-hbm-11.3.jar
02/24/2017  07:36 PM             4,676 sakai-presence-api-11.3.jar
02/24/2017  07:36 PM             3,056 sakai-privacy-api-11.3.jar
02/24/2017  07:36 PM             4,205 sakai-privacy-hbm-11.3.jar
02/24/2017  07:40 PM            10,859 sakai-rights-api-11.3.jar
02/24/2017  07:41 PM            32,067 sakai-rwiki-api-11.3.jar
02/24/2017  07:41 PM            20,365 sakai-rwiki-model-11.3.jar
02/24/2017  07:42 PM             3,026 sakai-siteassociation-api-11.3.jar
02/24/2017  07:42 PM             4,789 sakai-siteassociation-hbm-11.3.jar
02/24/2017  07:42 PM            10,347 sakai-site-manage-api-11.3.jar
02/24/2017  07:42 PM            10,648 sakai-site-manage-hbm-11.3.jar
02/24/2017  07:42 PM             8,401 sakai-syllabus-api-11.3.jar
02/24/2017  07:42 PM            11,069 sakai-syllabus-hbm-11.3.jar
02/24/2017  07:35 PM             9,014 sakai-taggable-api-11.3.jar
02/24/2017  07:42 PM             6,252 sakai-taggable-hbm-11.3.jar
02/24/2017  07:43 PM             2,796 sakai-usermembership-api-11.3.jar
02/24/2017  07:35 PM             3,872 sakai-velocity-tool-api-11.3.jar
02/24/2017  07:43 PM             2,826 sakai-web-api-11.3.jar
02/24/2017  07:36 PM           142,142 samigo-api-11.3.jar
02/24/2017  07:36 PM           146,417 samigo-hibernate-11.3.jar
02/24/2017  07:37 PM           666,050 samigo-services-11.3.jar
02/24/2017  07:35 PM            11,400 scheduler-api-11.3.jar
02/24/2017  07:38 PM           110,733 scheduler-component-shared-11.3.jar
02/24/2017  07:38 PM             5,543 scheduler-events-model-11.3.jar
02/24/2017  07:38 PM            21,904 scheduler-test-component-shared-11.3.jar
02/24/2017  07:35 PM             5,261 scoring-service-api-11.3.jar
02/24/2017  07:36 PM            14,181 search-api-11.3.jar
02/24/2017  07:41 PM             5,975 search-model-11.3.jar
02/24/2017  07:36 PM            16,754 sections-api-11.3.jar
02/24/2017  07:37 PM            23,199 sections-model-11.3.jar
02/02/2016  07:38 PM           244,281 servlet-api.jar
02/24/2017  07:41 PM             5,617 shortenedurl-api-11.3.jar
07/14/2016  10:02 AM           428,580 sigar-1.6.4.jar
02/24/2017  07:41 PM            45,515 signup-api-11.3.jar
07/14/2016  09:58 AM           366,139 simple-xml-2.6.jar
02/24/2017  07:40 PM            48,447 sitestats-api-11.3.jar
02/24/2017  07:42 PM            30,068 sitestats-impl-hib-11.3.jar
07/14/2016  09:56 AM            41,071 slf4j-api-1.7.21.jar
07/14/2016  09:56 AM             9,988 slf4j-log4j12-1.7.21.jar
07/14/2016  10:02 AM           102,177 spatial4j-0.4.1.jar
11/03/2016  05:05 PM           371,398 spring-aop-4.2.7.RELEASE.jar
11/03/2016  05:05 PM           731,946 spring-beans-4.2.7.RELEASE.jar
11/03/2016  05:05 PM         1,096,994 spring-context-4.2.7.RELEASE.jar
11/03/2016  05:06 PM           177,026 spring-context-support-4.2.7.RELEASE.jar
11/03/2016  05:05 PM         1,095,130 spring-core-4.2.7.RELEASE.jar
11/03/2016  05:05 PM           262,994 spring-expression-4.2.7.RELEASE.jar
11/03/2016  05:06 PM           423,731 spring-jdbc-4.2.7.RELEASE.jar
11/03/2016  05:06 PM           466,619 spring-orm-4.2.7.RELEASE.jar
11/03/2016  05:06 PM           265,172 spring-tx-4.2.7.RELEASE.jar
11/03/2016  05:05 PM           767,504 spring-web-4.2.7.RELEASE.jar
07/14/2016  10:04 AM        12,580,566 terracotta-toolkit-1.6-runtime-5.9.0.jar
02/02/2016  07:38 PM             9,278 tomcat-api.jar
02/02/2016  07:38 PM           710,055 tomcat-coyote.jar
02/02/2016  07:38 PM           244,813 tomcat-dbcp.jar
02/02/2016  07:38 PM            67,760 tomcat-i18n-es.jar
02/02/2016  07:38 PM            41,433 tomcat-i18n-fr.jar
02/02/2016  07:38 PM            43,535 tomcat-i18n-ja.jar
02/02/2016  07:38 PM           135,946 tomcat-jdbc.jar
02/02/2016  07:38 PM            31,475 tomcat-jni.jar
02/02/2016  07:38 PM           105,275 tomcat-util.jar
02/02/2016  07:38 PM           201,062 tomcat-util-scan.jar
02/02/2016  07:38 PM           215,473 tomcat-websocket.jar
02/24/2017  07:35 PM             3,695 userauditservice-api-11.3.jar
02/24/2017  07:42 PM            16,994 user-util-11.3.jar
02/02/2016  07:38 PM            36,603 websocket-api.jar
             203 File(s)     85,455,234 bytes

     Total Files Listed:
             203 File(s)     85,455,234 bytes


 Directory of C:\apache-tomcat-8.0.32\conf

04/24/2017  12:58 PM    <DIR>          .
04/24/2017  12:58 PM    <DIR>          ..
04/24/2017  12:58 PM    <DIR>          Catalina
02/02/2016  07:38 PM            12,624 catalina.policy
02/02/2016  07:38 PM             7,251 catalina.properties
04/24/2017  04:43 PM             1,706 context.xml
02/02/2016  07:38 PM             3,451 logging.properties
04/24/2017  01:22 PM             6,620 server.xml
02/02/2016  07:38 PM             1,783 tomcat-users.xml
02/02/2016  07:38 PM             1,888 tomcat-users.xsd
02/02/2016  07:38 PM           173,514 web.xml
               8 File(s)        208,837 bytes



     Total Files Listed:
               8 File(s)        208,837 bytes
               8 Dir(s)  412,612,956,160 bytes free


 Directory of C:\apache-tomcat-8.0.32\webapps

02/24/2017  07:35 PM         1,392,811 access.war
02/24/2017  07:40 PM         5,208,298 accountvalidator.war
02/24/2017  07:42 PM         2,067,052 adminsiteperms.war
02/24/2017  07:39 PM           388,476 authn.war
02/24/2017  07:36 PM         2,988,108 basiclti-admin-tool.war
02/24/2017  07:37 PM           261,873 courier.war
02/24/2017  07:37 PM           410,057 dav.war
02/24/2017  07:37 PM         3,657,429 delegatedaccess-tool.war
02/24/2017  07:37 PM         1,318,699 direct.war
02/24/2017  07:42 PM         1,902,190 elfinder-connector.war
02/24/2017  07:37 PM         3,794,106 emailtemplateservice-tool.war
02/24/2017  07:37 PM         1,656,721 feedback-tool.war
02/24/2017  07:38 PM        19,316,146 gradebookng-tool.war
02/24/2017  07:38 PM         2,022,931 grades-rest.war
02/24/2017  07:36 PM         2,182,359 imsblis.war
02/24/2017  07:36 PM         1,361,749 imsblti.war
02/24/2017  07:38 PM           485,407 jsf-resource.war
02/24/2017  07:38 PM         7,588,383 lessonbuilder-tool.war
02/24/2017  07:40 PM        86,765,899 library.war
02/24/2017  07:39 PM           936,064 login-render.war
02/24/2017  07:39 PM         4,270,106 mailsender-tool.war
02/24/2017  07:39 PM         8,755,545 messageforums-tool.war
02/24/2017  07:39 PM         2,113,641 oauth-tool.war
02/24/2017  07:39 PM         2,524,929 pasystem-tool.war
02/24/2017  07:39 PM           357,739 podcasts.war
02/24/2017  07:39 PM         4,960,189 polls-tool.war
02/24/2017  07:39 PM         2,417,977 portal.war
02/24/2017  07:39 PM         2,933,262 portal-chat.war
02/24/2017  07:39 PM         1,148,962 portal-render.war
02/24/2017  07:40 PM         6,704,502 profile2-tool.war
02/24/2017  07:37 PM         1,422,078 providers.war
02/24/2017  07:35 PM         1,399,096 sakai-alias-tool.war
02/24/2017  07:35 PM         2,449,921 sakai-announcement-tool.war
02/24/2017  07:35 PM         1,408,658 sakai-archive-tool.war
02/24/2017  07:35 PM         6,512,603 sakai-assignment-tool.war
02/24/2017  07:35 PM         1,464,491 sakai-authz-tool.war
02/24/2017  07:42 PM           361,046 sakai-calendar-connector.war
02/24/2017  07:36 PM         2,647,681 sakai-calendar-summary-tool.war
02/24/2017  07:36 PM         3,069,126 sakai-calendar-tool.war
02/24/2017  07:36 PM         7,701,255 sakai-chat-tool.war
02/24/2017  07:36 PM         2,658,318 sakai-citations-servlet.war
02/24/2017  07:36 PM         3,582,671 sakai-citations-tool.war
02/24/2017  07:37 PM           258,870 sakai-contentreview-tool-federated.war
02/24/2017  07:37 PM         6,122,282 sakai-content-tool.war
02/24/2017  07:39 PM           415,829 sakai-editor.war
02/24/2017  07:40 PM           381,107 sakai-fck-connector.war
02/24/2017  07:37 PM        23,659,765 sakai-gradebook-tool.war
02/24/2017  07:38 PM         3,115,211 sakai-help-tool.war
02/24/2017  07:39 PM         8,657,336 sakai-login-tool.war
02/24/2017  07:39 PM         2,309,852 sakai-mailarchive-tool.war
02/24/2017  07:39 PM         1,382,849 sakai-memory-tool.war
02/24/2017  07:42 PM         3,790,226 sakai-message-bundle-manager-tool.war
02/24/2017  07:39 PM         1,405,641 sakai-message-tool.war
02/24/2017  07:39 PM         3,310,282 sakai-podcasts.war
02/24/2017  07:39 PM         6,940,703 sakai-postem-tool.war
02/24/2017  07:39 PM         1,413,881 sakai-presence-tool.war
02/24/2017  07:40 PM         4,302,797 sakai-reset-pass.war
02/24/2017  07:40 PM         1,382,176 sakai-rights-tool.war
02/24/2017  07:40 PM        12,214,807 sakai-roster2-tool.war
02/24/2017  07:41 PM         2,826,938 sakai-rwiki-tool.war
02/24/2017  07:41 PM           845,273 sakai-search-tool.war
02/24/2017  07:41 PM        10,357,459 sakai-sections-tool.war
02/24/2017  07:41 PM        11,221,466 sakai-signup-tool.war
02/24/2017  07:42 PM         8,690,980 sakai-siteassociation-tool.war
02/24/2017  07:42 PM         3,843,066 sakai-site-manage-group-helper.war
02/24/2017  07:42 PM         3,933,799 sakai-site-manage-group-section-role-helper.war
02/24/2017  07:42 PM         1,382,708 sakai-site-manage-link-helper.war
02/24/2017  07:42 PM         3,860,419 sakai-site-manage-participant-helper.war
02/24/2017  07:42 PM         9,074,467 sakai-site-manage-tool.war
02/24/2017  07:42 PM         3,260,934 sakai-site-pageorder-helper.war
02/24/2017  07:42 PM         1,475,083 sakai-site-tool.war
02/24/2017  07:42 PM         8,044,199 sakai-syllabus-tool.war
02/24/2017  07:42 PM         2,440,661 sakai-tool-tool-su.war
02/24/2017  07:43 PM         9,696,491 sakai-usermembership-tool.war
02/24/2017  07:42 PM         1,648,041 sakai-user-tool.war
02/24/2017  07:42 PM         2,403,571 sakai-user-tool-admin-prefs.war
02/24/2017  07:42 PM         8,012,434 sakai-user-tool-prefs.war
02/24/2017  07:43 PM         1,710,027 sakai-web-portlet.war
02/24/2017  07:36 PM           649,942 sakai-web-portlet-basiclti.war
02/24/2017  07:43 PM         2,423,114 sakai-web-tool.war
02/24/2017  07:43 PM         6,535,459 sakai-ws.war
02/24/2017  07:41 PM        26,120,426 samigo-app.war
02/24/2017  07:38 PM         2,467,610 scheduler-tool.war
02/24/2017  07:42 PM         2,671,327 simple-rss-portlet.war
02/24/2017  07:42 PM         6,671,789 sitestats-tool.war
02/24/2017  07:39 PM           417,649 tool.war
02/24/2017  07:42 PM         6,531,920 userauditservice-tool.war
02/24/2017  07:35 PM         1,392,726 web.war
02/24/2017  07:41 PM           358,478 wiki.war
02/24/2017  07:41 PM           259,798 x.war
              90 File(s)    448,860,422 bytes
               0 Dir(s)  412,590,051,328 bytes free

Vijay Raman

unread,
Apr 25, 2017, 7:05:40 PM4/25/17
to Sakai Development
Thank you Rafael and Leonardo.

I changed the following 

1. The sakai.properties file I downloaded had UNIX line endings. Changed those to Windows LF.
2. I missed renaming the apache-tomcat-8.0.32 folder to tomcat (not sure why this is necessary, as %CATALINA_HOME% points to location of tomcat

Just these two changes were enough. Not sure whether just 1. would suffice.

Many thanks for taking time out of your busy day.

Cheers,
Vijay


On Tuesday, 25 April 2017 10:05:56 UTC-4, rmorales wrote:
Reply all
Reply to author
Forward
0 new messages