Entradas

Mostrando entradas de abril, 2024

GitLab Maintenance commands

  The following commands can be run after installation. Get service status Run  sudo gitlab-ctl status  to see the current state and uptime of each GitLab component. The output will look similar to this: run: nginx: (pid 972) 7s; run: log: (pid 971) 7s run: postgresql: (pid 962) 7s; run: log: (pid 959) 7s run: redis: (pid 964) 7s; run: log: (pid 963) 7s run: sidekiq: (pid 967) 7s; run: log: (pid 966) 7s run: puma: (pid 961) 7s; run: log: (pid 960) 7s As a demonstration, the first line of the previous example can be interpreted as follows: Nginx  is the process name. 972  is the process identifier. NGINX has been running for 7 seconds ( 7s ). log  indicates a  svlogd logging process  attached to the preceding process. 971  is the process identifier for the logging process. The logging process has been running for 7 seconds ( 7s ). Tail process logs See  settings/logs.md. Starting and stopping After Omnibus GitLab is installed and configured, your server has a runit service directory ( r

How to mount a Nimble new created volume to Linux Server

 Thank to: https://community.hpe.com/ One of our very Linux-savy SE's put together a collection of install guides for various version of Linux. Below are the content for CentOS / RHEL 6. I used these steps during my last Linux installation and they worked nicely. 1) Configure Ethernet Interfaces to be used for iSCSI data      Set MTU to 9000 if jumbo desired           edit /etc/sysconfig/network-scripts/ifcfg-ethX (X is interface number)           DEVICE=eth1           BOOTPROTO=static           BROADCAST=10.10.50.255           IPADDR=10.10.50.101           NETMASK=255.255.255.0           NETWORK=10.10.50.0           ONBOOT=yes           MTU=9000      Restart networking after changes           #/etc/init.d/network restart      Run ifconfig and make sure newly configured interfaces are visible and MTU is 9000           #ifconfig 2) Tune kernel parameters to resolve IP ARP flux      edit /etc/sysctl.conf and add:      #IP ARP flux (make sure to change eth0 and eth1 to adapters dedica