HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: samba
Operating System - HP-UX
1832982
Members
3306
Online
110048
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2004 10:27 AM
04-20-2004 10:27 AM
samba
Hello,
I have samba running in my hpux.
I have configured a directory one in the hpux so that they see it the clients windows, this configured with guest access, so all the users can acces to that directorio(500 users).
here the history goes well.
But...
For another application also in the same team machine need to share another directory, but now with validation of user/password from 6 machines windows (from necessity of security and application).
It was trying to configure the security shared in the samba.
But when trying to enter to the "shared directory" (I can see from windows) requests me user and password but not you which to give him.
That I can make to configure it?
P.S. doesn't want join the HPUX to a domain Wintel.
Thank you
E.
I have samba running in my hpux.
I have configured a directory one in the hpux so that they see it the clients windows, this configured with guest access, so all the users can acces to that directorio(500 users).
here the history goes well.
But...
For another application also in the same team machine need to share another directory, but now with validation of user/password from 6 machines windows (from necessity of security and application).
It was trying to configure the security shared in the samba.
But when trying to enter to the "shared directory" (I can see from windows) requests me user and password but not you which to give him.
That I can make to configure it?
P.S. doesn't want join the HPUX to a domain Wintel.
Thank you
E.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2004 12:38 PM
04-20-2004 12:38 PM
Re: samba
Interesting problem. Take a look at the smb%%.log(there are a few chars in there%%) file(defined in smb.conf).
An error code would be useful.
Shot in the dark: Consider LDAP for simplifying the user authentication. No need to use a PDC domain then. a workgroup setting in smb.conf would be helpful.
SEP
An error code would be useful.
Shot in the dark: Consider LDAP for simplifying the user authentication. No need to use a PDC domain then. a workgroup setting in smb.conf would be helpful.
SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2004 04:16 AM
04-22-2004 04:16 AM
Re: samba
Try defining the users for each specific directory as shown in the 'smb.conf' file below. Also create a 'users.map' file which maps the unix-id to the user's Window user-id (see example).
'smb.conf' file
# Global parameters
[global]
client code page = 437
workgroup = TeamA
security = SERVER
encrypt passwords = Yes
password server = XX.XX.XX.XX (DNS server IP)
username map = /usr/local/samba/lib/users.map
log file = /usr/local/samba/logs/log.%m
max log size = 50
preferred master = false
local master = No
domain master = No
wins server = XX.XX.XX.XX (IP address)
socket options = TCP_NODELAY
interface = HPUX_server_name
os level = 0
[directory1]
path = /opt/directory1
read only = No
admin users = admin1, admin2 (these are unix-id's)
write list = user1, user2, user3, etc (these are unix-id's)
create mask = 0755
guest ok = Yes
[directory2]
path = /opt/directory2
read only = No
admin users = admin1, admin2 (these are unix-id's)
write list = user4, user5, user6, etc (these are unix-id's)
create mask = 0755
guest ok = Yes
[homes]
comment = Home Directories
read only = No
create mask = 0755
mangle case = Yes
browseable = No
'users.map' - put this file into the samba/lib directory
(unix-id=window-user-id) format
user1=windows-user-id1
user2=windows-user-id2
user3-windows-user-id3
Regards,
Brian
'smb.conf' file
# Global parameters
[global]
client code page = 437
workgroup = TeamA
security = SERVER
encrypt passwords = Yes
password server = XX.XX.XX.XX (DNS server IP)
username map = /usr/local/samba/lib/users.map
log file = /usr/local/samba/logs/log.%m
max log size = 50
preferred master = false
local master = No
domain master = No
wins server = XX.XX.XX.XX (IP address)
socket options = TCP_NODELAY
interface = HPUX_server_name
os level = 0
[directory1]
path = /opt/directory1
read only = No
admin users = admin1, admin2 (these are unix-id's)
write list = user1, user2, user3, etc (these are unix-id's)
create mask = 0755
guest ok = Yes
[directory2]
path = /opt/directory2
read only = No
admin users = admin1, admin2 (these are unix-id's)
write list = user4, user5, user6, etc (these are unix-id's)
create mask = 0755
guest ok = Yes
[homes]
comment = Home Directories
read only = No
create mask = 0755
mangle case = Yes
browseable = No
'users.map' - put this file into the samba/lib directory
(unix-id=window-user-id) format
user1=windows-user-id1
user2=windows-user-id2
user3-windows-user-id3
Regards,
Brian
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP