Linux.CentOS: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(→samba) |
|||
(5 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
Auf CentOS basierend kann auch ein Ausfallserver oder Datenbankserver aufgesetzt werden: | Auf CentOS basierend kann auch ein Ausfallserver oder Datenbankserver aufgesetzt werden: | ||
== wichtige | == wichtige Kommandos == | ||
yum install joe | yum install joe | ||
service start | service ~ServiceName~ start | ||
== samba == | == samba == | ||
Zeile 22: | Zeile 22: | ||
== firebird == | == firebird == | ||
# | |||
# yum-plugin-protectbase yum-plugin-priorities: | |||
# schutz vor dem Vorrang von epel | |||
# damit setzt man die yum Standard als Priority, da im EPEL auch Schrott drinnen ist | |||
# | |||
# cifs-utils: | |||
# samba tools | |||
# | |||
sudo yum install yum-plugin-protectbase yum-plugin-priorities cifs-utils | |||
# | |||
# epel.rpm installation | |||
# | |||
sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm | |||
# | |||
# | |||
# | |||
sudo yum install firebird-superserver | |||
# | |||
# Firebird in Zukunft automatisch starten | |||
# | |||
chkconfig --add firebird-superserver | chkconfig --add firebird-superserver | ||
# | |||
# Firebird jetzt starten | |||
# | |||
service firebird-superserver start | service firebird-superserver start | ||
# | # | ||
# Es ist noch "masterkey" das Passwort | # Es ist noch "masterkey" das Passwort, | ||
# das sollte man schnell ändern. | |||
# | # | ||
gsec -user sysdba -password masterkey -modify sysdba -pw ******** | gsec -user sysdba -password masterkey -modify sysdba -pw ******** |
Aktuelle Version vom 22. November 2011, 12:04 Uhr
Auf CentOS basierend kann auch ein Ausfallserver oder Datenbankserver aufgesetzt werden:
wichtige Kommandos
yum install joe
service ~ServiceName~ start
samba
chkconfig --level 345 smb on service smb start
/etc/samba/smb.conf
Alles Standard lassen, die Sicherheitseinstellung machen
security = share
Unten ein Share hinzunehmen wie so oft beschrieben ...
firebird
# # yum-plugin-protectbase yum-plugin-priorities: # schutz vor dem Vorrang von epel # damit setzt man die yum Standard als Priority, da im EPEL auch Schrott drinnen ist # # cifs-utils: # samba tools # sudo yum install yum-plugin-protectbase yum-plugin-priorities cifs-utils # # epel.rpm installation # sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm # # # sudo yum install firebird-superserver # # Firebird in Zukunft automatisch starten # chkconfig --add firebird-superserver # # Firebird jetzt starten # service firebird-superserver start # # Es ist noch "masterkey" das Passwort, # das sollte man schnell ändern. # gsec -user sysdba -password masterkey -modify sysdba -pw ********