2017-07-09 3 views
-1

installierten centos7 System auf virtualbox. Der Host-Computer ist ein Linux-Mint. Ich habe auch auf Centos7 httpd, Mariadb, PHP und Phpadmin 7 installiert. Es ist in Ordnung auf der virtuellen Maschine von centos7. Ich möchte eine Verbindung zu Phpadmin und Mariadb von Host-Computer (Linux-Mint), wo ich die IDE haben, um meine Anwendung zu entwickeln.Remote-Verbindung zu virtuellen Maschine centos7 (virtualbox)

dies centos7 IP-Adresse (IP-Adresse Befehl):

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 
    inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever 
    inet6 ::1/128 scope host valid_lft forever preferred_lft forever 

2: enp0s3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000 link/ether 08:00:27:0e:9b:d8 brd ff:ff:ff:ff:ff:ff 
    inet 10.0.2.15/24 brd 10.0.2.255 scope global dynamic enp0s3 
     valid_lft 85621sec preferred_lft 85621sec 
    inet6 fe80::db89:b43e:da69:530d/64 scope link 
     valid_lft forever preferred_lft forever 

3: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN qlen 1000 
    link/ether 52:54:00:8d:17:89 brd ff:ff:ff:ff:ff:ff 
    inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0 
     valid_lft forever preferred_lft forever 
4: virbr0-nic: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast master virbr0 state DOWN qlen 1000 
    link/ether 52:54:00:8d:17:89 brd ff:ff:ff:ff:ff:ff 

Dies ist phpmyadmin.conf auf centos7:

Alias /phpMyAdmin /usr/share/phpMyAdmin 
Alias /phpmyadmin /usr/share/phpMyAdmin 

<Directory /usr/share/phpMyAdmin/> 
    AddDefaultCharset UTF-8 

    <IfModule mod_authz_core.c> 
    # Apache 2.4 
    <RequireAny> 
     Require all granted 
#  Require ip 127.0.0.1 
     Require ip 192.168.122.1 

#  Require ip 10.0.2.15  
     Require ip ::1 
    </RequireAny> 
    </IfModule> 

    <IfModule !mod_authz_core.c> 
    # Apache 2.2 
# Order Deny,Allow 
# Deny from All 
# Allow from 127.0.0.1 
# Allow from 192.168.122.1 

    Order Allow,Deny 
    Allow from All 

#  Allow from 10.0.2.15 
    Allow from 192.168.122.1 
    Allow from ::1 


    </IfModule> 
</Directory> 

<Directory /usr/share/phpMyAdmin/setup/> 
    <IfModule mod_authz_core.c> 
    # Apache 2.4 
    <RequireAny> 
    #  Require ip 127.0.0.1 
      Require ip 192.168.122.1  
    #  Require ip 10.0.2.15  
     Require ip ::1 
    </RequireAny> 
    </IfModule> 
    <IfModule !mod_authz_core.c> 
    # Apache 2.2 
    Order Deny,Allow 
#  Deny from All 

#  Allow from 127.0.0.1 
    Allow from 192.168.122.1 

#  Allow from 10.0.2.15 
    Allow from ::1 
    </IfModule> 
</Directory> 

# These directories do not require access over HTTP - taken from the original 
# phpMyAdmin upstream tarball 
# 
<Directory /usr/share/phpMyAdmin/libraries/> 
    Order Deny,Allow 
    Deny from All 
    Allow from None 
</Directory> 

<Directory /usr/share/phpMyAdmin/setup/lib/> 
    Order Deny,Allow 
    Deny from All 
    Allow from None 
</Directory> 

<Directory /usr/share/phpMyAdmin/setup/frames/> 
    Order Deny,Allow 
    Deny from All 
    Allow from None 
</Directory> 


configuration on virtualbox: 

network 
attached to: NAT 

adapter type: Intel PRO 1000/MT Desktop 82540EM 

promiscuosous: deny 

Mac Address: 0800270E9BD8 

cable connected: checked 

port forwarding configuration: 
name:centos7 
protocol:tcp 
host ip: empty 
host port:3022 
guest ip: empty: 
guest port:22 

file-->preferences-->network 
Tab NAT: NatNetwork 
port forwarding configuration: empty 
Tab Only Host: ip address 192.168.122.1 

ich von Host-Linux Mint zu verbinden versucht, aber die Verbindung ist nicht ok. Ich denke, dass die Host-Maschine nicht den Centos7 auf virtuellen Maschine ....

Haben Sie eine Idee?

Vielen Dank ...

+0

Geben Sie Ihre Frage ein echter Titel verbinden kann nicht, und verwenden Sie nicht alle CAPS (wie es betrachtet ist schreien und unhöflich). –

Antwort

0

Haben Sie die Portweiterleitung für diese Anwendungen aktiviert?

Sie verwenden NAT für die Vernetzung, ohne Port-Forwarding Sie das Gastbetriebssystem

+0

Netzwerkkonfiguration auf Virtualbox: an: NAT Adaptertyp: Intel PRO 1000/MT Desktop-82540EM promiscuosous: leugnen Mac-Adresse: 0800270E9BD8 Kabel verbunden: geprüft Port-Forwarding-Konfiguration: Name: centos7 Protokoll: TCP Host-IP: leer Host-Port: 8080 Gast-IP: leer: Gast-Port: 80 – Filippodb

+0

Entschuldigung für die Verzögerung. Jede Anwendung verfügt über einen separaten Anschluss für die Verbindung. maria DB-Port ist 3306. Für alle Ports sollten Sie Port-Weiterleitungsregeln hinzufügen. –

Verwandte Themen