How to setup Documentum Content Server and Webtop 6.7 on local PC - documentum

I want to setup Documentum Content Server 6.7 with Webtop client on my local PC. As I am new to Documentum, I don't know whether community version for Documentum is available or not.
Please guide me and provide useful links for setup and installation if possible.
Thanks in advance.

It is possible to install Documentum platform on any computer there is minimal requirements to follow though.
However there is no community version of installation setup, you need be part of partnership program somehow to be able to download setups.

Related

MobileFirst Studio 7.0 installation

Installing IBM MobileFirst Studio 7.0 using MFPF_7.0_ELP_UPD_IBM_MF_STUDIO.zip but due to local LAN security we are not able to get dependency from eclipse market place which are required and downloaded directly from download.eclipse.org org. Where can we download necessary requirements and use this as local repository?
You can try this .zip file, but I'm pretty sure it is the same: http://public.dhe.ibm.com/ibmdl/export/pub/software/products/en/MobileFirstPlatform/mobilefirst_studio_plugin_7.0.0.zip
When using the .zip file, you can also attempt the installation with the "Contact all update sites..." checkbox un-checked, before proceeding with the installation in Eclipse.
In general, the MFP Studio installation requires an outside Internet connection.
Find a location with a working connection, install. Make a copy of your Eclipse for future use.
Standard scenario for this setup is to have a central installation (with Internet connection). Then archive that specific installation, and then sneakernet it each of the disconnected workstations. You must do this for each type of workstation (Win/OSX/Linux) to be supported. No its not optimal, but does resolve the problem. Hope this helps.
You can check with your network administrator if they can allow your machine to access to the internet via a proxy server. If this is possible all you need is to configure the network connection in Eclipse to include your proxy server setting. You can see the detail here:
http://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.platform.doc.user%2Freference%2Fref-net-preferences.htm

IBM Mobilefirst server configuration tool without GUI

I'm trying to install IBM Mobilefirst 7.0 server on production Ubuntu server in Amazon. The server has no GUI. I installed Websphere Application Server and IBM Mobilefirst server using silent installation of IBM Installation Manager and response file created on server with GUI. But now I'm stuck at a point where I have to configure MobileFirst server using server configuration tool. But I'm not able to find out how to do this without GUI since server configuration tool is GUI based. Any pointers or help would be highly appreciated!
You can use ant tasks to proceed with the configuration without the GUI.
Detailed steps for this can be found in the link below.
http://www-01.ibm.com/support/knowledgecenter/SSHS8R_7.0.0/com.ibm.worklight.deploy.doc/devref/t_transporting_apps_and_adapters.html
What I was asking for is way to implement MobileFirst Server administration without using GUI as given in step number 6 in this link: http://www-01.ibm.com/support/knowledgecenter/#!/SSHSCD_6.3.0/com.ibm.worklight.installconfig.doc/install_config/t_ov_server_install.html. Since the server I was working on does not have a GUI, I was stuck at step 6. But I found the way out now and for someone who is looking for this, the way to do is using ant scripts. Steps are listed at this link : http://www-01.ibm.com/support/knowledgecenter/#!/SSHS8R_7.0.0/com.ibm.worklight.installconfig.doc/devref/t_ant_tasks_configure_dbs_wlconsole.html

Worklight Server 6.2 Context not found

I am trying to install and configure Worklight application center on liberty profile.
I have installed the worklight 6.2 using the installation manager. Along the installation process i have installed the appcenter as well.
The installation was successful. But when i try to access the console it giving me "Context root not found".
Also I have checked the server.xml of the liberty server. It contains the appcenterconsole.war and the applicationcenter.war mapped.
Does anyone experience this problem as well?
This might be the same problem as mentioned here: Worklight Development Server does not start
Please make sure you use Oracle Java, not IBM Java!

Can we implement IWAP reports with IBM Worklight developer edition

Can we implement IWAP reports with developer edition of IBM Worklight 6.0 ? If yes please guide me with technical document or any link. Is this feature only available with Enterprise or Consumer version ?
If yes then how can we implement/test this on development environment. And can anyone please provide me with list of features which are not available with developer version(one which comes into my mind is Application Center).
The Operational Analytics feature introduced in Worklight 6.0 is only available for paid versions of IBM Worklight 6.0. There's a file (analytics.zip) in the resulting IBM Installation Manager output folder that contains everything you need to setup the IBM Websphere Analytics Platform (IWAP). Once you have IWAP installed, you will need to modify a couple of properties inside worklight.properties which, among other things, tell the Worklight Server where to send the analytics data.
Regarding features found only in paid versions, beside Application Center and Operational Analytics, ability to use other DBMS (MySQL, DB2, etc.) and Application Servers (WAS, Tomcat, etc.). There are also Ant scripts that aim to help with common tasks like deployments.
More
InfoCenter
Getting Started Module

Installing Trac as a Windows Service on Windows Server 2008

As the title suggests, I'm trying to install Trac as a Windows Service on Windows Server 2008. I've looked into the instructions at Installing Trac as a Windows Service. Out of the different options given there, I would prefer an Option 1 like approach which uses some Windows utilities instead of installing additional software but the instructions seem a bit outdated for Windows Server 2008 as instsrv.exe and srvany.exe are not available for Server 2008. There is a suggestion to use winserv.exe but I can't find it anywhere and the suggested Google search does not provide any credible results.
Is there a way to use the sc Windows utility to install Trac as a service? Has anyone tried this?
Update: I tried using sc but that does not work. sc only interacts with programs developed as Windows Service Applications so they have hooks to interact with sc.
I could solve this problem using winserv.exe, that can be downloaded from this tutorial page: http://wiki.go-redrock.com/wiki/TechAsService
Once you get the binary file run:
"C:\path\to\winserv.exe" install tracd -displayname "tracd" -start auto "C:\path\to\python.exe" c:\path\to\python\scripts\tracd-script.py <your tracd parameters>
net start tracd
Hope you can solve your problem like I did!
If you just want to easily install Trac on a Windows server, I can recommend Bitnami Trac Stack to you. It comes as 2 services, one for Apache web server running Trac as python module and one for SVN.
Are you restricted to using tracd to host your Trac installation? If you use a real web server, this is typically a bit easier. Web servers like IIS and Apache typically install themselves as a service. If you set up something other than tracd to serve up your Trac site, it will most likely run as a service by default. In general, you'll have a better experience using a full-featured web server like Apache instead of the minimalistic tracd.