samba技術留檔

2021-09-11 16:52:56 字數 2532 閱讀 4490

[root@qhfax code]# smbpasswd -a nginx

new smb password:

retype new smb password:

added user nginx.

smbpasswd 屬於samba套件,能夠實現新增或刪除samba使用者和為使用者修改密碼

引數:-a:向smbpasswd檔案中新增使用者;

-c:指定samba的配置檔案;

-x:從smbpasswd檔案中刪除使用者;

-d:在smbpasswd檔案中禁用指定的使用者;

-e:在smbpasswd檔案中啟用指定的使用者;

-n:將指定的使用者的密碼置空。

問題:smbpasswd samba

new smb password:

retype new smb password:

failed to find entry for user samba.

解決方法,加引數'-a':

# smbpasswd  -a samba

new smb password:

retype new smb password:

failed to add entry for samba

解決方法:

vi /etc/samba/smb.conf 編輯smb.conf 檔案

將;security = share修改為 security user

這是因為沒有加相應的系統賬號,所以會提示failed to add entry for user的錯誤,只需增加相應的系統賬號test就可以了

useradd  nginx

[root@qhfax samba]# smbpasswd -a nginx

new smb password:

retype new smb password:

workgroup = linuxsir

netbios name = linuxsir05

server string = linux samba server testserver

security = share

client code page=936

display charset = utf-8

unix charset = utf-8

dos charset = utf-8

security = user 

encrypt passwords = yes

smb passwd file = /etc/samba/smbpasswd

[log]

path = /log/abc

writeable = no

browseable = yes

guest ok = yes

補充:以上設定中,smb passwd file = /etc/samba/smbpasswd檔案沒有生效,smbpasswd命令成功後,測試也是成功的,但是沒有寫入這個密碼檔案,最後通過查詢,原來密碼是儲存在這裡:

[root@qhfax samba]# ll /var/lib/samba/private

總用量 832

-rw------- 1 root root 421888 10月 10 10:07 passdb.tdb

-rw------- 1 root root 430080 4月   1 2015 secrets.tdb

許可權細化:

net use * /del

#security = share

client code page=936

display charset = utf-8

unix charset = utf-8

dos charset = utf-8

passdb backend = tdbsam

security = user

encrypt passwords = yes

username map = /etc/samba/smbusers

smb passwd file = /etc/samba/smbpasswd

[ali_log]

#admin user = dev

path = /sc_log/ali_log

writeable = no

browseable = yes

guest ok = no

valid users = dev

[ali_code]

#admin user = dev

path = /sc_log/sc_code

writeable = no

browseable = yes

guest ok = no

valid users = dev

[ali_upload]

path = /upload/code

#admin users = test

valid users = test

writeable = yes

browseable = yes

guest ok = no

MsSql內部資訊 留檔

schemata表提供了關於資料庫的資訊 select top 10 from information schema.schemata tables表給出了關於資料庫中的表的資訊 select top 10 from information schema.tables columns表給出了表中的列...

extjs知識總結留檔

兩年以前用extjs做過乙個小東西,現在用起來發現好多細節都已忘記了。兩年前沒有留下當時的經驗,現在重新熟悉重新學習,費時費事的。覺得extjs做的東西,視覺化效果比較單一,可觀性不強,久了很容易反感。發現extjs4.2版新添了主題,貌似metro風格,看起來還不錯。起初並沒有想用extjs這樣乙...

OE移動版的框架目錄(留檔)

這個框架提供了所有的支援類檔案來構建乙個android 客戶端模組,而目的是為了滿足基於oe任何模組 或oe 外掛程式 的android 應用程式需求,同時可以構建基於本地資料庫 sqlite 的orm管理方式。openerp mobile src com openerp framework loa...