Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. suitecrm username: admin
  2. suitecrm password: Password123
  3.  
  4. db username: suiteadmin
  5. db password: $JohnnyAppleseed
  6.  
  7. 1. Set up a ubuntu 16 virtual machine
  8. 2. Create a new virtual network with default subnet
  9. 3. Create a new mySQL database
  10. 4. Create network security group
  11. *. install all dependencies needed for suitecrm
  12. apt-get update
  13. apt-get install apache2 apache2-utils libapache2-mod-php php php-common php-curl php-xml php-json php-mysql php-mbstring php-zip php-imap libpcre3 libpcre3-dev zlib1g zlib1g-dev mariadb-server unzip
  14. *. set systemctl to autolaunch apache2 and mysql
  15. systemctl apache2
  16. systemctl mysql
  17. *. edit php.ini
  18. *. set up https
  19. openssl
  20. nano /etc/apache2/conf-available/ssl-params.conf
  21. nano /etc/apache2/sites-available/default-ssl.conf
  22. <IfModule mod_ssl.c>
  23. <VirtualHost _default_:443>
  24. ServerAdmin your_email@example.com
  25. ServerName server_domain_or_IP
  26.  
  27. DocumentRoot /var/www/html
  28.  
  29. ErrorLog ${APACHE_LOG_DIR}/error.log
  30. CustomLog ${APACHE_LOG_DIR}/access.log combined
  31.  
  32. SSLEngine on
  33.  
  34. SSLCertificateFile /etc/ssl/certs/apache-selfsigned.crt
  35. SSLCertificateKeyFile /etc/ssl/private/apache-selfsigned.key
  36.  
  37. <FilesMatch "\.(cgi|shtml|phtml|php)$">
  38. SSLOptions +StdEnvVars
  39. </FilesMatch>
  40. <Directory /usr/lib/cgi-bin>
  41. SSLOptions +StdEnvVars
  42. </Directory>
  43.  
  44. </VirtualHost>
  45. </IfModule>
  46.  
  47. *. configure suitecrm through browser
  48.  
  49.  
  50. total size of DB before data: 5mb
  51. sample data size: 20mb
  52. expected data size: <1gb
  53.  
  54.  
  55. estimated load:
  56. watch -d free -m
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement