1 文件上传
创建/usr/local/bin/upl文件,内容如下1
scp $1 root@transfer:/data/transfer/
切换到root用户,执行1
chmod 777 /usr/local/bin/upl
1 文件上传
创建/usr/local/bin/upl文件,内容如下1
scp $1 root@transfer:/data/transfer/
切换到root用户,执行1
chmod 777 /usr/local/bin/upl
https://github.com/xuxueli/xxl-job
http://www.xuxueli.com/xxl-job/#/
xxl-job-admin打包生成war文件之后,需要放到tomcat8的webapps目录下,然后启动tomcat.
在目录xxl-job-executor-samples下。如果是用springboot方式,在xxl-job-executor-sample-springboot目录下使用mvn package 打包,生成xxl-job-executor-sample-springboot-1.9.1.jar。
下载好源码之后,在相应的目录下使用mvn package打包。
日志的路径需要修改,在src/main/resources/application.properties文件中。
执行器管理->执行器列表中的AppName要和registryKey也就是配置文件中的xxl.job.executor.appname相同。
查看linux中某个端口(port)是否被占用
1.使用lsof
lsof -i:端口号查看某个端口是否被占用
2.使用netstat
使用netstat -anp|grep 80
1 | d=$(date +%Y%m%d --date='1 days ago ') |
1 | d=$(date +%Y%m%d --date=''${1}' days ago ') |
1 | set nonu |
1 | grep --color -n -i -r 'dataThatYouWhatToFind' * |
-n 显示在文件中的第几行
-i 忽略大小写
-r 搜索包含子目录
1 | find . -name '*.xml' | xargs grep 'sometext' |
1 | man ls |
1 | -c with -lt: sort by, and show, ctime (time of last modification of file status information); with -l: show ctime and sort by name; otherwise: sort by ctime, newest first |
1 | ls -ltc |
1 | d=$(date +%Y-%m -d '-1 month') |
一个可以在 Linux 文件系统快速导航的高级 cd 命令
对于linux系统:1
2echo '. /usr/share/autojump/autojump.sh' >> /etc/profile
source /etc/profile
1 | sed '/^ *$/d' file1 |
From http://www.111cn.net/sys/linux/79750.htm
1 | [root@test script]# cat 0.sh |
1 | [root@test script]# sh 0.sh |
1 | [root@test script]# cat 0.sh |
1 | [root@test script]# sh /byrd/script/0.sh |
使用hdfs用户,通过crontab配置了定时任务,定时脚本调用了python脚本,Python脚本执行了Hadoop命令。原crontab如下1
2 09 * * * cd /data/apps/py_hdfs2cos; ./start.sh >> log/crontab.log 2>&1
改为如下命令即可:1
2 09 * * * cd /data/apps/py_hdfs2cos; source /etc/profile; ./start.sh >> log/crontab.log 2>&1
其中增加了source /etc/profile;
From http://www.zhoujy.me/2017/07/16/livere/
livere 有两个版本:
使用City版可以满足基本需求了。
安装,获取livere安装代码:https://livere.com/insight/myCode。
首先在 themes/landscape/_config.yml 文件中添加如下配置:1
livere: true
然后\layout_partial\post目录下添加livere.ejs,把livere安装代码复制进去,文件内容如下,其中data-uid就是你自己的data-uid。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18<!-- 来必力City版安装代码 -->
<div id="lv-container" data-id="city" data-uid="your data-id">
<script type="text/javascript">
(function(d, s) {
var j, e = d.getElementsByTagName(s)[0];
if (typeof LivereTower === 'function') { return; }
j = d.createElement(s);
j.src = 'https://cdn-city.livere.com/js/embed.dist.js';
j.async = true;
e.parentNode.insertBefore(j, e);
})(document, 'script');
</script>
<noscript>为正常使用来必力评论功能请激活JavaScript</noscript>
</div>
<!-- City版安装代码已完成 -->
最后在layout_partial\article.ejs中<% if (!index && post.comments){ %>后面添加如下代码:1
2
3
4
5
6
7
8
9
10
11
12
13
14
<if (theme.livere){ >
<('post/livere', { - partial
key: post.slug,
title: post.title,
url: config.url+url_for(post.path)
}) >
< } >
至此,为landscape主题添加livere评论插件完成。
效果见下方评论栏,觉得还行的可以留言啊。
1 | ERROR: [4] bootstrap checks failed |
1 | vim /etc/security/limits.conf |
1 下载
download
2 解压1
2cd /data/software/
tar -zxvf jdk-8u171-linux-x64.tar.gz
3 配置1
2
3
4vi /etc/profile
export JAVA_HOME=/data/software/jdk1.8.0_171
export PATH=$PATH:$JAVA_HOME/bin:
4 使其生效1
source /etc/profile
5 检查1
2
3
4[root@server1 jdk8]# java -version
java version "1.8.0_144"
Java(TM) SE Runtime Environment (build 1.8.0_144-b01)
Java HotSpot(TM) 64-Bit Server VM (build 25.144-b01, mixed mode)
1 | val logs = spark.read.csv("/tmp/sousuo") |
1 | df |
or coalesce:1
2
3
4
5df
.coalesce(1)
.write.format("com.databricks.spark.csv")
.option("header", "true")
.save("mydata.csv")
参考 https://stackoverflow.com/questions/31674530/write-single-csv-file-using-spark-csv