Revision [828]

This is an old revision of ConfigStratoServer made by WojciechLisiewicz on 2017-02-10 19:44:03.

 

Konfiguracja nowego serwera

hosting strato



some general actions

  1. Make a simple dump of old mysql-databases
  2. mysqldump -u USERNAME -p DBNAME > myfile.sql (on prompt - pwd!)
  3. Config virtual hosts and domains



converting DB with polish codepage

following commands were successful:

DB dump
mysqldump -u root -p --default-character-set=latin1 --skip-set-charset internalwiki > /storage/db_dumps/internalwiki_latin1.sql

converting itself
iconv -f ISO-8859-2 -t UTF-8 internalwiki_latin1.sql | sed -e 's/latin2/utf8/g' >internalwiki_utf8.sql
(wasn't good enough - probably was old text in windows codepage! this one was better:)
iconv -f Windows-1250 -t UTF-8 internalwiki_latin1.sql | sed -e 's/latin2/utf8/g' >internalwiki_utf8.sql

put converted DB - into an empty DB
mysql -u root -p --default-character-set=utf8 wikiutf8 <internalwiki_utf8.sql

read more
See about converting:

securing areas on apache

needed modules
add symlink to "auth_digest.load" in /etc/apache2/mods-enabled/

config virtual hosts
edit /etc/apache2/sites-enabled/XXXX.conf
(apache)
Alias /path-in-browser /path/on/localfilesystem
<Directory /path/on/localfilesystem>
Options FollowSymLinks
DirectoryIndex index.php
<IfModule mod_authn_file.c>
AuthType Digest
AuthName "your_realm"
AuthUserFile /path/to/filewithdigestpwd
</IfModule>
Require valid-user
</Directory>




redirecting domains to server

from strato
edit A-record in strato-settings of the domain

from elsewhere
edit redirection IP


changes from native system

MyWikkaModifications


There are no comments on this page.
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki