Thursday, October 6, 2011

New BES user can receive, but not send email

Had a user that had this problem.

First I did this:


How to set the Send As permission:

1) Launch ADUC. (Start > Administrative Tools > Active Directory Users and Computers)

2) Enable the advanced features view so that you will be able to see the security tab. (Select menu - View > Advanced Features)

3) Highlight your domain, right click on it and click on "properties".

4) Click the "Security" tab and then click "Add".

5) Enter the name of your BES Admin Service Account and click OK.

6) Now highlight your BES Admin Service Account and press the "Advanced" button.

7) In the Advanced Security Settings window click "Add"

8) Enter the name of your BES Admin Service Account and click OK.

9) Now a new "permissions entry" window will pop up. You need to select "User Objects" in the "Apply onto" drop down box. (It’s down toward the bottom of the list).

10) Click the allow check box for the "Send As" right and select OK. Note: make sure that deny is not checked for this right.

11) Click OK to close the Advanced Security Settings window. The new entry for the BES Admin Service Account will show up in the permission entry list.

12) Click OK to close the properties window. The BES Admin Service Account should show Special Permissions set to allow.

The "Send As" permission has now been set. Please note that it may take up to 90 minutes for the Exchange Information Store to update its permissions cache

Then I Read this:

Stopping the BES Router
Removing the Send As permission from the Information Store and the affected Users account 
Reapplied the Send As
Stopped and restarted the Exchange Services. (Instead of waiting 120 min)  This did take quite some minutes though, so be patient...
Started the BES Router

So, since I had just reapplied the Send As, I just stopped the BES Router, restarted the exchange services, BES Router, etc, and it worked.

  • To start Microsoft Exchange services, at the command prompt, type net start registry name. For example:
    net start MSExchangeIS
  • To stop Microsoft Exchange services, at the command prompt, type net stop registry name. For example:
    net stop MSExchangeIS

Wednesday, August 31, 2011

Optimizing XenServers and Hosts

I found this useful post about doing some optimizations for your Xen hosts and guests:

Link

Unfortunately, I had some trouble finding where to make the mods on the host.  The location you will need is /boot/extlinux.conf.  I think this may be the RedHat location...

