Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. Vagrant.configure("2") do |config|
  2. config.ssh.username = "vagrant"
  3. config.ssh.password = "vagrant"
  4. config.vm.box = "scotch/box"
  5. config.vm.network "private_network", ip: "192.168.33.10"
  6. config.vm.hostname = "scotchbox"
  7. config.vm.synced_folder ".", "/var/www", :nfs => { :mount_options => ["dmode=777","fmode=666"] }
  8. config.vm.provider "virtualbox" do |v|
  9. v.memory = 2048
  10. v.cpus = 2
  11. end
  12. end
  13.  
  14. tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1285/sshd
  15. tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN 1056/postgres
  16. tcp 0 0 0.0.0.0:46523 0.0.0.0:* LISTEN 648/rpc.statd
  17. tcp 0 0 127.0.0.1:11300 0.0.0.0:* LISTEN 1355/beanstalkd
  18. tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN 971/mongod
  19. tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 1038/mysqld
  20. tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN 1511/redis-server *
  21. tcp 0 0 127.0.0.1:11211 0.0.0.0:* LISTEN 1502/memcached
  22. tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 562/rpcbind
  23. tcp6 0 0 :::22 :::* LISTEN 1285/sshd
  24. tcp6 0 0 :::36713 :::* LISTEN 648/rpc.statd
  25. tcp6 0 0 :::6379 :::* LISTEN 1511/redis-server *
  26. tcp6 0 0 :::111 :::* LISTEN 562/rpcbind
  27. tcp6 0 0 :::80 :::* LISTEN 2084/apache2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement