Mobile Therefore SSL-less

Therefore™ is popular information and document management system from Canon. Actually complete suite of applications that enables you to store, manage and process all kinds of business information efficiently and securely throughout your organization.

More info here -> http://www.therefore.net/

As it goes these days, there is of course Therefore mobile app for iOS, Android and Windows Phone.
However, out of box – default Therefore mobile service requires SSL to run.

Here you can find a quick note how to run SSL-less Therefore mobile service.

First, you need to find TheMobileManager.exe.config configuration file, usually placed in C:\Program Files\Therefore directory:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <!--uncomment this line to enable http-->
    <!--<add key="HttpEnabled" value="true" />-->
    
    <!--uncomment these lines in case of multi-tenant system-->
    <!--<add key="CacheCleanUpTime" value="30"/>
    <add key="CacheLocation" value="LocalTempFolder"/>
    <add key="WebServicePort" value="443"/>-->
        
  </appSettings>
</configuration>

 

Second, uncomment line 5 to enable http for the service:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <!--uncomment this line to enable http-->
    <add key="HttpEnabled" value="true" />
    
    <!--uncomment these lines in case of multi-tenant system-->
    <!--<add key="CacheCleanUpTime" value="30"/>
    <add key="CacheLocation" value="LocalTempFolder"/>
    <add key="WebServicePort" value="443"/>-->
        
  </appSettings>
</configuration>

Finally, you only need to restart Therefore Mobile service and you are ready to go mobile without SSL.

 

Enable linux root access on Microsoft Azure Cloud

How to enable linux root access on Microsoft Azure Cloud

1. Login via ssh using your sudo user on your Microsoft Azure linux server

2. Now login as root user

[root@lin ~]# sudo su -

3. check if root access is set (LOCK means that root access is disabled)

[root@lin ~]# grep root /etc/shadow

Result:
root:*LOCK*:14600::::::

4. enable root access  (as root user enter command passwd)

[root@lin ~]# passwd

5. Now enter your password and root access is enabled.

You can check this by using command “grep root /etc/shadow”

That’s all folks