SugarCRM

CRMとはCustomer Relation(ship?) Managment
ぶっちゃけ、グループウェアのひとつの形態とかんがえていいのかね?

まぁ、やってみます
http://www.atmarkit.co.jp/flinux/rensai/sugarcrm01/sugarcrm01a.html

記事に従えば大体できるはず
apache + php + mysqlの連携プレーですね

はまりそうなところは
apacheが起動していないともちろん動くわけがない。

mysql-serverのインストールとか起動とかしてないともちろん動くわけがない。
mysqlの初期設定の説明がないので自力でやる必要がある。

ここらへんを参考に
http://nekhet.ddo.jp/item/792
http://www.dream-seed.com/pukiwiki/index.php?Linux%2FMySQL%A4%CE%C0%DF%C4%EA

[root@cent5-19 html]# mysql_install_db で初期化

この状態だとだれでも #mysqlにはいれることがはいれるがなにもできない?
ので rootで登録する

[root@cent5-19 html]# mysqladmin -u root password 'xxxxxx' もち伏字

[root@cent5-19 html]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 18
Server version: 5.0.45 Source distribution

てな感じでめでたくpassword保護されました

mysql> select host,user,password from mysql.user;
                                                                            • +
host user password
                                                                            • +
localhost root xxxxxxxxxxxxx ここらへんは伏字ね
cent5-19 root
127.0.0.1 root
                                                                            • +
3 rows in set (0.01 sec) mysql> show database; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'database' at line 1 mysql> show databases;
                                          • +
Database
                                          • +
information_schema
mysql
test
                                          • +
3 rows in set (0.00 sec) 89,1 93%

動く環境での主要なインストール済みのパッケージは(うちの環境では)
こんな感じです

[root@cent5-19 html]# rpm -aq | grep http
httpd-2.2.3-11.el5_1.centos.3
[root@cent5-19 html]# rpm -aq | grep php
php-pdo-5.1.6-20.el5_2.1
php-cli-5.1.6-20.el5_2.1
php-5.1.6-20.el5_2.1
php-common-5.1.6-20.el5_2.1
php-imap-5.1.6-20.el5_2.1
php-devel-5.1.6-20.el5_2.1
php-mbstring-5.1.6-20.el5_2.1
php-mysql-5.1.6-20.el5_2.1
[root@cent5-19 html]# rpm -aq | grep mysql
ruby-mysql-2.7.3-1.el5
mysql-devel-5.0.45-7.el5
mysql-5.0.45-7.el5
php-mysql-5.1.6-20.el5_2.1
mysql-server-5.0.45-7.el5
[root@cent5-19 html]# 

めでたく動いたんですが、

警告: 管理パネルでアップグレードをしてください。

ってメッセージがでるんですが、どこで処理していいのかわからん。