linux-tools/help.txt
2019-09-15 21:05:34 +02:00

61 lines
1.6 KiB
Plaintext

OPENVPN:
1. Basic install Debian 7 "Wheezy"
2. Run "wget http://swupdate.openvpn.org/as/openvp...
3. After downloading, run "dpkg -i openvpn-as-1.8.5-...";
4. Edit the password for user openvpn: "passwd openvpn"
5. Go to the ip address of your server, log in and enjoy your new OpenVPN installation on Debian 7 Wheezy.
TEAMSPEAK:
//neuen User anlegen
adduser ts3
//anmelden an diesem User
su ts3
//in das homeverzeichnis wechseln
cd ~
//teamspeak datei ablegen und ggf. entpacken
wget {url}
tar -xzvf {datei}
//Das erste Mal starten und infos rausschreiben
cd {verzeichnis mit TS}
./ts3server_startscript.sh start
//Autostart einrichten als User "root"
nano /etc/init.d/{nameDesAutostarts}
//qloc.de datei fuer ts3 einbinden
siehe "teamspeak.sh" -> 'User' und 'DIR' aendern!
//berechtigung setzen
chmod 755 /etc/init.d/{nameDesAutostarts}
//startscript updaten fuer den autostart
update-rc.d {nameDesAutostarts} defaults
//Neustarten
shutdown -r now
MYSQL-SERVER:
Zugriff:
http://meineip/phpmyadmin/
Zugriff von Navicat:
1. run the command nano /etc/mysql/my.cnf and comment bind-address = 127.0.0.1 using the # symbol
2. login in SQL with: mysql -u root -p
3. run the following commands:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';
FLUSH PRIVILEGES;
grant all privileges on *.* to bill@localhost identified by 'pass' with grant option;
4. Update your Password:
UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root';
5. restart your mysql server once.