首页
统计
留言
Search
1
Konsole 和 oh-my-zsh 的配置与使用
1,567 阅读
2
wsl2使用windows下v2ray的代理
916 阅读
3
docker启动报错
904 阅读
4
docker-compose 创建redis集群测试
569 阅读
5
Kubuntu 配置多桌面快捷键
566 阅读
全部
PHP
Linux
软路由
杂项
Sql
Go
登录
Search
标签搜索
kubuntu
docker
mysql
pgsql
git
csv
shell
wine
linux
oh-my-zsh
wps
gost
起名
redis
ip
crontab
mac
nginx
wss
docker-compose
JyPony
累计撰写
50
篇文章
累计收到
0
条评论
首页
栏目
全部
PHP
Linux
软路由
杂项
Sql
Go
页面
统计
留言
搜索到
50
篇与
的结果
2021-06-11
ssh-agent手动添加sshkey报错
ssh-agent手动添加sshkey报错Could not open a connection to your authentication agent.执行命令ssh-agent bash sudo ssh-add ~/.ssh/gitee_id_rsa
2021年06月11日
551 阅读
0 评论
0 点赞
2021-06-11
docker启动报错
docker 每次都要sudo, 或者其他服务启动的时候,提示上述的错误ERROR: Couldn't connect to Docker daemon at http+docker://localunixsocket - is it running?添加docker group:sudo groupadd docker将当前用户加入docker group内sudo gpasswd -a ${USER} docker重启dockersudo systemctl restart docker切换当前会话到新 group 或者重启 X 会话newgrp - docker
2021年06月11日
904 阅读
0 评论
0 点赞
2021-06-11
正式环境网站目录权限
指定用户跟用户组chown -R www.www /data/code/配置文件夹权限find /data/code/ -type d -exec chmod 755 {} \;配置文件权限find /data/code/ -type f -exec chmod 644 {} \;
2021年06月11日
531 阅读
0 评论
0 点赞
2021-06-11
创建postgres帐号
切换postgres用户sudo -i -u postgres进入Postgres数据库psql创建root帐号create user root with login password '123456';将root帐号提升为超级帐号ALTER USER root WITH SUPERUSER;
2021年06月11日
468 阅读
0 评论
0 点赞
2021-06-11
MySql 导入sql数据
去到sql文件所在的目录cd /media/jypony/Data/kubuntu/bak/mysql_database输入账号密码mysql -uroot -p123456 create databse xxx;导入sqlsource xxx.sql
2021年06月11日
520 阅读
0 评论
0 点赞
1
...
8
9
10