会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
[灬阿稳灬]
博客园
首页
新随笔
联系
订阅
管理
2021年3月10日
gitlab安装
摘要: ubuntu安装gitlab 安装依赖 sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates sudo apt-get install -y postfix //邮件服务 安装邮件服务的时候会出
阅读全文
posted @ 2021-03-10 16:01 执子人
阅读(69)
评论(0)
推荐(0)
2020年9月27日
falcon安装
摘要: ubuntu 18.04 falcon安装使用 1、安装mysql数据库redis apt-get install -y redis apt-get install -y mysql-server 2、安装go语言环境 apt-get install -y golang #注意:如果安装open-f
阅读全文
posted @ 2020-09-27 17:57 执子人
阅读(492)
评论(0)
推荐(0)
2020年9月18日
mysql登录不需要输入密码解决方法
摘要: use mysql; update user set authentication_string=PASSWORD("密码") where user='root'; update user set plugin="mysql_native_password"; flush privileges; q
阅读全文
posted @ 2020-09-18 11:02 执子人
阅读(427)
评论(0)
推荐(0)
2020年7月29日
ubuntu 18.04安装docker-ce
摘要: Ubuntu18.04 安装 Docker CE 添加使用 https 传输的软件包和 CA证书 sudo apt update sudo apt install apt-transport-https ca-certificates curl software-properties-common
阅读全文
posted @ 2020-07-29 17:43 执子人
阅读(945)
评论(0)
推荐(1)
2020年5月29日
# python configparser模块
摘要: Configparser模块用来读取配置文件,配置文件的格式与windows下的ini配置文件类似,可以包含一个或多个节(section), 每个节可以有多个参数(键=值)。使用的配置文件的好处就是不用在程序员写死,可以使程序更灵活。 configparser函数常用方法: 读取配置文件: conf
阅读全文
posted @ 2020-05-29 10:05 执子人
阅读(128)
评论(0)
推荐(0)
2020年5月15日
python获取文件后缀名的方法
摘要: 1.切割字符 ls = "asdada.ad" print(ls[ls.rfind('.')+1:]) 2.os.path模块 import os.path def file_extension(path): return os.path.splitext(path)[1] print file_e
阅读全文
posted @ 2020-05-15 10:00 执子人
阅读(5588)
评论(0)
推荐(0)
公告