Difference between revisions of "Install wiki on win server"
(Created page with "install: 1. pyton need 2.7.xx 32bit version (python-2.7.12.msi) 2. php from archive // latest php (64bit threads safe) (php-7.3.2-Win32-VC15-x64.zip) 3. latest mysql (mysql-in...") |
|||
Line 1: | Line 1: | ||
install: | install: | ||
− | + | # pyton need 2.7.xx 32bit version (python-2.7.12.msi) | |
− | + | # php from archive // latest php (64bit threads safe) (php-7.3.2-Win32-VC15-x64.zip) | |
− | + | # latest mysql (mysql-installer-community-8.0.11.0.msi) | |
create: | create: |
Revision as of 10:35, 27 February 2019
install:
- pyton need 2.7.xx 32bit version (python-2.7.12.msi)
- php from archive // latest php (64bit threads safe) (php-7.3.2-Win32-VC15-x64.zip)
- latest mysql (mysql-installer-community-8.0.11.0.msi)
create: mysql -uroot -pprosuite CREATE DATABASE fieldprowiki;
backup: mysqldump.exe -uroot -pprosuite fieldprowiki > e:\fieldprowiki.sql
restore: mysql -uroot -pprosuite fieldprowiki < e:\fieldprowiki.sql
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'prosuite';