Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
Svn-to-Git
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王进波
Svn-to-Git
Commits
1a178eb2
Commit
1a178eb2
authored
Oct 08, 2018
by
王进波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
udpate
parent
942451e2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
关于12.1服务器的配置.md
doc/关于12.1服务器的配置.md
+13
-0
常用命令行.md
doc/常用命令行.md
+18
-0
No files found.
doc/关于12.1服务器的配置.md
View file @
1a178eb2
...
...
@@ -302,3 +302,16 @@ technosoft2000/calibre-web
docker start calibre-web
```
### WordPress
```
shell
sudo
docker run
\
--name
wordpress
\
--restart
always
\
-p
808:80
\
-e
WORDPRESS_DB_HOST
=
'192.168.12.38'
\
-e
WORDPRESS_DB_USER
=
'root'
\
-e
WORDPRESS_DB_PASSWORD
=
'000000'
\
-d
wordpress
```
doc/常用命令行.md
View file @
1a178eb2
...
...
@@ -176,3 +176,20 @@ ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的
4 rows
in
set
(
0.00 sec
)
```
### Arch Linux 添加未授信gpg密钥
使用yaourt从 AUR 源码包编译时遇到未知gpg密钥,不允许安装的错误,需要手动将gpg密钥添加到本地授信密钥中。如果你本地已有 gpg密钥对,直接将报错中提示的不可信密钥添加到用户的个人密钥中即可,如下:
```
gpg --recv-keys 5CC908FDB71E12C2
```
> --recv-keys key IDs: Import the keys with the given key IDs from a keyserver.
如果当前用户还没有创建gpg密钥数据库,则手动创建如下:
```
gpg --full-gen-key
```
> -full-gen-key: Generate a new key pair.
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment