A:iPlanet服务器,.Net出现后改叫Sun One,去年又改叫Sun Java System服务器,
用于部署Solaris/Windows/HP UX/Linux平台上的Web应用,包括web服务器等。
既然是Web应用,其所有服务器的安装基于使用DNS于Internet/Intranet。
Warning表明,你在安装时,没找到DNS和域名,如不愿真的配置DNS,也可加个假的骗过安装的检查。
实际上就是用domainname命令能否检查出域名,如没有则加域名:
domainname xx.xx.xx
再用domainname命令检查域名,如有即可,但此是临时的,如不想配dns,又要常有域名,建defaultdomain文件即可,
vi /etc/defaultdomain
xx.xx.xx
最好/etc/hosts也要加上带域名的主机名
x.x.x.x xx xx.xx.xx
20)Q:我安装solaris9的过程中配置了一块网卡的IP地址,现在可以用了,想将其他3块原装网卡装上来如何能做到,现在用ifconfig -a中能看到一块网卡
A:2个:
如hme0, 1, 2, ...
ifconfig hme0 plumb
ifconfig hme0 10.1.1.1 netmask 255.255.255.0 up
ifconfig hme1 plumb
ifconfig hme1 192.1.1.1 netmask 255.255.255.0 up
ifconfig hme2 plumb
ifconfig hme2 202.1.1.1 netmask 255.255.255.0 up
...
或改文件:
vi /etc/hostname.hme0, hostname.hme1, hostname.hme2, reboot.
21)Q:solaris8下安装oracle10g的问题
执行runInstaller 的时候
出现问题提示
Checking monitor: must be configured to display at least 256 colors Failed <<<<
>>> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set.
Some requirement checks failed. You must fulfill these requirements before
continuing with the installation,at which time they will be rechecked.
Continue? (y/n) [n]
我是使用的xmanager远程登陆安装的
A:我把ip改了 改成我启动xmanager的 这个地方就过去了
22)Q:英文论坛
A:http://www.unix.com/
http://www.bsdforums.org/
http://forums.mozillazine.org/
http://www.webmasterworld.com/
http://www.phpbb.com/phpBB/
http://area51.phpbb.com/phpBB/
http://www.vbulletin.com/forum/
这是我常去的一些。
23)Q:如何查找系统中某个进程所创建的线程信息(如数目等),例如,我运行某一个程序,系统给它分配了进程号,根据设定,程序运行后应创建几个线程,怎么才能确认这几个线程确实已经运行了呢
A:# ps -ecL
PID LWP CLS PRI TTY LTIME CMD
0 1 SYS 96 ? 0:06 sched
1 1 TS 59 ? 0:00 init
2 1 SYS 98 ? 0:00 pageout
3 1 SYS 60 ? 0:54 fsflush
112 1 TS 59 ? 0:00 nscd
112 2 TS 59 ? 0:00 nscd
112 3 TS 59 ? 0:00 nscd
112 4 TS 59 ? 0:00 nscd
112 5 TS 59 ? 0:00 nscd
112 6 TS 59 ? 0:00 nscd
112 7 TS 59 ? 0:00 nscd
112 8 TS 59 ? 0:00 nscd
。。。