Results 1 to 5 of 5

Thread: why is sugarcrm very slow in VM?

  1. #1
    bnnzx is offline Senior Member
    Join Date
    Jun 2009
    Posts
    32

    Default why is sugarcrm very slow in VM?

    I installed the sugarcrm ce 5.52 on vm which os is linux and network adapter is Host-only. When I visit sugarcrm in a intranet network (the linux can access internet), it is normal. However, when I do not connect the computer to the intranet and use it independently, the performance of sugarcrm is too slow to stand.
    I am not sure that sugarcrm ce will visit sugarcrm official website in background or not. Maybe it is the point.
    Can you give me a hand? Any hint is welcome.

  2. #2
    roblaus's Avatar
    roblaus is offline Sugar Community Member
    Join Date
    Dec 2006
    Location
    Vienna / Austria
    Posts
    2,850

    Default Re: why is sugarcrm very slow in VM?

    This exactly is the reason. Login as admin and go to admin/Sugar updates and uncheck the boxes there. Save. This will prevent Sugar from calling home and should solve all your speed problems.
    __________________________
    Robert Laussegger
    http://www.iscongroup.net

    Bei Fragen: support@iscon.at
    Die deutschen Sprachdateien für SugarCRM und das deutsche Handbuch gibt es hier: http://goo.gl/kPsAz
    Ab sofort auch mit 6.4.2

  3. #3
    kuske's Avatar
    kuske is offline Sugar Community Member
    Join Date
    Oct 2007
    Location
    Germany
    Posts
    2,597

    Default Re: why is sugarcrm very slow in VM?

    Open the config.php and search for "sugarbeet".

    Thsi should be

    'sugarbeet' => 0,
    Harald Kuske
    Pre-Sales Engineer Central Europe

    SUGARCRM Deutschland GmbH
    Erika-Mann-Str. 53, 80636 Munich, Germany
    Email: hkuske@sugarcrm.com
    Home: http://www.sugarcrm.com


  4. #4
    mccon1 is offline Sugar Community Member
    Join Date
    Sep 2008
    Posts
    34

    Default Re: why is sugarcrm very slow in VM?

    I've noticed that perf problems can be caused by some browsers, especially Firefox.

    With Firefox 10 (all addons disabled), the pages load incredibly slow (5 sec or more).
    With Chrome 15, pages load significantly faster (around 2-3 sec. each)...

    --Frosty

  5. #5
    morrighu is offline Sugar Community Member
    Join Date
    Apr 2006
    Posts
    34

    Default General Performance Tuning Pointers

    Make sure you have enough system RAM.
    According to the documentation, you need 2GB. Even for a VPS where you can "burst" above your pre-paid limit, it pays to have it when the system needs.

    Disable any apache modules you aren't using.
    Disabling modules you don't need reduces Apache's memory needs, often siginificantly.

    Try modifying your apache2.conf to optomize performance.
    The two things below should give you a place to start. You'll need to watch the server and tweak as needed based on your traffic. YMMV.

    Code:
    <IfModule prefork.c>
    StartServers       3
    MinSpareServers    2
    MaxSpareServers   3
    MaxClients      15
    MaxRequestsPerChild 5000
    </IfModule>
    And

    Code:
    KeepAlive On
    MaxKeepAliveRequests 100
    KeepAliveTimeout 2
    Try modifying your /etc/php5/php.ini to optomize performance
    If you are already at or above 64M, try increasing it.

    Code:
    php_value memory_limit 64M
    Try modifying your /etc/mysql/my.cnf to optomize performance
    Again, if you are at or above these memory limits, try increasing them to see if they have an impact on your problem.

    Code:
    set-variable=max_connections=15
    set-variable=max_user_connections=15
    set-variable=query_cache_limit=16M
    set-variable=query_cache_size=64M
    set-variable=query_cache_type=1

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Slow sugarcrm
    By ramji123 in forum Developer Help
    Replies: 1
    Last Post: 2010-06-07, 12:21 PM
  2. SugarCRM running slow
    By epscom in forum Help
    Replies: 2
    Last Post: 2009-02-18, 10:03 PM
  3. Sugarcrm very slow over SSL
    By sbantz in forum Installation and Upgrade Help
    Replies: 0
    Last Post: 2007-09-26, 06:58 PM
  4. bugs.sugarcrm.com too slow to use
    By mycrmspacegunnar in forum Site feedback
    Replies: 2
    Last Post: 2007-01-10, 09:26 PM
  5. Is SugarCRM slow or is it just me?
    By anthonyt in forum Feature Requests
    Replies: 3
    Last Post: 2005-04-20, 11:11 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •