51CTO博客开发白璐pizarro
昨天接到一个新的任务,将之前的一个供货商管理系统进行国际化支持,该系统采用了Status2框架,因此对Struts2的国际化进行了一些研究,下面是关于国际化配置的一些结果,分享给大家参考: 1. 建立资源文件: 建立资源文件如:&nb
1、 用sed修改test.txt的23行test为tset; sed –i ‘23s/test/tset/g’ test.txt 2、 查看/web.log第25行第三列的内容。 sed –n ‘25p’ /web.lo
1. 在主库进行下面配置 1.1 确认主数据库运行在归档模式下 使用下面命令确定主数据库处于归档模式下:  
1.定义一个新的试图 create view v_test as select * form test where id>=1001; //如果需要对列重新命名,可以使用以下方式 create view v_test(dept_id,total_salary) as select dept_id,sum(salary) from test group by dept_n
select case when sum(grade)>500000 then sum(grade) else 0 end from test1 &nb
1.并集的运算 select name from test1 union [all] select name from test2; 使用union时,默认将对结果进行排序,union all则不进行排序操作,所以会消耗更少的资源;然而,union all将不进行去重的操作~ 2.交集的运算 select name from test1 &n
自然连接 select * from r1 natural [inner] join r2 natural [inner] join r3 where P; select A1,A2 from r1 natural [inner] join r2,r3 where r2.A=r3.B; 自然连接中,匹配关
表的建立 oracle中包括五种约束,包括主键约束(primary key,该属性的值不能为空,不可重复,默认该列自动建立索引),外键约束(foreign key() references rname,参照完整性约束,该属性的值必须在所对应的关系中存在),非空约束(not null),唯一约束(unique,不可重复,但可以为空,因为在数据库中,该表达式 null
1.建立表学生信息表(stu_info)并插入数据 create table stu_info ( stu_num number(10) primary key, stu_name varchar2(10) not null, stu_sex varchar2(2)&
设有一个关系数据库,有三个基本表,表结构如下: 1)student 学号stu_num 姓名name 年龄age 性别gender 系号department_id 2) SC 学号stu_num 课程号curr_id 成绩grade 3) Coutse 课程号curr_id 课程名curr_name 学时数class_hour #建立表并插入数据 create 
#!/bin/bash #========================================= #File: #Description: #Author: smileliuyb #Modify:&nbs
1.脚本如下~ #!/bin/bash #========================================= #File: check_vm.sh #Description: #Author: smileliuyb
1. 建立一个Shell脚本,用于检测MySql的AB复制 vim /usr/local/nagios/libexec/check_mysqlab #!/bin/bash #========================================= #File: checkmysql
实现过程如下(该配置过程中IP和网关均为临时使用,生产中应配置在配置文件中): 1.配置网关服务器(用以模拟ISP) ifconfig eth0:0 192.168.10.254 ifconfig eth0:1 192.168.20.254 ifconfig eth0:2 192.168.30.254 ifconfig eth0:3 192.168.40.254 ifconfig
1.配置DHCP服务 #安装dhcpd软件包 yum install dhcpd -y #编辑dhcpd服务配置文件,配置问 #vim /etc/dhcpd.conf ddns-update-style interim; ignore client-updates; subnet 192.168.20.
先不废话了,上图 在这架构中,客户发送第一个请求包1.该请求包的格式如下 数据 HTTP协议(方法GET) SIP:10.1.1.x DIP:192.168.10.11
为了使用CentOS的源,我们首先需要删除RHEL中原有的yum软件包并下载安装CentOS的yum软件包。 1.删除redhat原有的yum rpm -qa | grep yum | xargs rpm -e –nodeps #xargs是一条Unix和类Unix操作系统的常用命令。它的作用是将参数列表转换成小块分段传递给其他命令,以避免参数列表过长
1.修改MySql的MASTER服务器配置文件,在[mysqld]字段中加入以下内容 #vim /etc/my.cnf #[mysqld] #设置mysql服务器的serverID server_id = 10 #启用mysql服务的binlog功能 log-bin=binlog log-bin-index=binlog.index #重启mysql服务 /etc/init.d/
一、使用Nat模式的LVS的构建 1.配置分发器。 #配置网卡 ifconfig eth0 10.1.1.250 ifconfig eth1 192.168.10.250 #打开网卡转发 #echo '1' > /proc/sys/net/ipv4/ip_forward //临时启用网卡转发 #编辑/etc/sysctl.conf文件可以永久启用网卡转发 #vim /etc/
当客户在浏览器输入网址后,首先进行DNS解析,当客户端取得网址所对应的IP地址后,浏览器将客户请求发送给服务器(apache),当apache接收到客户请求,会寻找客户请求的页面。如果页面是html文件,则将页面的代码传递给客户端,由客户端的浏览器进行翻译并显示出来。而如果客户端请求的页面是apache无法解释的文件,则apache在配置文件中搜寻解释该文件所需要的模块
1.建立一个数据库 create database vfast; 2.新建一个用户表 create table employee(employee_id int,name char(12),gerder enum('M','F'),dent_id set("1","2","3","4"),join_time da
#简单的说,有1到100的数字序列循环读数。每当计数器值为12,就将计数器指向的数字在亚瑟环中剔除并将计数器置1,问该序列中最后剩下的数字是多少? #算法:当计数器为12时,则将计数器对应的数组中的数字置0,当数组中只有一个不为0的数值时,即为最后剩下的数值。 #!/bin/bash #定义数组numarray[] numarray=({0..100}) #定义一个计数器num num
yum install gcc tar fxz httpd-2.0.64.tar.gz cd httpd-2.0.64 ./configure make make install #setenforce 0 iptables -A INPUT -p tcp --dport 22 -j ACCEPT iptables -A INPUT -p tcp --dport 80 -j ACC
19-刘英博 1.使得只有192.168.0.x 和192.168.0.y 的机器可以连接您的pop3服务器。但同一网段的其他人不行。 #!/bin/bash for i in nat filter mangle do iptables -t $i -F iptables -t $i -X done ip = "192.168.0" ipt
1.配置服务器server1作为DNS服务器和网关服务器 1).配置服务器的hostname hostname dns.server1 vim /etc/hosts #============================================ 127.0.0.1 dns.server1 localhost localhost.localdomain #==========
1.配置服务器的hostname hostname mail.liuyb.com vim /etc/hosts #======================== 127.0.0.1 mail.liuyb.com #======================== vim /etc/sysconfig/network #======================== HOSTNA
19-刘英博 1.配置主DNS服务器 安装DNS服务 yum install bind* 配置bind主配置文件 vim /var/named/chroot/etc/named.conf #================== ##配置全局选项 options{ directory "var/named
19-刘英博 1.在sever2上配置dhcp服务 #配置网卡ip地址 #配置eth0的IP为172.17.17.2网关172.17.17.1,网关必须要填写,不然中继会出现问题(vim /etc/sysconfig/network-scripts/ifcfg-eth0) #安装dhcp服务 yum install dhcp #配置dhcp的主配置文件/etc/dhcp
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号