User contributions for Saurabh
From Notes_Wiki
- 07:56, 15 October 2022 diff hist 0 m Convert date to different format using date command current
- 07:55, 15 October 2022 diff hist +97 m Converting timezone using date command current
- 07:55, 15 October 2022 diff hist +1,178 N Convert date to different format using date command Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > Desktop tools and applications > Convert date to different format using date command '''Older article on this is at Date''' =Convert date in human-readable format to seconds since epoch (1 Jan 1970)= May databases and log files may output timestamp in seconds since 1 Jan 1970 instead of using human-readable format. In such cases convert date to..."
- 07:54, 15 October 2022 diff hist −50 m Date current
- 07:53, 15 October 2022 diff hist +93 m Date
- 07:52, 15 October 2022 diff hist +32 m CentOS 8.x Owncloud direct DB queries current
- 07:52, 15 October 2022 diff hist +56 m Rocky 9.x Desktop tools and applications
- 07:44, 15 October 2022 diff hist +97 m Rocky 9.0 Mariadb server current
- 07:44, 15 October 2022 diff hist +136 m Mariadb configuration current
- 07:43, 15 October 2022 diff hist +236 CentOS 8.x mariadb current
- 07:42, 15 October 2022 diff hist +31 m Rocky Linux 9.x
- 07:42, 15 October 2022 diff hist +272 N Rocky 9.x Database servers Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > Database servers *Rocky 9.0 Mariadb server Home > Rocky Linux or CentOS > Rocky Linux 9.x > Database servers" current
- 07:42, 15 October 2022 diff hist +375 N Rocky 9.0 Mariadb server Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > Database servers > Mariadb *Rocky 9.0 Mariadb Save SQL query output to a file Home > Rocky Linux or CentOS > Rocky Linux 9.x > Database servers > Mariadb"
- 07:41, 15 October 2022 diff hist +836 N Rocky 9.0 Mariadb Save SQL query output to a file Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > Database servers > Mariadb > Save SQL query output to a file To save SQL query output to a file append the SQL query with: <pre> INTO OUTFILE '/tmp/output1.txt'; </pre> '''Note that above file may not be visible in /tmp. You may have to go to /tmp/systemd-private-<uid>-mariadb.service..." current
- 06:20, 15 October 2022 diff hist +40 m VMWare vCenter
- 06:20, 15 October 2022 diff hist +1,217 N Reset root password on vCenter 7.x Created page with "Home > VMWare platform > VMWare vCenter > Reset root password on vCenter 7.x To reset forgotten root password for vCenter 7.x use: # If "administrator@vsphere.local" login is working and only root passwords needs to be reset then we can get vCenter VM console from vCenter itself. ## If administrator@vsphere.local password is also not known then Login into ESXi host where vCenter VM is present. ##: If there are multiple hosts we need to login in..." current
- 06:00, 15 October 2022 diff hist +662 m CentOS 7.x screen current
- 05:53, 15 October 2022 diff hist +765 m Rocky 9.x Owncloud Manually moving DataDirectory current
- 05:50, 15 October 2022 diff hist +717 m Rocky 9.x Owncloud upgrade by migrating to a new VM with updated version
- 05:45, 15 October 2022 diff hist +475 m Rocky 9.x Owncloud upgrade by migrating to a new VM with updated version
- 05:43, 15 October 2022 diff hist +45 m Rocky 9.x Web servers current
- 05:43, 15 October 2022 diff hist +743 N Rocky 9.x Increase default PHP resources Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > Web Servers > Increase default PHP resources Compared to default '<tt>/etc/php.ini</tt>' values use: <pre> max_execution_time = 600 max_input_time = 1200 memory_limit = 2560M post_max_size = 160M upload_max_filesize = 400M max_file_uploads = 400 max_input_vars = 10000 date.timezone = 'Asia/Kolkata' </pre> Further,..." current
- 05:42, 15 October 2022 diff hist −34 m CentOS 7.x Owncloud 9.1 installation by using owncloud source zip file current
- 05:41, 15 October 2022 diff hist −49 m CentOS 8.x Zabbix installation
- 05:38, 15 October 2022 diff hist +61 m Rocky 9.x Apache web server configuration
- 05:38, 15 October 2022 diff hist +1,496 N Rocky 9.x Configure apache web server for concurrency Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > Web Servers > Apache > Configure for concurrency Concurrency is handled via mpm module. There are different types of mpm modules out of which only one can be used at a time. We can see currently enabled mpm module via: <pre> httpd -V | grep -i mpm </pre> We can see whic..." current
- 05:31, 15 October 2022 diff hist +316 N Rocky 9.x Desktop tools and applications Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > Desktop tools and applications *chown command Home > Rocky Linux or CentOS > Rocky Linux 9.x > Desktop tools and applications"
- 05:31, 15 October 2022 diff hist +712 N Chown command Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > Desktop tools and applications > Chown command =Change ownership of symbolic links= Normally chown changes ownership of file / directory pointed by symbolic link. To change ownership of symbolic link itself we need to use '<tt>-h</tt>' option. For example <pre> chown -h <user>:<group> <symbolic-link-name.txt> </pre> Refer: * https://unix.stackexch..." current
- 05:29, 15 October 2022 diff hist +79 m Rocky Linux 9.x
- 08:46, 7 October 2022 diff hist +13,229 N Rocky 9.x Owncloud upgrade by migrating to a new VM with updated version Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > File Sharing > Owncloud > Upgrade and Migrate To upgrade owncloud along with migrating to a new VM (Typically cloud or at least public) use: # Stop web server on old server. For example #:<pre> #:: /opt/owncloud-<ver>/ctlscript.sh stop apache #:</pre> # Take one full backup..."
- 06:47, 7 October 2022 diff hist +1,037 N Rocky 9.x Owncloud delete files via REST API via command line Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > File Sharing > Owncloud > Delete files via REST API via command line If there is need to delete file from CLI instead of using Web login / Desktop client then use: <pre> curl -u <owncloud-username>:<owncloud-password> -X DELETE https://<owncloud-fqdn-or-ip>/owncloud/remote.php/webdav/<p..." current
- 06:44, 7 October 2022 diff hist +2,970 N Rocky 9.x Owncloud Manually moving DataDirectory Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > File Sharing > Owncloud > Manually moving DataDirectory We can change path of owncloud DataDirectory as follows: ('''Assuming moving from''' /var/www/owncloud '''to''' /mnt/owncloud ) # Enable maintenance mode. For example #:<pre> #:: cd /var/www/html/owncloud #:: sudo -u apache php -f occ mainten..."
- 06:31, 7 October 2022 diff hist +578 N Rocky 9.x Owncloud Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > File Sharing > Owncloud *Rocky 9.x Owncloud Manually moving DataDirectory *Rocky 9.x Owncloud delete files via REST API via command line *Rocky 9.x Owncloud upgrade by migrating to a new VM with updated version '''There are older articles at:''' *CentOS 8.x Owncloud *CentOS 7.x owncloud Home > Rocky Linux or Cen..."
- 06:30, 7 October 2022 diff hist +249 N Rocky 9.x File sharing Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > File Sharing *Rocky 9.x Owncloud Home > Rocky Linux or CentOS > Rocky Linux 9.x > File Sharing" current
- 06:30, 7 October 2022 diff hist +98 m CentOS 8.x Owncloud changing datadirectory for a new installation current
- 06:30, 7 October 2022 diff hist +129 m CentOS 7.x Upgrade owncloud to newer version or updated stack current
- 06:29, 7 October 2022 diff hist +27 m CentOS 7.x owncloud current
- 06:29, 7 October 2022 diff hist +60 m CentOS 8.x Owncloud current
- 06:22, 7 October 2022 diff hist +5 m Rocky Linux 9.x
- 06:22, 7 October 2022 diff hist +24 m Rocky 9.x Web servers
- 06:22, 7 October 2022 diff hist +38 m Rocky 9.x Apache web server configuration
- 06:22, 7 October 2022 diff hist +66 m Rocky 9.x Installing lets-encrypt SSL certificate current
- 06:20, 7 October 2022 diff hist +244 N Rocky 9.x Web servers Created page with "Home > Rocky Linux or CentOS > Rocky Linux 9.x > Rocky 9.x Web servers *Rocky 9.x Apache web server configuration Home > Rocky Linux or CentOS > Rocky Linux 9.x > Rocky 9.x Web servers"
- 06:20, 7 October 2022 diff hist +55 m Rocky 9.x Apache web server configuration
- 06:20, 7 October 2022 diff hist +56 m Rocky 9.x Installing lets-encrypt SSL certificate
- 06:17, 7 October 2022 diff hist +245 m Converting timezone using date command
- 06:15, 7 October 2022 diff hist +235 m PBS setup master node current
- 06:13, 7 October 2022 diff hist +47 m Shell scripting current
- 06:13, 7 October 2022 diff hist +603 N Ls command Created page with "Home > Shell scripting > ls command =Get full time along with year information in ls -l output= Normally '<tt>ls -l</tt>' output only prints date (day) and month and not year information of file last modification, access or change time. If the file is modified today itself it prints hour:minute information. To list year, seconds, Microseconds also use: <pre> ls -l --full-time </pre> Refer: * https://stackoverflow.com/questions/13999300/bash-ls-..." current
- 06:10, 7 October 2022 diff hist +16 m Shell scripting