mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.8 KiB

  1. Installation directory
  2. --------------------------------------------
  3. Basically, the destination directory is location independant,
  4. besides that the symbolic links to the typo3_src dir are fixed.
  5. Install the respective package you have choosen (testsite, quickstart
  6. or dummy), located in the Apache lib directory (usually /var/opt/apache/lib)
  7. into you htdocs directory.
  8. Example:
  9. cp -avP /var/opt/apache/lib/typo3-quickstart /var/opt/apache/lib/htdocs/typo3
  10. Prerequisites
  11. --------------------------------------------
  12. MySQL
  13. If you haven't setup mysql yet, it's now time to execute the following commands
  14. and start mysql afterwards:
  15. /opt/mysql/bin/mysql_install_db
  16. /opt/mysql/bin/mysqladmin -u root password 'new-password'
  17. /opt/mysql/bin/mysqladmin -u root -h data password 'new-password'
  18. After being connected to mysql, issue the following commands to create
  19. a typo3 user:
  20. grant all privileges on typo3.* TO 'typo3' identified by 'new-password';
  21. flush privileges;
  22. [...]
  23. Typo3 Installation Password
  24. --------------------------------------------
  25. The following paths given are relative to the document root
  26. (see httpd.conf: DocumentRoot).
  27. Before first usage of the typo3 installation tool, you have to
  28. set two passwords, the first one resides in typo3conf/localconf.php
  29. and the second one is in typo3/typo3/install/.htpasswd. In the latter
  30. case you may alternatively modify the respective
  31. typo3/typo3/install/.htaccess file.
  32. Creating the password in typo3conf/localconf.php is done with
  33. # echo -n "password" | md5sum
  34. Creating the password in typo3/typo3/install/.htpasswd is done with
  35. # touch typo3/typo3/install/.htpasswd
  36. # htpasswd -b typo3/typo3/install/.htpasswd username password
  37. Remove the die() call from
  38. typo3/typo3/install/index.php
  39. Finally start your browser with
  40. http://localhost/typo3/typo3/install/