码迷,mamicode.com
首页 >  
搜索关键字:windows;user profile    ( 5832个结果
linux环境设置
1.Linux的变量种类 按变量的生存周期来划分,Linux变量可分为两类: 1.1 永久的:需要修改配置文件,变量永久生效。 1.2 临时的:使用export命令声明即可,变量在关闭shell时失效。 2.设置变量的三种方法 2.1 在/etc/profile文件中添加变量【对所有用户生效(永久的 ...
分类:系统相关   时间:2020-06-05 16:42:41    阅读次数:64
5 High Profile Cryptocurrency Hacks
https://blockgeeks.com/guides/cryptocurrency-hacks/ The Mt.Gox Hack The year is 2013 and Max Karpeles is on the top of the world. His Japan-based comp ...
分类:其他好文   时间:2020-06-05 14:59:20    阅读次数:555
springboot项目打包docker镜像maven插件
<!-- profile docker config --> <profiles> <profile> <id>docker</id> <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven ...
分类:编程语言   时间:2020-06-05 14:53:25    阅读次数:135
linux 加载jdk 14.0.1
下载 $ wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk ...
分类:系统相关   时间:2020-06-04 15:40:02    阅读次数:167
docker, oracle创建空间表,创建数据库。
进入容器 docker ps ## 查看容器的id号,复制一下 docker exec -it xxxxxxxx /bin/bash ## xxxxxxx就是上一部查看的id号 查看oracle状态,修改system用户密码: source ~/.bash_profile ## 加载一下用户环境变量 ...
分类:数据库   时间:2020-06-04 15:34:59    阅读次数:212
tomcat日志切割和日志定时清理
在最近项目中的tomcat日志没有做系统分割,日志越来越大,每次排查生产问题都会话好长时间,并且日志文件很大。所以就想写一个shell脚本进行定时将日志进行切割。 #!/bin/bash source /home/mfls/.bash_profile cd `dirname $0` d=`date ...
分类:其他好文   时间:2020-06-04 15:20:46    阅读次数:64
建造者模式(Builder Pattern)
创建型模式,将多个简单对象一步步构建成一个复杂的对象。 将一个复杂的构建与其表示相分离,使用同样的构建创建不同的表示。 实例应用:台式电脑的组成,是由多个零件组合成的,不同的CPU,显示器,显卡等能组合成配置完全不一样的电脑。 优点: 建造者独立,易扩展。 便于控制细节,降低风险。 缺点: 局限性大 ...
分类:其他好文   时间:2020-06-04 14:11:14    阅读次数:62
Linux 安装JDK
Linux 下安装JDK(不建议使用linux系统自带的openJDK) 1.创建java安装文件路径 mkdir /usr/local/java 2.解压安装包 tar -zxvf jdk-8u251-linux-x64.tar.gz 3.配置环境变量 vi /etc/profile export ...
分类:系统相关   时间:2020-06-04 14:06:13    阅读次数:92
2018-08-02 centos6上使用ImageMagick处理webp格式图片
1、安装webp 下载地址:https://developers.google.com/speed/webp/download 官网 https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.0. ...
分类:Web程序   时间:2020-06-04 01:45:37    阅读次数:101
MAVEN环境配置
MAVEN基于JDK安装,先安装JDK,再安装MAVEN Step1:下载JDK,上传到目录下,解压 https://www.oracle.com/technetwork/java/javase/overview/index.html Step2:编辑~/.bash_profile文件或/etc/p ...
分类:其他好文   时间:2020-06-03 17:39:22    阅读次数:67
5832条   上一页 1 ... 23 24 25 26 27 ... 584 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!