分享
 
 
 

sol9_x86+apache+mysql+php+discuz

王朝mysql·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

环境:VM+Solaris9 for x86

软件:httpd-2.0.52

mysql-4.0.16

php-4.3.9

Discuz-2.2F

参考的文档有:

[url=http://www.pccode.net].net/forum/viewtopic.php?t=343241&highlight=llzqq"http://bbs.chinaunix.net/forum/viewtopic.php?t=343241&highlight=llzqq

[url=http://www.pccode.net].net/forum/viewtopic.php?t=43778"http://bbs.chinaunix.net/forum/viewtopic.php?t=43778

[url=http://www.pccode.net].net/forum/viewtopic.php?t=329698"http://bbs.chinaunix.net/forum/viewtopic.php?t=329698

[url=http://www.pccode.net].net/forum/viewtopic.php?t=129215&highlight=sql_lex.cc"http://bbs.chinaunix.net/forum/viewtopic.php?t=129215&highlight=sql_lex.cc

[url=http://www.pccode.net].net/forum/viewtopic.php?t=265341"http://bbs.chinaunix.net/forum/viewtopic.php?t=265341

[url=http://www.pccode.net].net/forum/viewtopic.php?t=193717"http://bbs.chinaunix.net/forum/viewtopic.php?t=193717

[url=http://www.pccode.net].net/forum/6/040921/411198.html"http://bbs.chinaunix.net/forum/6/040921/411198.html

所需安装的软件包括:

bison-1.875d

perl-5.8.5

ncurse-5.4

autoconf-2.59

automake-1.9

make-3.80

zlib-1.2.1

gcc-3.4.1(libgcc-3.4.1在这其中)

上述软件可以从http://www.sunfreeware.com/下载

一、修改路径

vi /etc/profile

在最后写入:

PATH=$PATH:/usr/ccs/bin:/usr/local/lib:/usr/local/bin:/usr/lib:/usr/local/httpd/bin:/usr/local/mysql/share/mysql:/usr/local/mysql/bin

CC=gcc

CFLAGS="-O6"

CXX=gcc

CXXFLAGS="-O6 -felide-constructors -fno-exceptions -fno-rtti"

保存退出

执行. /etc/profile

使修改立即生效。

二、编译MYSQL

useradd mysql

groupadd mysql

#./configure --prefix=/usr/local/mysql --with-mysqld-user=mysql --with-charset=gb2312 --with-extra-charsets=all

--with-unix-socket-path=/usr/local/mysql/var/mysql.sock

如在编译过程中出现:

In file included from /usr/include/sys/reg.h:13,

from /usr/include/sys/regset.h:24,

from /usr/include/sys/ucontext.h:21,

from /usr/local/lib/gcc/i386-pc-solaris2.9/3.4.0/include/sys/signal.h:249,

from /usr/include/signal.h:27,

from mysql.cc:40:

/usr/include/ia32/sys/reg.h:300: error: `upad128_t' does not name a type

/usr/include/ia32/sys/reg.h:301: error: `upad128_t' does not name a type

/usr/include/ia32/sys/reg.h:331: error: `upad128_t' does not name a type

make[2]: *** [mysql.o] Error 1

make[2]: Leaving directory `/export/home/z3j/mysql-4.0.18/client'

make[1]: *** [all-recursive] Error 1

make[1]: Leaving directory `/export/home/z3j/mysql-4.0.18'

make: *** [all] Error 2

请修改/usr/include/ia32/sys/reg.h

在第245行

写入

typedef union {

long _q;

uint32_t _l[4];

} upad128_t;

如果出现:

sql_lex.cc: In function `void lex_init()':

sql_lex.cc:85: `symbols' undeclared (first use this function)

sql_lex.cc:85: (Each undeclared identifier is reported only once

sql_lex.cc:85: for each function it appears in.)

sql_lex.cc:87: `sql_functions' undeclared (first use this function)

sql_lex.cc: In function `int find_keyword(LEX *, unsigned int, bool)':

sql_lex.cc:171: implicit declaration of function `int get_hash_symbol(...)'

sql_lex.cc:171: initialization to `SYMBOL *' from `int' lacks a cast

解决办法:

cd sql

make gen_lex_hash

./gen_lex_hash > lex_hash.h (如果提示xx文件找不到,就把/usr/local/lib/的xx文件cp到/usr/lib下)

make

# cp /usr/local/mysql/share/mysql/my-medium.cnf /etc/my.cnf

# /usr/local/mysql/bin/mysql_install_db

# chmod -R 1777 /usr/local/mysql/var

# chown -R mysql /usr/local/mysql/

# chgrp -R mysql /usr/local/mysql/

启动MYSQL:

# /usr/local/mysql/share/mysql/mysql.server start

# /usr/local/mysql/bin/mysqladmin -u root password 123456

# cp /usr/local/lib/libncurses.so.5 /usr/local/mysql/lib/mysql

# /usr/local/mysql/bin/mysql -uroot -p123456

三、编译APACHE

#./configure --prefix=/usr/local/httpd --enable-track-vars --enable-cgi --with-config-file-path=/usr/local/httpd/conf

--with-charset=gb2312 --with-extra-charsets=all --enable-so;make;make install

修改配置文件:

vi /usr/local/httpd/conf/httpd.conf

将Group #-1改为Group nobody

找到#AddType application/x-tar .tgz 这行,在下面加一行。前面不要加#号。

AddType application/x-httpd-php .php

找到下面一行在后面加上index.php,这表示网站的默认页也能够为index.php

DirectoryIndex index.html index.html.var index.php

在行AddDefaultCharset ISO-8859-1下加入:

AddDefaultCharset GB2312

并注释掉AddDefaultCharset ISO-8859-1

四、编译PHP

#./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/httpd/bin/apxs --enable-track-vars

--enable-force-cgi-redirect --with-config-file-path=/usr/local/php/etc;make;make install

vi /usr/local/httpd/htdocs/index.php

写入:<? phpinfo(); ?>

#chmod 755 index.php

#apachectl start

然后在IE中输入ip,测试一下是否成功了。

五、安装Discuz论坛

下载下来的包中的Discuz!目录下的文件考到APACHE的网页根目录

在mysql中创建一个数据库bbs:

mysql>create database bbs;

重启一下APACHE:

#apachectl restart

在IE地址栏输入:http://ip/install.php

按提示操作:

# chmod 707 config.php

# chmod 777 ./tem*

# chmod 777 ./for*

# chmod 777 ./foru*/templ*

# chmod 777 ./foru*/cache

接下来自己看提示操作就OK了。

最后删除网页根目录下的install.php

这是我的第一个准原创吧(参考了一下DX们的贴子,然后总结出来的),大家鼓励一下吧!:)

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有