Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antoniogamiz/ddsi
Práctica DDSI
https://github.com/antoniogamiz/ddsi
Last synced: 22 days ago
JSON representation
Práctica DDSI
- Host: GitHub
- URL: https://github.com/antoniogamiz/ddsi
- Owner: antoniogamiz
- Created: 2019-12-02T11:51:52.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-15T15:42:52.000Z (about 5 years ago)
- Last Synced: 2024-10-30T01:41:45.887Z (2 months ago)
- Language: Python
- Size: 45.9 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
.~~~bash
# configurar la base de datos (SOLO UNA VEZ)
sudo apt install mysql-server
sudo apt install mysql-clientsudo mysqld_safe --skip-grant-tables &
mysql -urootuse mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'test';
flush privileges;
quit
sudo service mysql restart
# para arrancar o parar la base de datos:
sudo /etc/init.d/mysql stop
sudo /etc/init.d/mysql start# login en la base de datos
mysql -u root -p# cargar las tablas y los datos
mysql -u root -p < tablas.sql
mysql -u root -p < objetos.sql# ejecutar la interfaz gráfica
python3 main.py root test
~~~