eGroupware 1.6.002 on RHEL 4U5 x86的安装手记
一。安装OS,分区没有特别要求,建议分割出独立的分区来存储将来放进去的资料和文件,eGw的文件存储目录可以后期在指定
二。安装MySQL
三。安装Apache
四。安装php(要带GD支持的)
五。修改php的配置文件:/usr/local/php5.2.2/lib/php.ini
1.upload_max_filesize要大于等于8M
2.要完全支持多国语言(UTF-8) 或是其它双字节编码,必须设置 mbstring.func_overload = 7
3.增补 PEAR 组件:
/usr/local/php5.2.2/bin/pear install HTTP_WebDAV_Server-beta
/usr/local/php5.2.2/bin/pear install Auth_SASL
/usr/local/php5.2.2/bin/pear install Net_IMAP
/usr/local/php5.2.2/bin/pear install Net_Sieve
/usr/local/php5.2.2/bin/pear install XML_Feed_Parser
/usr/local/php5.2.2/bin/pear install Log
4.解压缩eGroupware-1.6.002.tar.bz2至/usr/local/apache2/htdocs/
5.chown -R daemon.daemon egroupware/
6.启动Apache服务
7.浏览器访问http://服务器ip地址/egroupware,选择语言后执行“执行安装测试”
a.设置header账户的密码
b.到mysql中添加一个数据库,并给他新建一个mysql用户,附上权限,例如:
mysql>create database egroupware;
mysql>grant all on egroupware.* to user@localhost identified by "password"
mysql>grant all on egroupware.* to user@127.0.0.1 identified by "password"
mysql>flush privileges;
c.将上面定义好的信息填入相应位置
d.设置配置管理员的密码
e.点击"写入"-->"继续",即可进入default域的"安装程序"界面,然后按照"步骤"做,最后"返回用户登陆界面"即可
阅读(1408) | 评论(0) | 转发(0) |