Startoption mei mysql

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
nobbi
Beiträge: 134
Registriert: 18.12.2004 20:15:57

Startoption mei mysql

Beitrag von nobbi » 28.01.2005 11:38:26

Habe mal irgendwo gelesen, dass man den mysql-server starten kann, dass er nur von dem Lokalen Server aus angesprochen werden kann. Meiner Meinung nach war es einfach eine Option im Startscript (mit --local).
Ich finde leider nur keine passende Option.

Benutzeravatar
HELLinG3R
Beiträge: 1328
Registriert: 15.04.2004 07:54:33

Beitrag von HELLinG3R » 28.01.2005 12:24:34

/etc/mysql/my.cnf hat geschrieben:[mysqld]
#skip-networking
bind-address=127.0.0.1
danach ein neustart des mysqld und überprüfen:

Code: Alles auswählen

azrael:~# /etc/init.d/mysql restart
Stopping MySQL database server: mysqld.
Starting MySQL database server: mysqld.
Checking for crashed MySQL tables in the background.


azrael:~# nmap 192.168.0.1

Starting nmap 3.75 ( http://www.insecure.org/nmap/ ) at 2005-01-28 12:20 CET
Interesting ports on 192.168.0.1:
(The 1657 ports scanned but not shown below are in state: closed)
PORT    STATE SERVICE
9/tcp   open  discard
13/tcp  open  daytime
37/tcp  open  time
80/tcp  open  http
631/tcp open  ipp
666/tcp open  doom

Nmap run completed -- 1 IP address (1 host up) scanned in 0.467 seconds



azrael:~# nmap 127.0.0.1

Starting nmap 3.75 ( http://www.insecure.org/nmap/ ) at 2005-01-28 12:20 CET
Interesting ports on localhost (127.0.0.1):
(The 1654 ports scanned but not shown below are in state: closed)
PORT     STATE SERVICE
9/tcp    open  discard
13/tcp   open  daytime
25/tcp   open  smtp
37/tcp   open  time
80/tcp   open  http
631/tcp  open  ipp
666/tcp  open  doom
3306/tcp open  mysql
8080/tcp open  http-proxy

Nmap run completed -- 1 IP address (1 host up) scanned in 0.413 seconds
der mysqld lauscht also nur auf dem local loopback, nicht aber auf dem Netzwerkinterface.

nobbi
Beiträge: 134
Registriert: 18.12.2004 20:15:57

Beitrag von nobbi » 28.01.2005 12:42:19

Super, danke genau das war's... :wink:

Antworten