摘要:
(1)安装rh80,选择web服务器和数据库服务器中的mysql;
(2)安装完成后再手动安装第3张盘上的:
php-devel-4.2.2-8.0.5.i386.rpm
php-mysql-4.2.2-8.0.5.i386.rpm
php-odbc-4.2.2-8.0.5.i386.rpm
有没有用我也不知道,安装了再说!:)
(3)下载phpbb2的安装文件,包括
phpbb-2.0.4......
摘要:
red hat as 2.1 (linux) 串行控制台配置实例
(无显卡,鼠标,键盘)
阿土(aborigen yin)
tutu@bsdbase.com
2003.01.20
这是实例,参考《remote serial console howto》(http://www.tldp.org/howto/remote-serial-console-howto/)做的,
因为只是做串口......
[原创]Oracle 8.1.7 for RedHat Linux 8安装过程详解上一页 ...那是因為版本不同oracle 8.1.7.0.0沒有這個問題
oracle8.1.7.0.1就得改 【程序编程相关:
Apache完全安装指南】 【推荐阅读:
建立高可扩展的web邮件系统(转)】 【扩展信息:
Apache能限制浏览器类型吗?】
月光下轻舞飞扬的猪 回复于:2003-03-02 07:50:04
[quote:5d9026341c="非凡公子"]
那是因為版本不同oracle 8.1.7.0.0沒有這個問題
oracle8.1.7.0.1就得改[/quote:5d9026341c]
对头偶深有感触呵呵:)
hanwoody 回复于:2003-03-02 10:59:03
我安装到创建database时遇到问题(在net8后),推出安装,从shell下运行dbassist创建了数据库,怎么才能将我未完成的配置搞好.thank.
bjchenxu 回复于:2003-03-03 08:58:13
[quote:d207e16245="hanwoody"]我安装到创建database时遇到问题(在net8后),推出安装,从shell下运行dbassist创建了数据库,怎么才能将我未完成的配置搞好.thank.[/quote:d207e16245]
其实你已经没有什么需要配置的了,创建数据库之后是安装oracle带的apache,我安装成功后,在7777端口监听,也没有用,主要是文档
yargoo 回复于:2003-04-14 10:48:35
step23是哪儿的东西?还有其它一些东西跟哪儿去down?
bjchenxu 回复于:2003-04-14 12:07:05
step23就是将上面第二,第三部分的语句放在了一个文件中,大家就不用一句句输入了,你自己制作也行
其他的东东上哪里去down?当然是google.com.关键是手头没有ftp空间呀,大约要600m,否则上载一份,让大家都能下,呵呵
wgj 回复于:2003-04-14 12:34:16
3q
蓝色虫 回复于:2003-04-14 23:36:16
ths
chenyg0055 回复于:2003-04-28 09:36:37
installing oracle 8i on redhat 7.x
unpack the oracle distribution
you unpack the file linux81701.tar into directory /usr/src/oracle as user root:
# whoami
root
# cd /usr/src/
# mkdir oracle
# cd oracle/
# tar xvf /install/oracle/linux81701.tar
before you install
there are a number of issues to consider before you start the installation.
· ram: you must have at least 128 mb ram (i had 384 mb ram).
· kernel version must be at least 2.2; you can check this with the uname command:
· # uname -a
· linux nh.itu.dk 2.4.2-2 #1 sun apr 8 20:41:30 edt 2001 i686 unknown
o executables that must be in the /usr/bin directory:
· # /usr/bin/which make
· /usr/bin/make
· # /usr/bin/which ar
· /usr/bin/ar
· # /usr/bin/which ld
· /usr/bin/ld
· # /usr/bin/which nm
· /usr/bin/nm
· jdk: the oracle installer needs the jdk 1.1.8 to be installed in /usr/local/java/. you can get this from http://www.blackdown.org:
1. goto the download area using a site that is geographicaly near you.
2. click jdk-1.1.8, then i386 and then v3. on that page you download jdk118_v3-glibc-2.1.3.tar.bz2.
3. login as root.
4. in a terminal window you enter the /usr/local/ directory, extracts the tar file and makes a symbolic link to /usr/local/java:
5. tar xvif jdk118_v3-glibc-2.1.3.tar.bz2
6. ln -s /usr/local/jdk118_v3 /usr/local/java
· glibc (fix): the oracle installer does not work with the glibc 2.2 used in redhat 7.0 and 7.1. if you use red hat 7.0 or above, you must make sure that the redhat linux 6.2 compatibility packages are installed (compat-egcs, compat-glibc and compat-libs):
· # rpm -q compat-egcs
· compat-egcs-6.2-1.1.2.14
· # rpm -q compat-glibc
· compat-glibc-6.2-2.1.3.2
· # rpm -q compat-libs
· compat-libs-6.2-3
· make sure that you have the file glibc-2.1.3-stubs.tar.gz which is necessary to complete the installation.
pre-installation
chapter 2 of the oracle installation guide (pre--installation) mentions various kernel parameters to be changed in order to run oracle. i did not recompile the kernel because all the parameters were already above the required values except for the shmmax parameter which can be set in the file /proc/sys/kernel/shmmax.
in file /usr/src/linux-2.4/include/asm/shmparam.h i found the following values:
· shmmax: 0x2000000 corresponding to 64 mb ram. i have 384 mb ram and should therefore set shmmax to 0xc400000. i changed the value by adding
· #
· # for oracle, half of physmem, niels 2001-06-18
· #
· kernel.shmmax = 205520896
to the file /etc/sysctl.conf which is read at boot-time. you can also execute
echo 205520896 > /proc/sys/kernel/shmmax
before you start the oracle server.
· shmmin: 1 which is fine
· shmmni: (1<<_shm_id_bits) with _shm_id_bits which is above the recommended 100.
· shmseg: shmmni which is above the recommended 10.
in file /usr/src/linux-2.4/include/linux/sem.h i found the following values:
· semmni: 128
· semmsl: 250
· semmns: semmni*semmsl
· semopm: 32 (in the manual it should be 100 but i did not change this parameter)
· semvmx: 32767
users and groups
we create three groups:
· orainstall is used to install the software (i.e., will own the oracle universal installers orainventory directory.
· oradba is the group used by the database administrator
· oraoper is the management group.
# whoami
root
# groupadd orainstall
# groupadd oradba
# groupadd oraoper
we create the oracle user account that runs the installation with primary group orainstall and secondary groups oradba and oraoper.
# useradd oracle -g orainstall -g oradba,oraoper
# passwd oracle
changing password for user oracle
new unix password:
retype new unix password:
passwd: all authentication tokens updated successfully
creating mount points
the file system used by oracle can be organized in various ways. a simple approach is to use two mount points with one containing the software and one containing the database files. another approch is to use four mount points in accordance with the optimal flexible architecture (ofa); one for the software and three for the database files. if you use the three mount points then you should put them on different discs to get optimal performance.
...
下一页 摘要:
作者: 车东 chedong@bigfoot.com
最后更新: 02/14/2003 10:56:12
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明
http://www.chedong.com/tech/cvs_card.html
关键词:cvs cvsweb cvstrac wincvs cvsroot
内容摘要:
cvs是一个c/s......