- 浏览: 197185 次
- 性别:
- 来自: 北京
最新评论
-
juzhishang:
请问传递参数的URL格式是啥?能举个例子不?
中国建设银行网上支付接口以及自动对账 -
juzhishang:
受教了,多谢
中国建设银行网上支付接口以及自动对账 -
bosschen:
不用客气,共同进步嘛。
中国建设银行网上支付接口以及自动对账 -
relic6:
楼主的一句: “由于返回的xml开头空了4行,所以需要setR ...
中国建设银行网上支付接口以及自动对账 -
eshorezrj:
...
request.getParameterValues
文章列表
很多站长拥有linux主机,不管是虚拟机还是实体机,一般我们远程连接的时候,都是用的ssh(SecureShell建立在应用层和传输层基础上的安全协议)。
它默认的端口22,默认使用root也是可以登录的。这样在互联网上就是很危险的事情了,我们只能通过改变它的默认端口(虽然还是会被端口扫描探查),禁用root登录,来相对地提高安全性。
1. 修改ssh默认端口
a.命令行临时修改
Linux下SSH默认的端口是22,为了安全考虑,现修改SSH的端口为1433,修改方法如下 :
/usr/sbin/sshd -p 1433
b.修改配置文件,永久修改
vi /etc/ss ...
linux新建用户 赋予root权限
1、添加普通用户
[root@server ~]# useradd ghb //添加一个名为ghb的用户 [root@server ~]# passwd ghb //修改密码 Changing password for user ghb. New UNIX password: //在这里输入新密码 Retype new UNIX password: //再次输入新密码 passwd: all authentication tokens updated successfu ...
centos中查看用户和用户组
用户列表文件:/etc/passwd用户组列表文件:/etc/group
查看系统中有哪些用户:cut -d : -f 1 /etc/passwd查看可以登录系统的用户:cat /etc/passwd | grep -v /sbin/nologin | cut -d : -f 1查看用户操作:w命令(需要root权限)查看某一用户:w 用户名查看登录用户:who查看用户登录历史记录:last
E325: ATTENTION
Found a swap file by the name ".mysql_backup.sh.swp"
owned by: root dated: Sat Apr 23 23:58:28 2016
file name: /mnt/resource/mysql_backup/mysql_backup.sh
modified: YES
user name: root host name: xxxxxx
process ID: 1998 ...
通过ssh登录远程服务器之后,还可以继续在服务器上登录其他服务器,
命令为 ssh -p 端口号 ip
防火墙:
#清空所有默认规则
iptables -F
yum install iptables
iptables -A INPUT -i eth1 -m iprange --src-range 10.10.10.10-10.10.10 -j ACCEPT
iptables -A INPUT -i eth1 -p tcp --dport 80 -j ACCEPT
iptables -A INPUT -i eth1 -j REJECT
service ipt ...
有时为了防治用户乱了访问顺序,不得不禁掉浏览器的前进后退按钮。
jQuery(document).ready(function () {
if (window.history && window.history.pushState) {
$(window).on('popstate', function () {
/// 当点击浏览器的 后退和前进按钮 时才会被触发,
window.history.pus ...
if (/android/i.test(navigator.userAgent)){
// todo : android
}
if (/ipad|iphone|mac/i.test(navigator.userAgent)){
// todo : ios
}
今天在安装MySQL后,启动时候没有启动成功,查看了下日志报错如下:
---------------------------------------------
[root@localhost local]# less /var/log/mysqld.log
1、查看报错信息如下:
[ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist
2、经过查阅资料得知。要敲如下命令解决:mysql_install_db –usrer=mysql datadir= ...
有时,使用rm -rf filename命令,却无法删除文件。出现:
rm: cannot remove `/tmp/tmptmp/.journal': Operation not permitted
mkdir: cannot create directory `/tmp/tmptmp': File exists
这种情况往往不知所措。下面是其解决方法:
1 . 使用lsattr filename的形式,查看其属性.
lsattr /tmp/tmptmp/.journal ----i-d------ /tmp/tmptmp/.journal
发现其多了一个i 和一个d ...
文章来自 http://blog.csdn.net/bboyjoe/article/details/46697673
<div class="header-bottom">
<div class="container">
<div class="logo">
<a href="home"><img src="static/web/images/logo.png" alt="远地资产 & ...
http://www.cnblogs.com/babycool/archive/2012/08/04/2623137.html
http://www.cnblogs.com/oec2003/archive/2010/01/06/1640027.html
http://www.cnblogs.com/Jimmy009/archive/2012/08/02/2619477.html
本文转自:http://www.cnblogs.com/wangyhua/p/4050563.html
担心对方删帖,所以自己抄一份备用。
本人使用的CKEditor版本是3.6.3。CKEditor配置和部署我就不多说。
CKEditor的编辑器工具栏中有一项“图片域”,该工具可以贴上图片地址来在文本编辑器中加入图片,但是没有图片上传。
java读取excel空格变问号,然后用trim和replace都不济于事。
所以下面是解决办法。
经查看空白对应的ascii码发现其对应的值为160,而trim()只能清除ascii码为32的空格。
先将其转化为ascii码为32的空格,然后在使用trim()str=str.replace(String.valueOf((char)160)," ");str=str.trim();System.out.println("xxxxxxx"+str+"xxx");