MySphere Posts

This setup must be done to avoid problems

Change the Default request and PORT size limitations in the Domino http server to a value appropriate for your installation. These changes can be made using the Domino Admin client to change the
following fields in the server document to a value more appropriate for your installation:

First setting:
Server document for the Traveler server–>Internet Protocols Tab–>HTTP Tab–>Http Protocol Limits section–>’Maximum Size of Request’ field (defaults to 10,000 Kilobytes)

Second Setting:
Server Document for the Traveler server–>Internet Protocols Tab–>Domino Web Engine Tab–>POST Data section–>’Maximum POST Data (in kilobytes) field (defaults to 10,000 kilobytes)

From TN1633155

Uncategorized

From my inbox
 
IBM (NYSE: IBM) today announced that for the fourth consecutive year, IDC ranked IBM number one in worldwide market share for enterprise social software.

Social networking adoption continues to soar as businesses look to transform their organization into a smarter enterprise that is capable of empowering a global workforce and transforming client experiences.

According to IDC, the worldwide enterprise social market segment reached 1.0 billion in 2012, representing growth of 25 percent over 2011.*

Please help us share this news with your networks. I have provided additional assets below, including Alistair Rennie’s blog on Social Business Insights which just went live and several client videos that are featured in the infographic and press release.  

This news is based on the just released IDC Worldwide Semiannual Software Tracker.

 IDC will publish an analysis at a later date – therefore there is no link to share to IDC today.  We will let you know as soon as that report is available.  

Uncategorized

I am installing several softwares this week remotely, from my home office. Keep the ssh session is a key for the success.

Screen is like a window manager for your console. It will allow you to keep multiple terminal sessions running and easily switch between them. It also protects you from disconnection, because the screen session doesn’t end when you get disconnected

A basic tutorial about screen you can read here

Another configuration is to tell you ssh terminal to send keep alive. I use MobaXterm. This can be configured using the menu settings — ssh

Image:Keep Your SSH Session Running when You Disconnect

Uncategorized

I use it for years, since my first Domino setup on Linux.

Thanks Daniel Nashed .

The script is here

Uncategorized

Software withdrawal: IBM Connections Content Edition, CEO Community Collaboration, CEO Enhanced Collaboration, Quickr for Domino , Quickr for WebSphere

link

Uncategorized

Uncategorized

Tutorials about WebSphere Portal and WCM

“You’ve come to the right place to get started building your web experience. Since it takes many people, in different roles, all working together to make your website a reality, the hands-on tutorials are organized by user role and progress from novice level, Learn the Basics, to intermediate level, Beyond the Basics. You’ve found a guided path to launching an exceptional web experience. ”

http://infolib.lotus.com/resources/gs/portal8/

Uncategorized

In addition to the existing (and familiar) IBM Domino server installation wizard, in order to supply OpenSocial features from a Domino server, you must run an additional IBM Domino Social Edition OpenSocial component 9.0 installer wizard for IBM Domino 9.0 Social Edition.

See the following procedures for instructions specific to platform on running the additional installer.

Windows

  1. Download and install the Domino 9.0 Social Edition server; or, if you have already installed it and it is running, shut it down.
  2. Run the IBM Domino Social Edition OpenSocial component 9.0 installer and follow its instructions to install the OpenSocial component.

Start the Domino server.

Linux

Installing the OpenSocial component on a Domino server running Linux

  1. Ensure that all scripts in the tools directory have execute permission.
  2. Execute the following to ensure that all files are runnable:
    chmod -R +x
  3. Define a NUI_NOTESDIR variable to point to your existing Domino directory containing the
  4. notes/latest folder. For example, if the directory is /opt/ibm/domino, use the following:
    export NUI_NOTESDIR=/opt/ibm/domino

Uninstalling the OpenSocial component on a Domino server running Linux

1. Navigate to the directory with the install files.
2. Locate the following script (located same place as install script: in the folder of your
Domino Social Edition 9.0 kit after untar).
3. Execute the script using the following command:
./uninstall
IBM Notes, Domino, Domino Designer 9.0 Social Edition Public Beta Release Notes
4

Uninstalling the OpenSocial component using silent mode on a Domino server running Linux

Edit the uninstall script and replace -console with -silent.

For example, replace:
   cmd="$NUI_NOTESDIR/notes/latest/$DEV_ARCH/jvm/bin/java -DSE=1 -cp
$NUI_NOTESDIR/notes/latest/$DEV_ARCH/_uninstSE/uninstall.jar run
-console"
with:
cmd="$NUI_NOTESDIR/notes/latest/$DEV_ARCH/jvm/bin/java -DSE=1 -cp
$NUI_NOTESDIR/notes/latest/$DEV_ARCH/_uninstSE/uninstall.jar run
-silent"

For ibm i see the TN 1627468

Uncategorized

I found a lot of documentation and this is my setup

install the necessary packages

#yum install gcc rpm-build autoconf.noarch zlib-devel pam-devel lzo lzo-devel openssl-devel automake imake pkgconfig gcc-c++ libcrypto.so.6

install openvpn

#yum install openvpn

Copy the files

#cp -r /usr/share/doc/openvpn-2.1.3/easy-rsa/ /etc/openvpn/

Create the certificate.
You’ll be asked to fill the field data, you can empty that with click enter repeatedly, but the one
you have to fill is the “Common Name� field.

#cd /etc/openvpn/easy-rsa/2.0
#source ./vars
#./vars
#./clean-all

Build Key Server

#./build-key-server server

Build Diffie Hellman

#./build-dh

Create the server.conf on the directory /etc/openvpn

This is a sample:

local 123.123.123.123 #- change it with your server ip address
port 1234 #- change the port you want
proto tcp #- protocol can be tcp or udp
dev tun
tun-mtu 1500
tun-mtu-extra 32
mssfix 1450
ca /etc/openvpn/easy-rsa/2.0/keys/ca.crt
cert /etc/openvpn/easy-rsa/2.0/keys/server.crt
key /etc/openvpn/easy-rsa/2.0/keys/server.key
dh /etc/openvpn/easy-rsa/2.0/keys/dh1024.pem
plugin /usr/share/openvpn/plugin/lib/openvpn-auth-pam.so /etc/pam.d/login
client-cert-not-required
username-as-common-name
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push “redirect-gateway def1”
push “dhcp-option DNS 208.67.222.222”
push “dhcp-option DNS 4.2.2.1”
keepalive 5 30
comp-lzo
persist-key
persist-tun
status server-tcp.log
verb 3

Start OpenVPN

#service openvpn start

Generate certificates for the users

./build-key client1 (Ex: ./build-key MyUserName)

Download and setup the OpenVPNClient

Create the myclient.openvpn file

# OpenVPN(v2.0) configuration script

client
proto udp
resolv-retry 20
keepalive 10 120
nobind
mute-replay-warnings
ns-cert-type server
comp-lzo
verb 2
persist-key
persist-tun
verb 1
tls-exit
dev tun0
cert /MyUserName.crt  # this file and the .key file must be copied from the server when you generate the User.
key MyUserName.key
ca ca.crt
remote x.y.z.w 1194 #ip address of the server

Routing all client traffic through the VPN

iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o eth2 -j MASQUERADE
iptables -I INPUT -i tun0 -j ACCEPT
iptables -I FORWARD -i tun0 -j ACCEPT
echo 1 > /proc/sys/net/ipv4/ip_forward

Saving iptables configuration

#/etc/init.d/iptables save

Start the VPNServer  

#service openvpn start

Reference

http://www.zoobey.com/index.php/resources/all-articles-list/619-installing-openvpn-on-centos-5-and-centos-6

Uncategorized

After upgrading an Apple device, the Lotus Traveler account may no longer connect to the server with the error “Cannot Get Mail: the connection to the server failed”. The user may also see a prompt immediately after the upgrade with the error “Password Incorrect: Enter the password for the Exchange account”.

On the Apple device, the Exchange account password (used by Traveler) is not always retained after the iOS upgrade.

Currently there is no resolution to prevent the user from having to reenter their password (as detailed in the solution listed below). However, the following IBM Feature Request has been opened for further investigation: RSSN-8K2GWU

In most of these cases, the problem can be fixed by simply reentering the password for the Lotus Notes Traveler account (Exchange Profile) on the device.

Here are the steps for entering the password on the device:
1) Select Settings
2) Select Mail, Contacts, Calendars
3) Select the correct Domino mail account
4) Select Account
5) Enter the correct Password and select Done

Information above from this TN

Uncategorized