LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   Samba in Active Directory (https://www.linuxquestions.org/questions/linux-general-1/samba-in-active-directory-58355/)

bentman78 05-06-2003 06:44 AM

Samba in Active Directory
 
I am trying to add a samba server to an Active Directory domain. The box is running RH8.0. I was curious if there was anything special I need to do to the SMB.CONF file in order to do this. Any help would be appreciated. Also...on the same note, the server is a development server running Apache. I need three websites run from the box, however I have room for only 1 NIC. is there a way to add multiple IP addresses to one interface and configure apache to listen to these addresses?









Bent
-----------------------------------------
Remember to rape and pillage...before you burn.

td3201 05-06-2003 09:53 AM

1) I am not sure but you might be able to set these options:
security = server
password server = pdc

Not sure if that works for AD.

2) You need to set vhosts:

NameVirtualHost 192.168.1.3:80
<VirtualHost 192.168.1.3:80>
ServerAdmin jo@hotmail.com
DocumentRoot /var/www/html/server1
ServerName server1.domain.com
ErrorLog logs/server1.domain.com-error_log
CustomLog logs/server1.domain.com-access_log common
</VirtualHost>

<VirtualHost 192.168.1.3:80>
ServerAdmin jo@hotmail.com
DocumentRoot /var/www/html/server2
ServerName server2.domain.com
ErrorLog logs/server2.domain.com-error_log
CustomLog logs/server2.domain.com-access_log common
</VirtualHost>

bentman78 05-06-2003 11:33 AM

I heard you have to have Samba 3 or above and have to download some Kerberos Libararies to sync with AD, anyone know about this?


All times are GMT -5. The time now is 04:34 AM.