随笔分类 -  linux

摘要:1、查看时间时区 date 2、修改时区 timedatectl set-timezone Asia/Shanghai # 设置系统时区为上海 3、安装ntp 联网校准时间 yum install ntp ntpdate ntp1.aliyun.com #联网(阿里时间服务器)校准时间 阅读全文
posted @ 2018-12-27 16:50 dehigher 阅读(2507) 评论(0) 推荐(0)
摘要:1、vim /etc/profile 2、刷新配置文件 source /etc/profile 3、修改tomcat/bin/catalina.sh (1) 查找#OS specific support. $var _must_ be set to either true or false. (2) 阅读全文
posted @ 2018-12-27 16:00 dehigher 阅读(356) 评论(0) 推荐(0)
摘要:unzip test.zip 直接将zip解压到当前目录下,保留test级目录。 unzip test.war 直接将.war解压到当前目录,不保留test级目录,所以建议使用 unzip test.war -d test 阅读全文
posted @ 2018-12-27 14:13 dehigher 阅读(195) 评论(0) 推荐(0)