Skip to content

Instantly share code, notes, and snippets.

View 2arunpmohan's full-sized avatar

ARUN P MOHAN 2arunpmohan

  • Factweavers
  • Cochin
View GitHub Profile

#ZIP a folder zip -r new-name.zip folderName

SCP operations

scp to factweavers

scp /var/www/html/teknion-ui.zip root@factweavers.com:~/../var/www/html

scp a file from factweavers

scp root@factweavers.com:/var/www/html/teknion-ui-new.zip /var/www/html/

@2arunpmohan
2arunpmohan / table operations mysql.md
Created September 8, 2016 06:43
table operations mySql

show the tables inside a database show tables;

create a table create table TableName(columndetails) eg: create table EmployeeDetails (PersonID int, LastName varchar(255), FirstName varchar(255), City varchar(255));

insert data to a table INSERT INTO EmployeeDetails (PersonID, LastName, FirstName, City) VALUES ('4005','Kallis','Jaques','Cape Town');

@2arunpmohan
2arunpmohan / new_gist_file_0
Created September 8, 2016 06:38
database operations mySql
list all databases in database
show databases;
create a database
create databaseName
@2arunpmohan
2arunpmohan / start mySql.md
Created September 8, 2016 06:37
mySql operations

start mysql in ubuntu mysql -u root -p (after entering this, we will be asked password. For office system it is "factweavers")

@2arunpmohan
2arunpmohan / defaultSizeChanger.md
Created September 8, 2016 06:19
"from" size default limit 10000
@2arunpmohan
2arunpmohan / configFileChanges.yml
Created September 8, 2016 06:15
XMLHttpRequest cannot load http://localhost:9233/. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access.
network.host: 0
http.port: 9233
http.cors.enabled: true
http.cors.allow-origin: '*'