- 浏览: 107792 次
- 来自: ...
最新评论
-
hsh930:
把这屏蔽resin 根本就不能启动。 3.0.19 怎样屏蔽? ...
resin防止浏览器查看目录结构 -
hsh930:
把这屏蔽resin 根本就不能启动。 3.0.19 怎样屏蔽? ...
resin防止浏览器查看目录结构 -
hsh930:
不行呀!!!!
resin防止浏览器查看目录结构
文章列表
要在虚拟主机上配置hsqldb,传了文件,设置好路径,运行时老是提示已经有另一个进程lock了文件,使用hsqldb的管理工具shutdown掉了,传上去还是报错,改了文件的权限,没解决,google了半天,也没什么思路,最后突然想起来,文件夹权限没改,放数据的文件夹也要改相应的权限,改好后,一切ok了,哎,我可怜的4小时呀。
- 2007-11-14 23:58
- 浏览 1171
- 评论(0)
1、下载
下载7.04的iso文件
2、备份
把source.list备份一份,然后清空保存,执行下列命令
3、加载iso
mount -o loop iso9660 /dev/cdrom /media/...../ubuntu.iso
sudo apt-cdrom add
4、升级
sudo apt-get update
sudo apt-get dist-upgrade
5、删除source.list,将备份的还原,将该文件中的 edgy 替换为 feisty 并保存即可。
- 2007-05-08 15:11
- 浏览 1523
- 评论(0)
(from http://www.yatblog.com/2007/04/22/cleaning-up-your-ubuntu-installation/)
After upgrading my Ubuntu 6.10 installation to the newest 7.04 (Feisty Fawn) over a thousand packages were upgraded. So it’s obvious that there were left some dependencies which are not needed anymore. Sure everything s ...
- 2007-04-24 22:40
- 浏览 1314
- 评论(0)
为了防止浏览器查看目录结构,需要修改
<!--
- Servlet to use for directory display.
-->
<servlet servlet-name="directory"
servlet-class="com.caucho.servlets.DirectoryServlet"/>
将红色部分屏蔽即可
- 2007-04-10 23:59
- 浏览 3410
- 评论(3)
As part of the HTTP response, Resin sends its name and version number in a server header, e.g. Server: Resin/3.0.14. Some sites prefer to change that header to a different value to hide the software version that's running the site.
To enable this, in the <server> block use
[edit]
resin.conf
...
- 2007-04-10 23:58
- 浏览 2312
- 评论(0)
1,简单替换表达式
替换命令可以在全文中用一个单词替换另一个单词:
:%s/four/4/g
“%” 范围前缀表示在所有行中执行替换。最后的 “g” 标记表示替换行中的所有匹配点。如果仅仅对当前行进行操作,那么只要去掉%即可
如果你有一个象 “thirtyfour” 这样的单词,上面的命令会出错。这种情况下,这个单词会被替换成”thirty4″。要解决这个问题,用 “\<” 来指定匹配单词开头:
:%s/\<four></four>
显然,这样在处理 “fourty” 的时候还是会出错。用 “\>” 来解决这个问题:
:%s ...
- 2007-04-10 23:03
- 浏览 3079
- 评论(0)
When you need to edit a configuration file from the command line in a pinch, use these tips for the ins and (especially) outs of vim.
If one thing is for sure about Linux, it's that it has no shortage of text editors. This reflects the largely text-based nature of Linux, from the command line, to th ...
- 2007-04-10 23:03
- 浏览 3830
- 评论(0)
问题:ubuntu6.10server安装时选择了中文,默认为zh_CN.utf8,
在运行resin后,没法读取中文名文件,而且命令行的中文名文件显示为乱码。
解决:
在运行resin和tomcat之前,export LANG="zh_CN.GB2312",
例如rc.local中添加
export JAVA_HOME="/opt/java"
export LANG="zh_CN.GB2312"
/opt/resin/bin/httpd.sh start
ps:命令行下在export LANG="zh_CN.GB23 ...
- 2007-04-10 22:59
- 浏览 2027
- 评论(0)
udo vi /etc/network/interfaces
//这个应该是决定是否启用这个端口
auto eth0
//静态设置IP
iface eth0 inet static
address 172.16.146.200
netmask 255.255.255.0
#broadcast 172.16.146.255
gateway 172.16.146.254
//通过dhcp动态设置
iface eth0 inet dhcp
//设置DNS服务器
sudo vi /etc/resolv.conf
nameserver 202.96.128.68
nameserver 61 ...
- 2007-04-10 22:38
- 浏览 5166
- 评论(0)
create an md5 password hash for resin-admin via:
> echo -n "password" | openssl dgst -md5
- 2007-04-10 22:29
- 浏览 3795
- 评论(0)
edit phoenix.sh to set the PHOENIX_HOME
PHOENIX_HOME=/opt/james
and comment out the bit of phoenix.sh
#PRGDIR=`dirname "$THIS_PROG"` #PHOENIX_HOME=`cd "$PRGDIR/.." ; pwd` # #unset THIS_PROG # #if [ -r "$PHOENIX_HOME"/bin/setenv.sh ]; then 1. . "$PHOENIX_HOME ...
- 2007-04-10 09:49
- 浏览 1550
- 评论(0)
sudo aptitude install mysql-server php5 php5-mysql apache2
sudo /etc/init.d/apache2 restart
sudo /etc/init.d/mysql restart
sudo aptitude install phpmyadmin
- 2007-03-30 00:13
- 浏览 999
- 评论(0)
Debian也有个类似RH的服务管理软件rcconf.
这是个很简单的管理软件,通过文本窗口管理.
想使用他同样需要下载安装
apt-get install rcconf
然后在shell下输入rcconf就可以了
当然,我只是想把Debian改造成一个web服务或者firewall服务.
我也不想安装其他很少会用到的软件.
就不要安rcconf这个套件了 .
直接用Debian自带的update-rc.d也是个不错的选择.
缺点就是直观性太差,界面不亲和.
以例子来说明添加服务在系统启动的时候自动跟随运行级别启动
编辑脚本于/etc/init. ...
- 2007-03-26 23:19
- 浏览 5618
- 评论(0)
查看cpu信息 为以后做准备
cat /proc/cpuinfo
升级新内核可手动编辑 我这次安装直接输入linux26已经用到2.6 kernel
以下在以默认安装的时候弄过 也就是引导后直接回车安装系统
apt-get install linux-image
之后会列出核心架构选择符合的安装
我是amd 选的K7
reboot
- 2007-03-26 23:18
- 浏览 1123
- 评论(0)
先选择一个镜象为以后寻找更快的apt源安装几个需要的包.
我选择的taiwai镜象,大陆debian99的速度在我这差到只有几K几K的跑~:*(这没关系只是占时用他来下载几个包而已.
选择好镜象后apt-get update更新一下.
寻找一个快速的apt源.
虽然这需要一小段时间.
但他是很值得的,为以后节省了更多的时间准备.
先安装apt-spy包
apt-get install apt-spy
更新镜象列表保存在/var/lib/apt-spy/mirrors.txt
apt-spy update
寻找在亚洲最快的镜象
apt-spy -d t ...
- 2007-03-26 23:17
- 浏览 1076
- 评论(0)