
tomcat工程
文章平均质量分 80
lucky-laoA
蚂蚁搬家
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
服务器备份与还原脚本
#!/bin/bash # #this is a main() interface # # # stname=$(hostname | awk -F "." '{print $1}') #the port of nginx _pnginx=80 #the port of Chinese web site _pwwworg=8080 #the port of English w原创 2013-08-03 00:46:07 · 622 阅读 · 0 评论 -
web服务器运维脚本
#!/bin/bash # #this is a main() interface # author:Haibin Wang # Version: 1.0.0.0 # # _hostname=$(hostname | awk -F "." '{print $1}') #the port of nginx _pnginx=80 #the port of Chines原创 2013-08-04 18:45:20 · 863 阅读 · 0 评论 -
Tomcat+Memcached Session共享
type="org.apache.catalina.UserDatabase" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" pathname="conf/tomcat-users.xml"原创 2013-08-10 00:12:48 · 532 阅读 · 0 评论 -
tomcat远程管理系统雏形
一、Vsftpd搭建 1、软件安装 yum –y install vsftpd* 2、配置服务 vim /etc/vsftpd/vsftpd.conf chroot_local_user=YES anonymous_enable=NO #非匿名访问方式 user_deny=YES #开启白名单 use原创 2013-10-12 18:00:37 · 706 阅读 · 0 评论 -
java jdbc连接oracle的三种方法
一、方法 Oracle JDBC 连接ServiceName jdbc:oracle:thin:@//:/ 例:jdbc:oracle:thin@//10.1.112.110:1521/Health 注:@后面有//。这种格式主要针对集群,每个节点的SID不同,但是SERVICE_NAME可以包含所有节点。 Oracle JDBC 连接 ServiceID jdbc转载 2013-09-29 16:26:41 · 1814 阅读 · 0 评论