Also, these lines are very long, and if you edit them with nano, for instance, you may screw up the file.  I did this once, and the machine would no longer boot.  You have been warned.  So use vi.  (Weren't you always looking for a good excuse to learn vi?)

I just added the kernel param to the 'xe' section.

Can't update XenServer

I tried using a DVD to upgrade some of my XenServers from 5.6 to 5.6SP2.  I got an error that there were no installations found that could be upgraded.  The solution to this was to apply the update from XenCenter.  It appears some updates have to be applied from XenCenter; some updates have to be applied from an DVD or ISO.  If one doesn't work, then try the other.

Wednesday, August 17, 2011

XenCenter blank concole screens, and stats not updating

For me this problem was related to some cache files.

I just saw the suggestion in this thread about clearing the cache....and it worked!

http://forums.citrix.com/thread.jspa?threadID=154046&tstart=0


in short:

Stop XenCenter

run %AppData%\Citrix

delete everything there.

Start XenCenter
---

I also couldn't install updates until I cleared the cache...

Friday, July 22, 2011

Exchange intelligent message filter update fails, Exchange then not running

So I try and dutifully run Windows Update on my SBS2003 box.  Twice now, it has failed (hung) when doing an update to the Exchange Intelligent Message Filter.  When this happens, it leaves your Exchange server in a state where it doesn't work.  Isn't that great?

Anyway, I reboot the system and Exchange still doesn;t come up correctly.  Turns out, I had to go to services, enable the IISAdmin service (this must have been disabled during the failed update), then I went to a cmd prompt and ran "iisreset".  This seems to have solved the problem.

Tuesday, March 8, 2011

Reduce SQL Svr instance memory usage

http://msmvps.com/blogs/bradley/archive/2005/02/04/34984.aspx

On our SBS2003 box, we sometimes have sql instances using upwards of 1.5Gb ram.  The machine ram usage goes beyond the available physical ram, and the machine slows to a crawl.

We've used this technique to reduce the sbsmonitoring instance and the ssee instance.

There is also a nice tip there for using taskman from the cmd line to get the sql instance.  Of course Process Explorer also will tell you this info directly.

Wednesday, February 16, 2011

XenServer 5.6 Realtek 8168/8111 problem

If you are trying to use one of these Realtek NICs and are having trouble with XenServer 5.6 fp1, then this may be your solution.


Link



Thursday, January 27, 2011

BES not starting after server reboot

We have BES installed on a SBS2003. When the server reboots, BES does not come up. I believe this has to do with service dependencies. I added a dependency for Router and Dispatcher. I made them depend on the SQL server instance. I'm hoping this will fix the problem. Here is the cmd line I used:

C:\Documents and Settings\avp>sc config "BlackBerry Dispatcher" depend= MSSQL$BLACKBERRY/lanmanworkstation/eventlog/ntlmssp/MSExchangeIS

and

C:\Documents and Settings\avp>sc config "BlackBerry Router" depend= MSSQL$BLACKBERRY/lanmanworkstation/eventlog

3 things to note:

1. There is a space after "depend="
2. when I first used "sc config" I tried to just add the dependency, but this command replaces the dependencies. So I think I have the right dependencies for Router svc...
3. you need to use whatever SQL instance name you have; mine is called MSSQL$BLACKBERRY

When I reboot the server next, I will confirm whether this works or not...

Confirmed.  This did the trick, when the server reboots now, BES comes up functional.

Wednesday, January 26, 2011

Jira not starting after a server reboot

Had this problem, service dependencies fixed it. Here is the link to the article with the magic...

link

Of course, that article is now gone, but here is the updated gist of it:


I have followed the article Running JIRA Standalone as a Service - which includes mention of adding a dependency.
Other dependencies which already existed were:
  • Ancillary Function Driver for Winsock
  • TCP/IP Protocol Driver
For others reading this, be careful as setting the dependency from the CMD line overwrites all existing dependencies, so you must specify existing dependencies as well.
An example to add the MS SQL Server service as a dependency and retain the existing dependencies which should already exist is:
sc config JIRA0123456789 depend= MSSQLSERVER/Tcpip/Afd

Also, there may be a lock file (... .lock) that may need to be deleted...

Finally, a script similar to the following running on startup may help with the lock file issue.  The location and name of the file needs to be confirmed.  On our system, the file is called:


.jira-home.lock


and is located in:


D:\Jira41

The script runs on start up and is as follows:
cls
:: this script will remove the lockfile after a reboot; there is a bug in jira 4.0.1 on virtual servers that shut down quicker than regular servers
:: michael trengrove
@echo off
if not exist "C:\Program Files\Atlassian\Application Data\JIRA\.jira-home.lock" (GOTO END) else (net stop "Atlassian JIRA 4.0.1")
:: wait 1 minute for Jira to fully shutdown
PING -n 60 127.0.0.1>nul
if not exist "C:\Program Files\Atlassian\Application Data\JIRA\.jira-home.lock" (GOTO start-jira) else (del "C:\Program Files\Atlassian\Application Data\JIRA\.jira-home.lock")
::wait 10 seconds to restart Jira
PING -n 10 127.0.0.1>nul
:start-jira
net start "Atlassian JIRA 4.0.1"
PING -n 20 127.0.0.1>nul
if exist "C:\Program Files\Atlassian\Application Data\JIRA\.jira-home.lock" (GOTO END) else (goto start-jira)
:END
cls

Tuesday, January 4, 2011

Schlage lock and Vera

I have yet to figure out how to change the batteries in the (*&(%^ thing without the Vera losing track of it. At this point, when I change batteries, I have to reset the lock to factory defaults before I can get it working on my ZWave network again. Of course to reset it and re-pair it, it has to be removed from the door. Not inconvenient at all...

One thing I did learn, though, is that to reset to factory defaults you only have to disconnect the 9Volt; not the other battery pack too.

Ok, Finally success. It turns out my AA batteries were dead. Apparently they must run the ZWave. (I'm not sure what battery engages the motor.) I never suspected the AA because I had just swapped them out 1 month ago. When I did the battery swap, the lock was no longer paired with Vera, but I didn't have time to screw with it. (Because I figured I would have to remove the lock from the door etc...) All I can figure is that while the lock was not paired, maybe it was using more power trying to get configured or re-synced or something... (Or maybe it was just a bad set of batteries... who knows...)

Once I changed the AA batteries, the lock paired the first try. All is good again... for now.

Ok, time to change the batteries again.  The UI reports battery level for the lock is 1% (!), yet it still seems to work fine...

Anyway, once again, afaik, the 9Volt controls the mechanical motor; the AAs power the ZWave radio.  Now what does the gui report the level of?

Update:  Now I have a battery tester.  The orange light was coming on on the deadbolt when I'd enter a code, so I knew the batteries were low.  I checked the 9V and it reported fine, I checked the AAs and they all reported low.  So I gather the gui shows the level of the AAs.