1、下载
http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.20-winx64.zip
2、解压缩
3、配置
将my-default.ini复制为my.ini,并修改如下内容:
[mysqld]
basedir = D:\\soft\\mysql
datadir = D:\\soft\\mysql\\data
character_set_server=utf8
[client]
default-c[......]
1、下载
http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.20-winx64.zip
2、解压缩
3、配置
将my-default.ini复制为my.ini,并修改如下内容:
[mysqld]
basedir = D:\\soft\\mysql
datadir = D:\\soft\\mysql\\data
character_set_server=utf8
[client]
default-c[......]
在你的ssh客户端机器(例如从你的PC登录服务器,那么就是在你的PC上)
创建~/.ssh文件夹
mkdir ~/.ssh
cd ~/.ssh
vi config
# config的文件中,内容为:
host *
ControlMaster auto
ControlPath ~/.ssh/master-%r@%h:%p
此后,第一次登录,还是要输入密码,第二次再打开一个终端登录,就不用再输入密码了!
[......]
sudo add-apt-repository ppa:marutter/rrutter
sudo apt-get update sudo apt-get install r-base r-base-dev
执行
R
[......]
在Linux中,除了进程外,还有一个进程组的概念:
一个进程所创建的子进程,都会被包含到一个进程组中。
所以,我们可以用进程组杀死某个进程及其fork出的所有子进程。
1、跟进进程pid查看某个进程所属的进程组
ps -o pgid 19843
PGID
977
2、kill 某个进程组的所有进程
kill -- -977
注意上面的--和空格和-都不能少哦!
[......]
The solution is using of the following JVM argument:
-Dlog4j.configuration={path to file}
If the file is NOT in the classpath (in WEB-INF/classes in case of Tomcat) but somewhere on you disk, use file:, like
-Dlog4j.configuration=file:C:\Users\me\[......]