在多使用者情況下,盡量不要設定全域性使用者資訊
# 新增全域性使用者資訊
git config --global user.name "使用者名稱"
git config --global user.email "郵箱"
#刪除全域性使用者資訊
git config --global --unset user.name
git config --global --unset user.email
生成github的ssh_key
$ ssh-keygen -t rsa -c "[email protected]"
generating public/private rsa key pair.
enter file in which to s**e the key (/c/users/administrator/.ssh/id_rsa): id_rsa_github
enter passphrase (empty for no passphrase):
enter same passphrase again:
your identification has been s**ed in id_rsa_github.
your public key has been s**ed in id_rsa_github.pub.
the key fingerprint is:
sha256:k8zzha4rrhghlv7qyp+damvpqiq+jpupbmdjxzncane [email protected]
the key's randomart image is:
+---[rsa 2048]----+
| |
| . e |
| o |
| . . |
|.+ .os+ |
|*. . . =*o. |
|++o.=.*.=. |
|*=**==o+. |
|=obo=o.o |
+----[sha256]-----+
生成gitlab的key
$ ssh-keygen -t rsa -c "[email protected]"
generating public/private rsa key pair.
enter file in which to s**e the key (/c/users/administrator/.ssh/id_rsa): id_rsa_gitlab
enter passphrase (empty for no passphrase):
enter same passphrase again:
your identification has been s**ed in id_rsa_gitlab.
your public key has been s**ed in id_rsa_gitlab.pub.
the key fingerprint is:
sha256:2q7mo4mtscmovsjl9gk++ruwqnxvupw7oeqdgdc95mo [email protected]
the key's randomart image is:
+---[rsa 2048]----+
| . . |
| . . o |
| . . o o . |
| + o . o |
| + . s o + |
|. + o + o e |
|. b +o.+ + . |
|o.o o+o..= . |
|.+.+*x**. . |
+----[sha256]-----+
#該檔案用於配置私鑰對應的伺服器
host github.com
user github
hostname github.com
preferredauthentications publickey
identityfile ~/.ssh/id_rsa_github
host 192.168.12.5
user gitlab
hostname 192.168.12.5
port 122 # 如果不是22則新增次行
preferredauthentications publickey
identityfile ~/.ssh/id_rsa_gitlab
$ ssh-agent bash
$ ssh-add ~/.ssh/id_rsa_github
enter passphrase for /c/users/administrator/.ssh/id_rsa_github:
identity added: /c/users/administrator/.ssh/id_rsa_github (/c/users/administrator/.ssh/id_rsa_github)
$ ssh-add ~/.ssh/id_rsa_gitlab
enter passphrase for /c/users/administrator/.ssh/id_rsa_gitlab:
identity added: /c/users/administrator/.ssh/id_rsa_gitlab (/c/users/administrator/.ssh/id_rsa_gitlab)
ssh 互信也可使用次操作 Hadoop多使用者配置
0.hadoop多使用者配置的背景。hadoop多使用者配置的目的就是多個hadoop使用者可以共同使用hdfs,但是只能操作屬於自己的空間,不能跨使用者空間操作 當然 tmp是屬於大家的,任何使用者都會對這個資料夾有寫操作 hadoop多使用者配置,相當於給每個使用者乙個hadoop客戶端,每個使...
GIT配置多使用者
在公司工作的時候有時候想提交一點 到github上,然後一台電腦上就需要配置兩個賬號分別訪問github和公司的gitlab為什麼要生成兩個key的原因我也不清楚,望路過的大佬指點下.分別用如下的命令給兩個賬戶生成key,儲存位置和密碼隨意,注意名稱不要一樣不要覆蓋了ssh keygen t rsa...
配置多使用者Samba 掛載
模擬環境 在 server0 通過 smb 共享目錄 devops,並滿足以下要求 共享名為 devops 共享目錄 devops 只能被 example.com 域中的客戶端使用 共享目錄 devops 必須可以被瀏覽 使用者 kenji 必須能以讀的方式訪問此共享,該問密碼是 atenorth ...