export EDITOR=/usr/bin/vim
or each editor you would have!
export EDITOR=/usr/bin/vim
I was running an Exchange Server in English and then tried to move the accounts using exmerge to one in German when I ran into this error. After much reading I came accross this website: http://technet.microsoft.com/en-us/library/bb124178.aspx which states:
"Store 'MSPST MS' was not opened Store 'MSEMS' was not opened
The Store 'MSPST MS' was not opened or Store 'MSEMS' was not opened errors might be seen in the ExMerge log file (ExMerge.log) after merging data from the recovery storage group has failed. These errors typically indicate a language localization mismatch problem. The errors can usually be resolved by entering the correct localized names for the MAPI services on which ExMerge depends.
In the ExMerge.ini file that is bundled with the ExMerge tool, find the LoggingLevel line and set its value to 3 instead of 0. This enables verbose logging of ExMerge errors.
Run ExMerge again to generate the error condition again. To reduce the output to the log file, select only a single mailbox to merge.
In the ExMerge.log file, find the lines that begin with "Checking service" and that are followed by a "was not opened" error. For example:
In the ExMerge.ini file, find LocalisedExchangeServerServiceName and remove the semicolon (;) that precedes the line. Then set the value to the service name displayed in the ExMerge.log file. For example:
In the ExMerge.ini file, find LocalisedPersonalFoldersServiceName and remove the semicolon (;) that precedes the line. Then set the value to the service name displayed in the ExMerge.log file. For example:
So, simply find the localised names and remove the ';' from the one you need to use. For example, in my case I needed spanish so I removed it from the Spanish one and here is what I ended up with:
; French
;LocalisedPersonalFoldersServiceName=Dossiers personnels
; Spanish
LocalisedPersonalFoldersServiceName=Carpetas personales
; German
;LocalisedPersonalFoldersServiceName=Persönliche Ordner
; Italian
;LocalisedPersonalFoldersServiceName=Cartelle personali
From the looks of it, you will run into issues if you are using ExMerge for a French, Spanish, German or Italian system. Hope this helps!
If you can get access to the database, try changing the user_password field value in vtiger_users table to:
adpexzg3FUZAk which makes the password as admin
mysql> update vtiger_users set user_password='adpexzg3FUZAk' where user_name='admin' ;
You will also need to set the crypt_type field of vtiger_users to blank (empty value) if you are on 5.0.4 and above.update
mysql> vtiger_users set crypt_type='' where user_name='admin' ;
Now the password for "admin" is "admin"!
as the new shell, type in “/bin/tcsh”. Your default shell has now been changed to the Tenex C-shell; it can do everything bash can.
Don’t modify root’s SHELL.
type in “exit”
type in “exit” again, then log in.
Create and edit the following files with your preferred text editor:
Anyways, now your cursor keys and the [BACKSPACE] will always work properlyvi /.login
add this line:
stty erase ^H
vi /.cshrc
add these lines:
set Resize="/usr/openwin/bin/resize"
set autolist
set notify
set correct=cmd
set prompt="[%B%n@%m%b][%B%~%b]> "
set savehist=7000eval "$Resize" -c
setenv TERM vt100
setenv PAGER ´less -s´
Put to the my.cnf:
slave_compressed_protocol=ON
or you can change this value in the run time in mysql with:
SET global slave_compressed_protocol=OFF;